/* =============================================
   KÉT DUDÁS EGY CSÁRDÁBAN – Főstílus
   ============================================= */

/* ---- Alapváltozók ---- */
:root {
  --cream:      #F5EDE3;
  --warm-white: #FDF8F3;
  --rust:       #C8533A;
  --rust-dark:  #A03E28;
  --rust-light: #E07055;
  --brown:      #6B3B2A;
  --text:       #A03E28;
  --text-mid:   #A03E28;
  --text-light: #B85A3E;
  --border:     #E8D5C4;
  --shadow:     rgba(100, 50, 30, 0.12);
  --font-heading: "Trebuchet MS", Arial, Helvetica, sans-serif;
  --font-body:    Georgia, "Times New Roman", serif;

  /* Szövegméretek egy helyen: ha nagyobb betű kell, elég ezt a két értéket
     átírni – az oldal minden fő szövege ezekből dolgozik. */
  --text-size:    16px;   /* szövegtörzs, bekezdések, űrlapmezők */
  --text-size-sm: 15px;   /* kiegészítő szöveg: feliratok, összegző dobozok */
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--text);
  font-size: var(--text-size);
  line-height: 1.7;
  /* Védelem a vízszintes csúszkálás ellen: a túl hosszú, tördelhetetlen
     szavak (e-mail cím, URL) inkább törjenek, mint hogy szétnyomják az oldalt. */
  overflow-wrap: break-word;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
/* A height: auto kötelező: a képeken HTML width/height attribútum van (a
   layout ugrálása ellen), ezért ha egy szabály csak a szélességet írja át
   – mint a logóknál mobilon –, a magasság az attribútumon maradna, és a kép
   megnyúlna. Ahol tudatosan fix magasságot adunk (fotók), az erősebb
   szelektor felülírja ezt. */
img { max-width: 100%; height: auto; display: block; }
a { color: darkcyan; text-decoration: none; }

/* ---- Utility ---- */
.container { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }

/* =============================================
   SITE HEADER
   ============================================= */
.site-header {
  background: var(--cream);
  border-bottom: 2px solid var(--border);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.site-header__logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.site-header__title {
  font-family: var(--font-heading);
  font-size: clamp(15px, 2.5vw, 20px);
  font-weight: 700;
  color: var(--rust);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
}
.site-header__nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.site-header__nav a {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.15s;
}
.site-header__nav a:hover { color: var(--rust-dark); }
.site-header__nav .btn { font-size: 12px; padding: 8px 20px; color: #fff; }
.site-header__nav .btn:hover { color: #fff; }

.site-header--centered { justify-content: center; }

/* =============================================
   HERO
   ============================================= */
.hero { background: var(--cream); }

.hero__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 32px 0;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.hero__title-wrap { flex: 1; padding-bottom: 16px; }

.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: var(--text-size);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.5;
}
.hero__title {
  font-family: var(--font-heading);
  /* A „Vacsoraestek” egyetlen, nem tördelhető szó, ezért a betűméretnek kell
     követnie a képernyő szélességét – különben a cím szétnyomja az oldalt. */
  font-size: clamp(28px, 8vw, 80px);
  font-weight: 700;
  color: var(--rust);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.hero__logo {
  width: 160px;
  flex-shrink: 0;
  border-radius: 50%;
  position: relative;
  z-index: 3;
  margin-bottom: -60px;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.hero__photo-wrap { position: relative; width: 100%; line-height: 0; }
.hero__photo { width: 100%; height: 400px; object-fit: cover; display: block; }
.hero__btn-wrap { position: absolute; bottom: 28px; left: 32px; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  background: var(--rust);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: var(--rust-dark); transform: translateY(-1px); }
.btn--outline { background: transparent; border: 2px solid var(--rust); color: var(--rust); }
.btn--outline:hover { background: var(--rust); color: #fff; }

/* =============================================
   ABOUT / RÓLUNK
   ============================================= */
.about { background: var(--warm-white); }

.about__heading { font-size: 28px; font-weight: 700; color: var(--rust); margin-bottom: 16px; }
.about__intro { font-size: var(--text-size); color: var(--text); line-height: 1.8; margin-bottom: 48px; max-width: 600px; }

/* A szekció bevezetője a csapatfotóval egy sorban. */
.about__lead {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}
.about__lead .about__intro { margin-bottom: 0; }
.about__photo--lead img { height: 290px; }

.about__split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}
.about__split:last-child { margin-bottom: 0; }
/* Balázs sora: két fotó kerül egymás mellé, ezért kap több helyet a képoszlop. */
.about__split--reverse { grid-template-columns: 1.1fr 1fr; }
.about__split--reverse .about__photo,
.about__split--reverse .about__photos { order: 2; }
.about__split--reverse .about__text { order: 1; }

.about__text p { font-size: var(--text-size); color: var(--text); margin-bottom: 16px; line-height: 1.8; }
.about__text p:last-child { margin-bottom: 0; }
.about__text strong { color: var(--rust-dark); font-weight: 700; }

.about__photo { border-radius: 8px; overflow: hidden; box-shadow: 0 8px 32px var(--shadow); }
.about__photo img { width: 100%; height: 350px; object-fit: cover; border-radius: 8px; }

/* Két fotó egymás mellett: a fekvő képnek szélesebb hasáb jut, hogy ne vágjon
   le belőle a kivágás. */
.about__photos { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 16px; }
.about__photos .about__photo img { height: 220px; }

/* =============================================
   MENU / AKTUÁLIS VACSORA
   ============================================= */
.menu { background: var(--cream); text-align: center; }

.section__eyebrow {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--rust); margin-bottom: 10px;
}
.section__title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 4vw, 34px); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text); margin-bottom: 16px;
}
.section__subtitle {
  font-size: var(--text-size); color: var(--text);
  max-width: 500px; margin: 0 auto 48px; line-height: 1.7;
}
.menu__list { max-width: 900px; margin: 0 auto; }
.menu__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
  overflow-wrap: break-word;
}
.menu__row > * { min-width: 0; }
.menu__row:last-child { margin-bottom: 0; }
.menu__item {
  background: var(--rust);
  color: #fff;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 4px 18px var(--shadow);
  text-align: left;
}
.menu__item .course__label { color: rgba(255,255,255,0.75); }
.menu__item .course__name { color: #fff; }
.menu__thumb {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow);
}
.menu__thumb img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; display: block; }

