/* ============================================================
   Mindenem kávézó, közös CSS
   Brand: #1C3D6E kék, #946D3A barna, #DDB06E arany
   Tipográfia: Cinzel (H1-H4) + Montserrat (body)
   ============================================================ */

/* ---------- Reset és alapok ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1C1C1C;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #1C3D6E; text-decoration: none; transition: color .15s ease; }
a:hover { color: #946D3A; text-decoration: underline; }

/* ---------- Brand színek (változók) ---------- */
:root {
  --brand-blue:   #1C3D6E;
  --brand-brown:  #946D3A;
  --brand-gold:   #DDB06E;
  --bg-cream:     #FAF6F0;
  --text-dark:    #1C1C1C;
  --text-muted:   #6B6863;
  --border-soft:  #E8E0D5;
  --shadow-card:  0 4px 12px rgba(28,61,110,0.08);
  --shadow-hover: 0 8px 24px rgba(28,61,110,0.14);
}

/* ---------- Tipográfia ---------- */
/* H1-H6 mind sima Cinzel, NEM bold (weight 400) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', Georgia, serif;
  color: var(--brand-blue);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin: 0 0 0.75em;
}
h1 { font-size: 2.75rem; }
h2 { font-size: 2.125rem; }
h3 { font-size: 1.625rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

/* Body szöveg, mindenhol egységes Montserrat 1rem (16px) */
p, li, td, th, label, input, textarea, select, button {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}
p { margin: 0 0 1em; color: var(--text-dark); }
.lead { font-size: 1.15rem; line-height: 1.55; color: var(--text-muted); margin-bottom: 1.25em; }
small, .small { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.625rem; }
  h3 { font-size: 1.375rem; }
  .lead { font-size: 1.05rem; }
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container-narrow { max-width: 760px; }
.section { padding: 4rem 0; }
.section-cream { background: var(--bg-cream); }
.section-blue { background: var(--brand-blue); color: #fff; }
.section-blue h1, .section-blue h2, .section-blue h3, .section-blue h4 { color: #fff; }
@media (max-width: 768px) {
  .section { padding: 2.5rem 0; }
}

/* ---------- Gombok ---------- */
:root {
  --brand-gold-light: #EBC891; /* halvány arany hover-hez */
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .15s ease;
  text-align: center;
  line-height: 1.2;
  min-height: 44px;
}
/* Kék (primary) gomb: kék háttér, fehér szöveg
   Hover: HALVÁNY ARANY háttér, kék szöveg */
.btn-primary { background: var(--brand-blue); color: #fff; }
.btn-primary:hover { background: var(--brand-gold-light); color: var(--brand-blue); text-decoration: none; }

.btn-outline { background: transparent; color: var(--brand-blue); border-color: var(--brand-blue); }
.btn-outline:hover { background: var(--brand-blue); color: #fff; text-decoration: none; }

/* Arany gomb: arany háttér, kék szöveg
   Hover: marad arany háttér, szöveg fehér */
.btn-gold { background: var(--brand-gold); color: var(--brand-blue); }
.btn-gold:hover { background: var(--brand-gold); color: #fff; text-decoration: none; }

.btn-large { padding: 1.125rem 2.25rem; font-size: 1.05rem; min-height: 52px; }
.btn-block { display: flex; width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 0;
}
.site-logo img { height: 64px; width: auto; display: block; }
@media (max-width: 768px) { .site-logo img { height: 48px; } }

.site-nav { display: flex; align-items: center; }
.site-nav > ul {     /* csak a fő nav ul-ja, NEM a beágyazott dropdown-ul */
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  column-gap: 1.5rem;
  row-gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--brand-blue);
  padding: 0.5rem 0;
  position: relative;
  text-decoration: none;
}
.site-nav a:hover, .site-nav a.is-active {
  color: var(--brand-brown);
}
.site-nav a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--brand-gold);
}

/* Dropdown menü */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7em;
  opacity: 0.7;
  margin-left: 2px;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;            /* közvetlenül a parent <a> alá, hézag NÉLKÜL */
  left: 50%;            /* a középponthoz igazítva */
  transform: translateX(-50%) translateY(-6px);
  margin-top: 12px;     /* vizuális hézag a parent és a doboz között */
  padding: 0.5rem 0;    /* belső térköz az items körül */
  list-style: none;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 102;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(28,61,110,0.12);
  overflow: hidden;     /* a hover-effekt ne lógjon ki a lekerekített sarkokon */
}
/* Láthatatlan "hover-híd" a margin-top hézagán át — hogy az egér ne essen ki a :hover-ből */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;           /* a doboz felett 12px-szel kezdődik */
  left: 0; right: 0;
  height: 12px;
  background: transparent;
}
.nav-dropdown:hover > .nav-dropdown-menu,
.nav-dropdown:focus-within > .nav-dropdown-menu,
.nav-dropdown.is-open > .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li { display: block; position: relative; }
.nav-dropdown-menu a {
  display: block !important;
  padding: 0.75rem 1.5rem !important;
  font-size: 0.95rem;
  white-space: nowrap;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
.nav-dropdown-menu a:hover {
  background: var(--bg-cream);
  color: var(--brand-brown) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--brand-blue);
  -webkit-tap-highlight-color: rgba(0,0,0,0.05);
  touch-action: manipulation;
  position: relative;
  z-index: 103; /* az overlay (101) ÉS a nav panel (102) fölött, hogy bezárható maradjon */
}
.nav-toggle svg { width: 28px; height: 28px; pointer-events: none; }
.nav-toggle * { pointer-events: none; }

