/*
Theme Name: Bravura Marketing
Theme URI: https://bravuramarketing.hu/
Author: Bravura Marketing
Description: Letisztult, egyoldalas WordPress landing sablon a Bravura Marketing számára.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: bravura-marketing
*/

:root {
  --ink: #00013c;
  --muted: rgba(0, 1, 60, .68);
  --paper: #ffffff;
  --soft: rgba(2, 219, 170, .08);
  --line: rgba(0, 1, 60, .14);
  --green: #00013c;
  --rust: #02dbaa;
  --gold: #02dbaa;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(0, 1, 60, .14);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(0, 1, 60, .12);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-logo {
  width: 34px;
  height: 34px;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links .button {
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 28px rgba(0, 1, 60, .2);
}

.button-primary:hover {
  background: #02dbaa;
  color: #00013c;
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, .78);
  border-color: rgba(0, 1, 60, .22);
}

.hero {
  min-height: 92vh;
  padding: 112px 0 54px;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.96) contrast(.98);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.84) 42%, rgba(255,255,255,.22) 100%),
    linear-gradient(0deg, rgba(0,1,60,.2), rgba(0,1,60,0) 44%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 650px);
  gap: 30px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 6px 10px;
  border: 1px solid rgba(2, 219, 170, .42);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, .62);
  font-size: 13px;
  font-weight: 760;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  max-width: 660px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6.6vw, 72px);
  line-height: .96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 30px;
  color: rgba(0, 1, 60, .72);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  padding-top: 18px;
}

.proof-item {
  border-top: 1px solid rgba(2, 219, 170, .55);
  padding-top: 14px;
}

.proof-item strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.proof-item span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 620;
}

section {
  padding: 78px 0;
}

.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.services {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(0, 1, 60, .06);
  transition: border-color .2s ease, transform .2s ease;
}

.service-card:hover {
  border-color: rgba(2, 219, 170, .58);
  transform: translateY(-2px);
}

.service-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--rust);
  font-weight: 800;
}

.service-card:nth-child(2) .service-icon {
  background: var(--green);
  color: var(--white);
}

.service-card:nth-child(3) .service-icon {
  background: var(--gold);
  color: var(--ink);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.about {
  background: var(--soft);
}

.about-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.about-panel {
  padding: 30px;
  border-left: 4px solid var(--rust);
  background: rgba(255, 255, 255, .76);
}

.about-panel p {
  margin-bottom: 22px;
  color: rgba(0, 1, 60, .72);
  font-size: 20px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(0, 1, 60, .78);
  font-weight: 620;
}

.check-list span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  font-size: 16px;
  line-height: 1;
}

.reviews {
  background: var(--paper);
}

.process {
  background: var(--ink);
  color: var(--white);
}

.process .section-heading p {
  color: rgba(255, 255, 255, .74);
}

.process-grid,
.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-step,
.fit-card {
  padding: 28px;
  border: 1px solid rgba(2, 219, 170, .22);
  border-radius: 8px;
}

.process-step {
  background: rgba(255, 255, 255, .06);
}

.fit-card {
  background: var(--white);
  border-color: var(--line);
}

.process-step span,
.fit-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--rust);
  color: var(--ink);
  font-weight: 800;
}

.process-step h3,
.fit-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
}

.process-step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .76);
}

.fit-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact {
  padding-bottom: 88px;
  background: var(--ink);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.contact h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

.contact p {
  color: rgba(255, 255, 255, .75);
  font-size: 18px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .84);
  font-weight: 650;
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(2, 219, 170, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

.contact-card p {
  margin: 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-actions .button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, .34);
}

.contact-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, .76);
  font-weight: 620;
}

.footer {
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  background: var(--ink);
  color: rgba(255,255,255,.62);
  font-size: 14px;
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 820px) {
  .nav {
    min-height: 64px;
  }

  .nav-links a:not(.button) {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 96px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.74) 62%, rgba(255,255,255,.2) 100%),
      linear-gradient(90deg, rgba(255,255,255,.9), rgba(255,255,255,.2));
  }

  .hero-inner {
    align-self: end;
  }

  .hero-proof,
  .service-grid,
  .about-layout,
  .process-grid,
  .fit-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  section {
    padding: 58px 0;
  }

  .service-card {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .nav {
    width: min(100% - 24px, 1120px);
  }

  .brand span:last-child {
    max-width: 148px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .button {
    min-height: 44px;
    padding: 0 14px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    gap: 16px;
  }

  .contact-card {
    padding: 18px;
  }

  .contact-actions .button {
    width: 100%;
  }
}