.course__label {
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rust); margin-bottom: 6px;
}
.course__name {
  font-family: var(--font-body);
  font-size: var(--text-size); font-weight: 700; color: var(--text); line-height: 1.3;
}

/* =============================================
   VENUE / HELYSZÍN
   ============================================= */
.venue { background: var(--warm-white); }
.venue__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.venue__photo { border-radius: 8px; overflow: hidden; box-shadow: 0 8px 40px var(--shadow); }
.venue__photo img { width: 100%; height: 460px; object-fit: cover; }
.venue__text h3 { font-size: 18px; font-weight: 700; color: var(--rust); margin-bottom: 12px; margin-top: 32px; }
.venue__text h3:first-child { margin-top: 0; }
.venue__text p { font-size: var(--text-size); color: var(--text); line-height: 1.8; margin-bottom: 8px; }

/* =============================================
   CTA / FOGLALÁS (index)
   ============================================= */
.cta { background: var(--cream); }
.cta__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.cta__photo img { width: 100%; height: 375px; object-fit: cover; border-radius: 8px; box-shadow: 0 8px 40px var(--shadow); }
.cta__text p { font-size: var(--text-size); color: var(--text); line-height: 1.8; margin-bottom: 20px; }
.cta__date { font-family: var(--font-heading); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text); margin-bottom: 6px; }
.cta__time { font-family: var(--font-heading); font-size: 22px; font-weight: 700; text-transform: uppercase; color: var(--rust); margin-bottom: 28px; }

/* =============================================
   CONTACT / KAPCSOLAT
   ============================================= */
.contact { background: var(--warm-white); text-align: center; }
.contact__title { font-size: 28px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.contact__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  text-align: left; border-top: 1.5px solid var(--border); padding-top: 40px; padding-right: 10px; margin-top: 12px;
}
.contact__col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; color: var(--rust); margin-bottom: 12px; }
.contact__col p, .contact__col a { font-size: var(--text-size-sm); color: var(--text); line-height: 1.8; display: block; }
.contact__col a:hover { color: var(--rust-dark); text-decoration: underline; }

/* =============================================
   LEGAL FOOTER
   ============================================= */