@media (max-width: 900px) {
  /* ============================================================ */
  /* MOBIL NAV — prémium sidebar, bal-zárt, hierarchikus           */
  /* ============================================================ */

  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }

  .site-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 320px;
    max-width: 88vw;
    height: 100vh;
    height: 100dvh;                  /* iOS Safari */
    background: #fff;
    box-shadow: -8px 0 32px rgba(28,61,110,0.18);
    padding: 5rem 0 2rem;            /* horizontal padding-ot a link-ekre tesszük */
    transition: right .28s cubic-bezier(.2,.7,.3,1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 102;
  }
  .site-nav.is-open { right: 0; }
  .site-nav > ul {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .site-nav li { border-bottom: 1px solid rgba(28,61,110,0.06); }
  .site-nav li:last-child { border-bottom: 0; }

  /* Fő-szintű nav linkek: bal-zárt, nagyobb, kicsit bold */
  .site-nav a {
    display: block;
    padding: 1.05rem 1.5rem;
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--brand-blue);
    text-align: left;
    letter-spacing: 0.2px;
    transition: background .15s ease, color .15s ease;
  }
  .site-nav a:hover, .site-nav a.is-active {
    background: rgba(221,176,110,0.08);
    color: var(--brand-brown);
  }

  /* A dropdown parent (Menü ▾, Eseményeink ▾, Szolgáltatások ▾) */
  .nav-dropdown > a {
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--brand-blue);
  }
  .nav-dropdown > a::after { content: ''; }   /* mobil-on nincs ▾ jelzés, hierarchia jelez */

  /* Dropdown lapított lista: nincs dobozos háttér, arany kísérő-vonal */
  .nav-dropdown-menu,
  .nav-dropdown:hover > .nav-dropdown-menu,
  .nav-dropdown:focus-within > .nav-dropdown-menu,
  .nav-dropdown.is-open > .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--brand-gold);    /* arany jelzővonal a sub-itemek bal oldalán */
    border-radius: 0;
    background: transparent;
    padding: 0.25rem 0 0.75rem;
    margin: 0 1.5rem 0.5rem 2.25rem;             /* indent a hierarchia jelzésére */
    min-width: 0;
    width: auto;
    left: auto;
    overflow: visible;
  }
  .nav-dropdown-menu::before { display: none; }

  .nav-dropdown-menu li { border-bottom: 0; }
  .nav-dropdown-menu a {
    padding: 0.55rem 0 0.55rem 1rem !important;   /* bal indent, nincs jobb-margin */
    font-size: 0.95rem !important;
    text-align: left !important;
    font-weight: 400;
    color: var(--text-body);
    white-space: normal;
  }
  .nav-dropdown-menu a:hover {
    background: transparent !important;
    color: var(--brand-brown) !important;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(28,61,110,0.4);
    z-index: 101;
  }
  .nav-overlay.is-visible { display: block; }
  body.nav-locked { overflow: hidden; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--brand-blue);
  color: #fff;
  padding: 5rem 0;
  overflow: hidden;
}
.hero-with-image {
  background-size: cover;
  background-position: center;
}
.hero-with-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,61,110,0.85), rgba(28,61,110,0.65));
}
.hero .container { position: relative; }
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero .lead { color: #fff; opacity: 0.92; max-width: 640px; }
.hero-actions { margin-top: 1.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-actions .btn-outline { color: #fff; border-color: #fff; }
.hero-actions .btn-outline:hover { background: #fff; color: var(--brand-blue); }
@media (max-width: 768px) { .hero { padding: 3rem 0; } }

/* ---------- Kártyák ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.card-image {
  aspect-ratio: 16 / 10;
  background: var(--bg-cream);
  overflow: hidden;
}
.card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card h3 { margin-bottom: 0.5rem; }
.card-meta { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.card-body p { color: var(--text-muted); margin-bottom: 1rem; flex: 1; }
.card .btn { align-self: flex-start; }

/* ---------- Táblázatok ---------- */
.table-simple {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.table-simple th, .table-simple td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}
.table-simple th {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--brand-blue);
  background: var(--bg-cream);
}
.table-simple td:last-child { text-align: right; font-weight: 500; }

/* ---------- Űrlapok ---------- */
.form-card {
  background: var(--bg-cream);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}
.form-row { margin-bottom: 1rem; }
.form-row label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-blue);
  margin-bottom: 0.4rem;
}
.form-row .req { color: #B33A3A; }
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: 0;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(28,61,110,0.12);
}
.form-row textarea { resize: vertical; min-height: 100px; }
.form-row .help {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
.form-actions { margin-top: 1.5rem; }
.form-cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-cols-2 { grid-template-columns: 1fr; } }

/* ---------- Közös szekciók (info blokk, kapcsolat sáv) ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin: 1.5rem 0;
}
.info-grid h4 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.info-grid p, .info-grid li { margin: 0.25rem 0; color: var(--text-muted); }
.info-grid ul { list-style: none; padding: 0; margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brand-blue);
  color: #fff;
  padding: 3rem 0 1.5rem;
  border-top: 3px solid var(--brand-gold);
}
.site-footer a { color: #fff; opacity: 0.85; }
.site-footer a:hover { color: var(--brand-gold); opacity: 1; text-decoration: none; }
.site-footer .small,
.site-footer p,
.site-footer li { color: #fff; opacity: 0.9; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-grid h5 {
  color: var(--brand-gold);
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin: 0.4rem 0; }
.footer-grid p { margin: 0.4rem 0; opacity: 0.85; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  opacity: 0.8;
}
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.footer-social a {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  transition: background .15s ease;
}
.footer-social a:hover { background: var(--brand-gold); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 480px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  padding: 1.25rem 1.5rem;
  z-index: 200;
  font-size: 0.9rem;
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner h5 { margin-bottom: 0.5rem; }
.cookie-banner p { color: var(--text-muted); margin-bottom: 1rem; }
.cookie-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cookie-actions .btn { padding: 0.5rem 1rem; font-size: 0.85rem; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; } .mt-5 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.divider {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--brand-gold), transparent);
  margin: 3rem 0;
  border: 0;
}
.badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: var(--brand-gold);
  color: var(--brand-blue);
  border-radius: 4px;
  text-transform: uppercase;
}

/* ---------- YouTube shorts carousel ---------- */
.shorts-carousel {
  position: relative;
  margin: 1.5rem 0;
}
.shorts-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0.25rem 1rem;
  scrollbar-width: thin;
}
.shorts-track::-webkit-scrollbar { height: 8px; }
.shorts-track::-webkit-scrollbar-thumb { background: var(--brand-gold); border-radius: 4px; }
.shorts-item {
  flex: 0 0 auto;
  width: 280px;
  aspect-ratio: 9 / 16;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #000;
  position: relative;
}
.shorts-item iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.shorts-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.shorts-controls button {
  background: var(--brand-blue);
  color: #fff;
  border: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center; justify-content: center;
  transition: background .15s ease;
}
.shorts-controls button:hover { background: var(--brand-brown); }
.shorts-controls button:disabled { opacity: 0.4; cursor: not-allowed; }
@media (max-width: 600px) {
  .shorts-item { width: 220px; }
}