.legal-footer { background: var(--rust-dark); padding: 20px 24px; text-align: center; }
.legal-footer__links { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.legal-footer__links a {
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.80); transition: color 0.15s;
}
.legal-footer__links a:hover { color: #fff; }

/* =============================================
   RESPONSIVE – TABLET (max 900px)
   ============================================= */
@media (max-width: 900px) {
  .site-header { padding: 12px 20px; }
  .site-header__nav { gap: 14px; }

  .hero__top { padding: 16px 20px 0; }
  .hero__logo { width: 130px; margin-bottom: -48px; }
  .hero__photo { height: 330px; }
}

/* =============================================
   RESPONSIVE – MOBILE (max 640px)
   ============================================= */
@media (max-width: 640px) {
  /* Header */
  .site-header { padding: 10px 16px; gap: 10px; }
  .site-header__logo { width: 48px; height: 48px; }
  .site-header__title { font-size: 13px; }
  .site-header__nav { gap: 10px; }
  .site-header__nav > a:not(.btn) { display: none; } /* csak Foglalás gomb marad */

  /* Hero */
  .hero__top { padding: 14px 16px 0; gap: 10px; }
  .hero__eyebrow { font-size: var(--text-size-sm); }
  /* A logó mellett maradó helyre kell férnie a címnek: 375px-es képernyőn a
     16px-es padding és a 84px-es logó után ~249px áll rendelkezésre. */
  .hero__title { font-size: clamp(22px, 7vw, 40px); }
  .hero__logo { width: 84px; margin-bottom: -32px; }
  .hero__photo { height: 220px; }
  .hero__btn-wrap { left: 16px; bottom: 14px; }

  /* Sections */
  .section { padding: 40px 0; }
  .container { padding: 0 16px; }

  /* About – mindkét split egyoszlopossá válik, kép felül, szöveg alul */
  .about__split,
  .about__split--reverse {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }
  .about__split--reverse .about__photo,
  .about__split--reverse .about__photos { order: 1; }
  .about__split--reverse .about__text { order: 2; }
  .about__photo img { height: 265px; }
  .about__lead { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .about__photo--lead img { height: 265px; }
  .about__photos { gap: 10px; }
  .about__photos .about__photo img { height: 165px; }
  .about__intro { margin-bottom: 32px; }

  /* Menu */
  .menu__row { grid-template-columns: 1fr; gap: 12px; margin-bottom: 28px; }
  .menu__thumb { border-radius: 12px; }

  /* Venue – szöveg felül, kép alul */
  .venue__grid { grid-template-columns: 1fr; gap: 24px; }
  .venue__photo { order: 2; }
  .venue__photo img { height: 265px; }

  /* CTA */
  .cta__grid { grid-template-columns: 1fr; gap: 24px; }
  .cta__photo img { height: 220px; }

  /* Contact */
  .contact__grid { grid-template-columns: 1fr; text-align: center; gap: 20px; }

  /* Legal footer */
  .legal-footer__links { gap: 16px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* =============================================
   LEGAL PAGES (Impresszum, ÁSZF, Adatvédelmi)
   ============================================= */
.legal-page { max-width: 700px; margin: 0 auto; padding: 64px 24px 80px; }
.legal-page h1 { font-size: 22px; color: var(--rust); margin-bottom: 8px; }
.legal-page .effective { font-size: 13px; color: var(--text-light); margin-bottom: 36px; }
.legal-page h2 { font-size: 16px; color: var(--rust-dark); margin: 36px 0 10px; border-bottom: 1px solid var(--border); padding-bottom: 6px; }
.legal-page h3 { font-size: 14px; color: var(--text); margin: 20px 0 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.legal-page p { font-size: var(--text-size); color: var(--text); line-height: 1.8; margin-bottom: 14px; }
.legal-page ul { margin: 0 0 16px 20px; }
.legal-page ul li { font-size: var(--text-size); color: var(--text); line-height: 1.8; margin-bottom: 6px; }
.legal-page a { color: var(--rust); }
.legal-page a:hover { color: var(--rust-dark); text-decoration: underline; }
/* A .legal-page a szabály erősebb a .btn-nél, ezért a gombfelirat rusztvörös
   lenne a rusztvörös háttéren – itt visszaállítjuk a fehérre. */
.legal-page a.btn { color: #fff; }
.legal-page a.btn:hover { color: #fff; text-decoration: none; }
.legal-page table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: var(--text-size-sm); }
.legal-page table th { background: var(--cream); color: var(--rust-dark); font-family: var(--font-heading); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; padding: 10px 12px; text-align: left; border: 1px solid var(--border); }
.legal-page table td { padding: 10px 12px; border: 1px solid var(--border); color: var(--text); vertical-align: top; line-height: 1.6; }

/* ── JOGI OLDALAK MOBILON ── */
@media (max-width: 640px) {
  .legal-page { padding: 40px 16px 64px; }
  /* Az öt hasábos táblázatok legkisebb szükséges szélessége nagyobb, mint egy
     telefon kijelzője. Így maga a táblázat lesz oldalra húzható, és nem a
     teljes oldal csúszik el. */
  .legal-page table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .legal-page table th,
  .legal-page table td { padding: 8px 10px; }
}

.back-link { display: inline-block; margin-bottom: 32px; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rust); font-family: var(--font-heading); text-decoration: none; }
.back-link:hover { color: var(--rust-dark); text-decoration: underline; }

/* Impresszum egyedi (tighter top padding, no .effective margin) */
.legal-page--impresszum { padding-top: 64px; }
.legal-page--impresszum h1 { margin-bottom: 32px; }
.legal-page--impresszum h2 { margin: 28px 0 10px; border-bottom: none; padding-bottom: 0; }

/* ÁSZF egyedi (tighter top padding) */
.legal-page--aszf { padding-top: 48px; }

/* =============================================
   FOGLALÁS PAGE
   ============================================= */
.foglalas-hero { background: var(--cream); }

.foglalas-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 24px;
  padding: 24px 40px 28px;
}

.foglalas-hero__eyebrow {
  font-family: var(--font-heading);
  font-size: var(--text-size);
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.03em;
  text-transform: none;
  margin-bottom: 8px;
  line-height: 1.5;
}

.foglalas-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 8vw, 68px);
  font-weight: 700;
  color: var(--rust);
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 28px;
}

.foglalas-hero__logo {
  width: 150px;
  border-radius: 50%;
  flex-shrink: 0;
  align-self: start;
}

.event-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  margin-bottom: 32px;
}

.event-info__date {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.4;
}

.event-info__menu { font-size: var(--text-size-sm); color: var(--text); line-height: 2.0; }
.event-info__menu p { margin-bottom: 4px; }

.event-info__allergen {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 12px;
  font-style: italic;
}

.varunk {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-style: italic;
  color: var(--rust);
  line-height: 1.25;
  margin-bottom: 16px;
}

.event-info__details { font-size: var(--text-size-sm); color: var(--text); line-height: 1.9; }
.event-info__details p { margin-bottom: 10px; }

.foglalas-cta { text-align: center; padding: 8px 0 48px; }

.form-section { background: var(--warm-white); padding: 56px 0 72px; }

.form-section__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.form-section h2 {
  font-family: var(--font-heading);
  font-size: 28px; font-weight: 700;
  text-transform: uppercase; color: var(--rust);
  margin-bottom: 32px; letter-spacing: 0.06em;
  grid-column: 1 / -1;
}

.form-group {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
}

.form-group label {
  font-size: var(--text-size-sm); color: var(--text);
  text-align: right;
  font-family: var(--font-body);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"] {
  border: 1.5px solid var(--border); border-radius: 4px;
  /* A 16 px-nél nem kisebb betű azt is megakadályozza, hogy iPhone-on
     ránagyítson a böngésző, amikor a mezőbe kattintanak. */
  padding: 10px 12px; font-size: var(--text-size);
  font-family: var(--font-body);
  background: #fff; color: var(--text); width: 100%;
  outline: none; transition: border-color 0.2s;
}

.form-group input:focus { border-color: var(--rust); }

.payment-label {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rust);
  margin-top: 24px; margin-bottom: 12px;
}

.radio-group { display: flex; flex-direction: column; gap: 10px; }

.radio-group label {
  display: flex; align-items: center; gap: 10px;
  font-size: var(--text-size-sm); color: var(--text); cursor: pointer;
  font-family: var(--font-body);
}

.radio-group input[type="radio"] {
  accent-color: var(--rust); width: 18px; height: 18px;
  cursor: pointer; flex-shrink: 0;
}

.form-photo { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px var(--shadow); }
.form-photo img { width: 100%; height: 460px; object-fit: cover; display: block; border-radius: 16px; }

.form-submit { margin-top: 32px; }

.payment-summary {
  background: var(--cream);
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 8px;
}

.payment-summary p { font-size: var(--text-size-sm); line-height: 1.7; margin-bottom: 8px; }
.payment-summary p:last-child { margin-bottom: 0; }
.payment-summary a { color: var(--rust); text-decoration: underline; }

.payment-summary p.payment-summary__price {
  font-family: var(--font-heading);
  font-size: 20px; font-weight: 700;
  letter-spacing: 0.04em; color: var(--rust);
}

.pay-panel { margin-top: 20px; }
.pay-panel[hidden] { display: none; }

.pay-panel__text {
  font-size: var(--text-size-sm); color: var(--text); line-height: 1.7;
  margin-bottom: 20px;
}