/* ---------- FAQ / GYIK akkordeon ---------- */
.faq-list { margin-top: 1.5rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  padding: 0;
  overflow: hidden;
  transition: box-shadow .15s ease;
}
.faq-item[open] { box-shadow: 0 4px 16px rgba(28,61,110,0.08); }
.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  list-style: none;
  position: relative;
  padding-right: 3rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--brand-blue);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--brand-brown);
  font-weight: 300;
  line-height: 1;
  transition: transform .15s ease;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: var(--brand-brown); }
.faq-item p {
  padding: 0 1.25rem 1.125rem;
  margin: 0;
  color: var(--text-body);
  line-height: 1.6;
}

/* ---------- Inverz / navy hírlevél szekció ---------- */
.section-navy {
  background: #142a4d; /* sötétebb navy mint a brand-blue */
  color: #fff;
  padding: 4rem 0;
}
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 {
  color: #fff;
}
.section-navy p, .section-navy li, .section-navy .lead { color: rgba(255,255,255,0.92); }
.section-navy .small { color: rgba(255,255,255,0.7); }
.section-navy a { color: var(--brand-gold); }
.section-navy a:hover { color: #fff; }
.section-navy .form-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
}
.section-navy .form-row label { color: #fff; }
.section-navy .form-row input,
.section-navy .form-row textarea,
.section-navy .form-row select {
  background: rgba(255,255,255,0.96);
  border-color: transparent;
}
/* Navy hátteren: a primary gomb kék marad (jobban olvasható), hover halvány arany */
.section-navy .btn-primary {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15);
}
.section-navy .btn-primary:hover {
  background: var(--brand-gold-light);
  color: var(--brand-blue);
  box-shadow: none;
}
/* Navy hátteren: az arany gomb marad arany, hover-on kék háttér fehér szöveggel */
.section-navy .btn-gold:hover {
  background: var(--brand-blue);
  color: #fff;
}

/* ---------- Köszönő oldal ---------- */
.thank-you {
  text-align: center;
  padding: 5rem 1rem;
  max-width: 640px;
  margin: 0 auto;
}
.thank-you-icon {
  width: 80px; height: 80px;
  background: var(--brand-gold);
  color: var(--brand-blue);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.thank-you-icon svg { width: 40px; height: 40px; }

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .nav-toggle, .cookie-banner { display: none; }
  body { color: #000; }
}