.availability {
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--border);
}

.availability--full { color: var(--rust-dark); }

.form-error {
  font-size: var(--text-size-sm); line-height: 1.6;
  color: var(--rust-dark);
  background: #FBE9E4;
  border-left: 3px solid var(--rust);
  padding: 10px 14px; border-radius: 4px;
  margin-top: 16px;
}

.form-error[hidden] { display: none; }

.form-success {
  font-size: var(--text-size); line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  border-left: 3px solid var(--rust);
  padding: 16px 18px; border-radius: 4px;
}

.form-group select {
  border: 1.5px solid var(--border); border-radius: 4px;
  padding: 10px 12px; font-size: var(--text-size);
  font-family: var(--font-body);
  background: #fff; color: var(--text); width: 100%;
  outline: none; transition: border-color 0.2s;
}

.form-group select:focus { border-color: var(--rust); }

.btn:disabled,
.btn[disabled] {
  background: var(--border);
  color: #fff;
  cursor: not-allowed;
  transform: none;
}

.booking-summary {
  background: var(--cream);
  border-radius: 8px;
  padding: 14px 18px;
  font-weight: 700;
}

.booking-summary[hidden] { display: none; }

/* ── FOGLALÁS RESPONSIVE TABLET ── */
@media (max-width: 900px) {
  .foglalas-hero__inner { padding: 20px 24px 24px; }
  .foglalas-hero__logo { width: 120px; }
  .form-section__inner { padding: 0 24px; gap: 32px; }
}

/* ── FOGLALÁS RESPONSIVE MOBILE ── */
@media (max-width: 640px) {
  .foglalas-hero__inner {
    grid-template-columns: 1fr;
    padding: 16px 16px 20px;
    position: relative;
  }

  .foglalas-hero__logo {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 80px;
    margin: 0;
  }

  .foglalas-hero__eyebrow { font-size: var(--text-size-sm); padding-right: 88px; }
  .foglalas-hero__title { font-size: clamp(24px, 7.5vw, 44px); padding-right: 88px; }

  .event-info { grid-template-columns: 1fr; gap: 20px; }
  .varunk { font-size: 22px; }

  .form-section__inner {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 28px;
  }
  .form-section h2 { grid-column: 1; margin-bottom: 20px; }

  .form-group { grid-template-columns: 1fr; gap: 4px; }
  .form-group label { text-align: left; font-weight: 700; }

  .form-photo { order: 2; }
  .form-photo img { height: 265px; }

  .foglalas-cta { padding: 0 16px 36px; }
}

/* =============================================
   COOKIE CONSENT BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--rust-dark);
  color: #fff;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}

.cookie-banner[hidden] { display: none; }

.cookie-banner__text {
  font-size: var(--text-size-sm);
  line-height: 1.6;
  max-width: 640px;
  margin: 0;
}

.cookie-banner__text a {
  color: #fff;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}

.cookie-banner__btn--accept {
  background: #fff;
  color: var(--rust-dark);
}
.cookie-banner__btn--accept:hover { background: var(--cream); }

.cookie-banner__btn--reject {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.cookie-banner__btn--reject:hover { border-color: #fff; }

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 16px;
    gap: 14px;
  }
  .cookie-banner__actions { justify-content: center; }
}

/* =============================================
   COMING SOON (ideiglenes landing oldal)
   ============================================= */
.coming-soon {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 80px 24px;
}

.coming-soon__inner {
  max-width: 560px;
  text-align: center;
}

.coming-soon__eyebrow {
  font-family: var(--font-heading);
  font-size: var(--text-size);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 16px;
}

.coming-soon__title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 700;
  color: var(--rust);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 24px;
}

.coming-soon__text {
  font-size: var(--text-size);
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 32px;
}

.coming-soon__text a {
  color: var(--rust-dark);
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .coming-soon { padding: 56px 20px; min-height: 50vh; }
}
