/* Kapolcs Forest, fő stíluslap */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600&family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&display=swap");

:root {
  --bg: #faf8f4;
  --bg-elevated: #ffffff;
  --surface: #f0f5f0;
  --primary: #2d5a3d;
  --accent: #e07a2f;
  --accent-hover: #c96824;
  --text: #1a2e1a;
  --text-muted: #5c6b5c;
  --border: #dde8dd;
  --header-h: 4rem;
  --radius: 1rem;
  --shadow: 0 4px 20px rgba(45, 90, 61, 0.08);
  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--bg); color: var(--text); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }

/* Képek és videók húzásának/kijelölésének tiltása */
img, video {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: 72rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 5rem 0; scroll-margin-top: var(--header-h); }
.section--alt { background: var(--bg-elevated); }

.section-heading { text-align: center; max-width: 40rem; margin: 0 auto 3rem; }
.section-heading h2 { font-family: var(--font-serif); font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 600; }
.section-heading p { margin-top: 1rem; font-size: 1.125rem; color: var(--text-muted); }
.section-heading::after { content: ""; display: block; width: 4rem; height: 4px; background: var(--accent); border-radius: 2px; margin: 1.5rem auto 0; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.875rem 2rem; border-radius: 9999px; font-weight: 500; font-size: 1rem; border: none; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 2px 12px rgba(224, 122, 47, 0.25); }
.btn--primary:hover { background: var(--accent-hover); }
.btn--secondary { background: #fff; color: var(--primary); border: 1px solid rgba(45, 90, 61, 0.3); }
.btn--secondary:hover { border-color: var(--accent); color: var(--accent); background: var(--surface); }
.btn--disabled, .btn:disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }
.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--header-h); background: rgba(255,255,255,0.55); backdrop-filter: blur(16px) saturate(150%); -webkit-backdrop-filter: blur(16px) saturate(150%); border-bottom: 1px solid rgba(255,255,255,0.35); box-shadow: 0 1px 12px rgba(26,46,26,0.06); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.header__logo { display: flex; align-items: center; gap: 0.75rem; }
.header__logo img,
.header__logo-icon { height: 2.25rem; width: auto; object-fit: contain; }
.header__logo span { font-family: var(--font-serif); font-weight: 600; display: none; }
@media (min-width: 640px) { .header__logo span { display: block; } }

.nav-desktop { display: none; gap: 0.25rem; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-desktop a { padding: 0.5rem 0.75rem; font-size: 0.875rem; font-weight: 500; color: var(--primary); border-radius: 9999px; }
.nav-desktop a:hover { color: var(--accent); }

.menu-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 110; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle span { display: block; width: 1.5rem; height: 2px; background: var(--text); transition: all 0.2s; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile { position: fixed; inset: 0; background: rgba(250,248,244,0.82); backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.75rem; padding: 2rem; z-index: 95; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.nav-mobile.is-open { opacity: 1; visibility: visible; }
.nav-mobile a { font-family: var(--font-serif); font-size: 1.75rem; font-weight: 600; color: var(--primary); opacity: 0; transform: translateY(12px); transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s; }
.nav-mobile.is-open a { opacity: 1; transform: translateY(0); }
.nav-mobile a:hover { color: var(--accent); }
.nav-mobile.is-open a:nth-child(1) { transition-delay: 0.08s; }
.nav-mobile.is-open a:nth-child(2) { transition-delay: 0.13s; }
.nav-mobile.is-open a:nth-child(3) { transition-delay: 0.18s; }
.nav-mobile.is-open a:nth-child(4) { transition-delay: 0.23s; }
.nav-mobile.is-open a:nth-child(5) { transition-delay: 0.28s; }
.nav-mobile.is-open a:nth-child(6) { transition-delay: 0.33s; }

.hero { min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; padding: calc(var(--header-h) + 1.25rem) 1rem 5.5rem; position: relative; }
.hero__bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; background: linear-gradient(to bottom, rgba(224,122,47,0.08), rgba(45,90,61,0.04), var(--bg)); }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(80px); }
.hero__blob--1 { top: 12%; left: 50%; transform: translateX(-50%); width: 22rem; height: 22rem; background: rgba(224,122,47,0.12); }
.hero__blob--2 { bottom: 8%; right: 5%; width: 16rem; height: 16rem; background: rgba(45,90,61,0.1); }
.hero__fireflies { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero__grass { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: clamp(64px, 13vh, 120px); z-index: 2; pointer-events: none; }
.hero__content { position: relative; z-index: 3; width: 100%; max-width: 48rem; margin: 0 auto; }
.hero__stack { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; width: 100%; }
.hero__logo { width: min(78%, 22rem); height: auto; margin: 0 auto; }
.hero__meta { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; width: 100%; }
.hero__countdown { display: flex; flex-direction: column; align-items: center; gap: 1rem; width: 100%; }
.hero__countdown-label { font-size: 0.875rem; color: var(--text-muted); }

.status-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.375rem 1rem; border-radius: 9999px; font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; border: 1px solid; }
.status-badge--upcoming { border-color: rgba(224,122,47,0.4); background: rgba(224,122,47,0.12); color: var(--accent); }
.status-badge--open { border-color: rgba(45,90,61,0.3); background: rgba(45,90,61,0.1); color: var(--primary); }
.status-badge--closed { border-color: var(--border); background: var(--surface); color: var(--text-muted); }
.status-badge__dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: currentColor; }

.hero__year { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); }
.hero__date { font-family: var(--font-serif); font-size: clamp(1.75rem, 5vw, 3rem); font-weight: 600; line-height: 1.2; }
.hero__tagline { font-size: 1.125rem; color: var(--text-muted); max-width: 32rem; }

.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; width: 100%; max-width: 28rem; }
.countdown__unit { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 0.75rem 0.5rem; box-shadow: var(--shadow); }
.countdown__value { font-family: var(--font-serif); font-size: clamp(1.5rem, 4vw, 2.25rem); font-weight: 700; color: var(--accent); }
.countdown__label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-top: 0.25rem; }

.card-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .card-grid--2, .card-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); transition: box-shadow 0.2s; }
.card:hover { box-shadow: 0 8px 24px rgba(45,90,61,0.1); }
.card--highlight { border-color: var(--accent); position: relative; }
.card__badge { position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 0.75rem; font-weight: 600; padding: 0.2rem 0.75rem; border-radius: 9999px; }
.card__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.card__icon-img { width: 3.25rem; height: 3.25rem; object-fit: contain; }
.card h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.card p { color: var(--text-muted); font-size: 0.9375rem; }
.card__price { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; color: var(--accent); margin: 1rem 0 0.25rem; }
.card__price span { font-size: 0.875rem; color: var(--text-muted); font-family: var(--font-sans); font-weight: 400; }
.card__features li { display: flex; gap: 0.5rem; font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.card__features li::before { content: "✓"; color: var(--accent); font-weight: 700; }

.about-text { max-width: 48rem; margin: 0 auto 3rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }

.about-lists { max-width: 48rem; margin: 0 auto; }
.info-list h3 { font-family: var(--font-serif); font-size: 1.125rem; margin-bottom: 1rem; }
.info-list ul { display: flex; flex-direction: column; gap: 0.625rem; }
.info-list li { display: flex; gap: 0.5rem; align-items: flex-start; color: var(--text-muted); font-size: 0.9375rem; }
.info-list--no li::before { content: "✕"; color: #b04a3a; font-weight: 700; }
.info-list--yes li::before { content: "✓"; color: var(--primary); font-weight: 700; }

.about-closing { text-align: center; max-width: 48rem; margin: 2.5rem auto 0; font-family: var(--font-serif); font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 600; color: var(--accent); }

.card__price-note { font-size: 0.875rem; color: var(--text-muted); margin-top: 0.25rem; }

.map-preview { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin: 0 auto; max-width: 28rem; }
.map-trigger { display: block; width: 100%; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow); cursor: pointer; padding: 0; transition: box-shadow 0.2s; }
.map-trigger:hover { box-shadow: 0 8px 24px rgba(45,90,61,0.12); }
.map-trigger img { width: 100%; }
.map-hint { font-size: 0.8125rem; color: var(--text-muted); }
.map-download { margin-top: 0.25rem; }
.facility-icons { display: flex; gap: 0.5rem; margin-bottom: 0.75rem; }
.facility-icons img { width: 2rem; height: 2rem; object-fit: contain; }
.text-center { text-align: center; }
.mt-8 { margin-top: 2rem; }
.note { font-size: 0.875rem; color: var(--text-muted); text-align: center; margin-top: 2rem; }

.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(250,248,244,0.96); display: flex; align-items: center; justify-content: center; padding: 1rem; opacity: 0; visibility: hidden; transition: all 0.3s; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__close { position: absolute; top: 1rem; right: 1rem; width: 2.5rem; height: 2.5rem; border-radius: 50%; border: 1px solid var(--border); background: #fff; font-size: 1.5rem; cursor: pointer; }
.lightbox img { max-height: 90vh; max-width: 100%; border-radius: var(--radius); }

.rule-item { display: flex; gap: 1rem; align-items: flex-start; }
.rule-item__num { flex-shrink: 0; width: 2.5rem; height: 2.5rem; border-radius: 50%; background: rgba(45,90,61,0.12); color: var(--accent); font-family: var(--font-serif); font-weight: 700; display: flex; align-items: center; justify-content: center; }

.accordion { border: 1px solid var(--border); border-radius: var(--radius); background: #fff; overflow: hidden; box-shadow: var(--shadow); }
.accordion__item { border-bottom: 1px solid var(--border); }
.accordion__item:last-child { border-bottom: none; }
.accordion__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; background: none; border: none; cursor: pointer; text-align: left; font-family: inherit; font-size: 1rem; font-weight: 500; color: var(--text); }
.accordion__trigger:hover { color: var(--accent); }
.accordion__icon { flex-shrink: 0; width: 2rem; height: 2rem; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 1.25rem; transition: transform 0.2s; }
.accordion__item.is-open .accordion__icon { transform: rotate(45deg); }
.accordion__panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion__panel-inner { padding: 0 1.5rem 1.25rem; color: var(--text-muted); line-height: 1.7; }

.video-frame { max-width: 60rem; margin: 0 auto; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); background: #000; line-height: 0; }
.video-frame video { width: 100%; height: auto; display: block; }

.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card h3 { font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 0.5rem; }
.contact-card a, .contact-card p { font-size: 1.125rem; }
.contact-card a { color: var(--accent); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; min-height: 400px; border: 0; display: block; }
.contact-form-wrap { margin-top: 3rem; padding: clamp(1.5rem, 4vw, 2.5rem); border: 1px solid var(--border); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); max-width: 44rem; margin-left: auto; margin-right: auto; }
.contact-form-wrap h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 0.4rem; text-align: center; }
.contact-form-wrap > p { color: var(--text-muted); margin-bottom: 1.75rem; text-align: center; }
.contact-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
@media (max-width: 560px) { .contact-form__grid { grid-template-columns: 1fr; } }
.contact-form .btn { width: 100%; }
.contact-status { margin-bottom: 1rem; padding: 0.85rem 1rem; border-radius: 0.625rem; font-size: 0.9375rem; font-weight: 500; }
.contact-status--ok { color: var(--primary); background: rgba(45, 90, 61, 0.1); border: 1px solid rgba(45, 90, 61, 0.25); }
.contact-status--error { color: #9a3a2c; background: rgba(176, 74, 58, 0.08); border: 1px solid rgba(176, 74, 58, 0.25); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.footer { background: var(--surface); border-top: 1px solid var(--border); padding: 3rem 0 2rem; }
.footer__grid { display: grid; gap: 2.5rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: repeat(3, 1fr); } }
.footer__logo img { height: 3rem; width: auto; }
.footer__desc { margin-top: 1rem; font-size: 0.875rem; color: var(--text-muted); }
.footer h4 { font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.footer ul li { margin-bottom: 0.5rem; }
.footer a { font-size: 0.875rem; color: var(--text-muted); }
.footer a:hover { color: var(--accent); }
.footer__bottom { border-top: 1px solid var(--border); padding-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--text-muted); }
@media (min-width: 640px) { .footer__bottom { flex-direction: row; justify-content: space-between; width: 100%; } }

.page-simple { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: calc(var(--header-h) + 3rem) 1rem 4rem; }
.page-simple__icon { font-size: 3rem; margin-bottom: 1.5rem; }
.page-simple h1 { font-family: var(--font-serif); font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.page-simple p { color: var(--text-muted); max-width: 28rem; margin: 0 auto 0.5rem; }

/* ===================================================================
   Foglalási űrlap
   =================================================================== */
.booking-page { padding-top: calc(var(--header-h) + 3rem); min-height: 70vh; }
.booking-wrap { max-width: 44rem; margin: 0 auto; }
.booking__loading { text-align: center; color: var(--text-muted); padding: 3rem 0; }

.booking { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(1.25rem, 4vw, 2rem); box-shadow: var(--shadow); }
.booking__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field[hidden] { display: none; }
.form-field label, .form-consent span { font-size: 0.875rem; font-weight: 500; color: var(--text); }

.booking input, .booking select, .booking textarea,
.contact-form input, .contact-form textarea {
  font-family: inherit; font-size: 1rem; color: var(--text);
  background: var(--bg); border: 1px solid var(--border); border-radius: 0.625rem;
  padding: 0.7rem 0.85rem; width: 100%; transition: border-color 0.2s, box-shadow 0.2s;
}
.booking input:focus, .booking select:focus, .booking textarea:focus,
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(224, 122, 47, 0.15); background: #fff;
}
.booking textarea, .contact-form textarea { resize: vertical; min-height: 3.5rem; }

.booking__summary { margin-top: 1.5rem; padding: 1.25rem; background: var(--surface); border-radius: var(--radius); }
.booking__summary-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.booking__summary-row--total { margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--border); font-size: 1.0625rem; }
.booking__summary-row--total strong { font-family: var(--font-serif); font-size: 1.375rem; color: var(--accent); }
.booking__availability { font-size: 0.9375rem; font-weight: 500; }
.booking__availability--ok { color: var(--primary); }
.booking__availability--warn { color: var(--accent); }
.booking__availability--full { color: #b04a3a; }
.form-note { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.75rem; }

/* Foglalási naptár */
.cal { display: grid; gap: 1.5rem; grid-template-columns: 1fr; padding: 1.25rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
@media (min-width: 560px) { .cal { grid-template-columns: repeat(2, 1fr); } }
.cal-month__title { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; color: var(--primary); text-align: center; text-transform: capitalize; margin-bottom: 0.75rem; }
.cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.25rem; margin-bottom: 0.35rem; }
.cal-weekdays span { text-align: center; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; color: var(--text-muted); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.25rem; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 500; color: var(--text); background: #fff; border: 1px solid var(--border); border-radius: 0.55rem; cursor: pointer; user-select: none; transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s; }
.cal-day:hover { border-color: var(--accent); color: var(--accent); }
.cal-day:active { transform: scale(0.94); }
.cal-day:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
.cal-day--blank { background: transparent; border-color: transparent; cursor: default; pointer-events: none; }
.cal-day--range { background: rgba(45, 90, 61, 0.12); border-color: rgba(45, 90, 61, 0.2); color: var(--primary); }
.cal-day--range:hover { color: var(--primary); border-color: var(--accent); }
.cal-day--start, .cal-day--end { background: var(--primary); border-color: var(--primary); color: #fff; font-weight: 700; }
.cal-day--start:hover, .cal-day--end:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.cal-selection { margin-top: 0.85rem; font-size: 0.9375rem; color: var(--text-muted); text-align: center; }
.cal-selection--set { color: var(--primary); }
.cal-selection strong { color: var(--accent); }

.form-consent { display: flex; align-items: flex-start; gap: 0.6rem; margin-top: 1.25rem; cursor: pointer; }
.form-consent input { width: 1.1rem; height: 1.1rem; margin-top: 0.15rem; flex-shrink: 0; accent-color: var(--accent); }
.form-consent span { color: var(--text-muted); font-weight: 400; }

.form-error { margin-top: 1rem; padding: 0.75rem 1rem; border-radius: 0.625rem; background: rgba(176, 74, 58, 0.1); border: 1px solid rgba(176, 74, 58, 0.3); color: #b04a3a; font-size: 0.9375rem; }
.booking__submit { width: 100%; margin-top: 1.25rem; }

.alert { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(1.5rem, 5vw, 2.5rem); box-shadow: var(--shadow); text-align: center; }
.alert h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 0.75rem; }
.alert p { color: var(--text-muted); max-width: 30rem; margin: 0 auto; }
.alert__icon { width: 3.5rem; height: 3.5rem; margin: 0 auto 1rem; border-radius: 50%; background: rgba(45, 90, 61, 0.12); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; font-weight: 700; }
.alert--success { border-color: rgba(45, 90, 61, 0.3); }
.alert--error { border-color: rgba(176, 74, 58, 0.3); }
.alert__summary { max-width: 24rem; margin: 1.5rem auto 0; text-align: left; }
.alert__summary div { display: flex; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; border-bottom: 1px solid var(--border); font-size: 0.9375rem; }
.alert__summary div:last-child { border-bottom: none; }
.alert__summary span { color: var(--text-muted); }

@media (max-width: 560px) {
  .booking__grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   Admin felület
   =================================================================== */
.admin-logout { padding: 0.5rem 1.25rem; font-size: 0.875rem; }

/* A hidden attribútum mindig elrejt (felülírja a display: flex/grid szabályokat) */
[hidden] { display: none !important; }

.admin-gate { position: fixed; inset: 0; z-index: 150; display: flex; align-items: center; justify-content: center; padding: 1.5rem; background: linear-gradient(to bottom, rgba(224,122,47,0.08), var(--bg)); }
.admin-gate__card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 2.5rem 2rem; width: 100%; max-width: 24rem; text-align: center; }
.admin-gate__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.admin-gate__card h1 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 0.5rem; }
.admin-gate__card p { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 1.5rem; }
.admin-gate__card input { width: 100%; text-align: center; letter-spacing: 0.5em; font-size: 1.5rem; padding: 0.75rem; border: 1px solid var(--border); border-radius: 0.625rem; background: var(--bg); margin-bottom: 1rem; }
.admin-gate__card input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(224,122,47,0.15); }
.admin-gate__card .btn { width: 100%; }

.admin-panel { padding-top: calc(var(--header-h) + 2rem); padding-bottom: 4rem; min-height: 100vh; }
.admin-toolbar { display: flex; flex-wrap: wrap; gap: 1rem; align-items: flex-end; justify-content: space-between; margin-bottom: 1.5rem; }
.admin-toolbar__title { display: flex; align-items: baseline; gap: 0.75rem; }
.admin-toolbar__title h1 { font-family: var(--font-serif); font-size: 1.75rem; }
.admin-count { color: var(--text-muted); font-size: 0.875rem; }
.admin-toolbar__controls { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.admin-toolbar__controls input, .admin-toolbar__controls select { font-family: inherit; font-size: 0.9375rem; padding: 0.6rem 0.85rem; border: 1px solid var(--border); border-radius: 0.625rem; background: #fff; }
.admin-toolbar__controls input { min-width: 16rem; }

.admin-table-wrap { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.admin-table thead th { text-align: left; padding: 0.85rem 1rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); border-bottom: 1px solid var(--border); white-space: nowrap; }
.admin-table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-row { cursor: pointer; transition: background 0.15s; }
.admin-row:hover { background: var(--surface); }
.admin-row__sub { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.15rem; }
.admin-empty { padding: 2.5rem; text-align: center; color: var(--text-muted); }

.status-pill { display: inline-block; padding: 0.25rem 0.7rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; white-space: nowrap; border: 1px solid; }
.status-pill--pending { color: #b06a13; background: rgba(224,122,47,0.12); border-color: rgba(224,122,47,0.35); }
.status-pill--confirmed { color: var(--primary); background: rgba(45,90,61,0.12); border-color: rgba(45,90,61,0.35); }
.status-pill--waitlist { color: #6b5c00; background: rgba(180,160,0,0.12); border-color: rgba(180,160,0,0.35); }
.status-pill--cancelled { color: #9a3a2c; background: rgba(176,74,58,0.1); border-color: rgba(176,74,58,0.3); }

.admin-tag { display: inline-block; padding: 0.15rem 0.55rem; border-radius: 9999px; font-size: 0.72rem; background: var(--surface); border: 1px solid var(--border); color: var(--text-muted); }

.admin-drawer { position: fixed; inset: 0; z-index: 160; }
.admin-drawer__backdrop { position: absolute; inset: 0; background: rgba(26,46,26,0.45); }
.admin-drawer__panel { position: absolute; top: 0; right: 0; height: 100%; width: min(34rem, 100%); background: var(--bg); box-shadow: -8px 0 30px rgba(0,0,0,0.15); overflow-y: auto; padding: 1.5rem; }
.admin-drawer__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 0.5rem; }
.admin-drawer__head h2 { font-family: var(--font-serif); font-size: 1.5rem; margin-top: 0.5rem; }
.admin-drawer__close { width: 2.25rem; height: 2.25rem; border-radius: 50%; border: 1px solid var(--border); background: #fff; font-size: 1.4rem; cursor: pointer; flex-shrink: 0; }

.admin-section { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; margin-top: 1rem; }
.admin-section h3 { font-family: var(--font-serif); font-size: 1.05rem; margin-bottom: 0.85rem; }
.admin-section--danger { border-color: rgba(176,74,58,0.3); }
.admin-hint { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.6rem; line-height: 1.5; }

.admin-dl { display: flex; flex-direction: column; gap: 0.5rem; }
.admin-dl > div { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.9rem; }
.admin-dl dt { color: var(--text-muted); }
.admin-dl dd { font-weight: 600; text-align: right; }

.admin-inline { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.admin-inline select { flex: 1; min-width: 10rem; }

.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; margin-bottom: 1rem; }
.admin-form-grid label { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.8rem; font-weight: 500; color: var(--text-muted); }
.admin-form-grid__full { grid-column: 1 / -1; }
.admin-section input, .admin-section select, .admin-section textarea { font-family: inherit; font-size: 0.95rem; color: var(--text); padding: 0.6rem 0.7rem; border: 1px solid var(--border); border-radius: 0.5rem; background: var(--bg); width: 100%; }
.admin-section input:focus, .admin-section select:focus, .admin-section textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(224,122,47,0.15); background: #fff; }
.admin-section textarea { resize: vertical; }

.btn--danger { background: #b04a3a; color: #fff; }
.btn--danger:hover { background: #9a3a2c; box-shadow: 0 8px 22px rgba(176,74,58,0.3); }

.admin-toast { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 200; padding: 0.85rem 1.5rem; border-radius: 9999px; font-size: 0.9rem; font-weight: 500; color: #fff; box-shadow: var(--shadow); }
.admin-toast--ok { background: var(--primary); }
.admin-toast--error { background: #b04a3a; }

@media (max-width: 560px) {
  .admin-form-grid { grid-template-columns: 1fr; }
  .admin-toolbar__controls input { min-width: 0; flex: 1; }
}

/* ===================================================================
   Design polish + animációk
   =================================================================== */

/* Scroll-reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--left { transform: translateX(-32px); }
.reveal--right { transform: translateX(32px); }
.reveal--scale { transform: scale(0.94); }

/* Lágy gomb-interakció */
.btn { transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary:hover { box-shadow: 0 8px 22px rgba(224, 122, 47, 0.35); }

/* Kártya emelkedés hoverre */
.card { transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, border-color 0.2s ease; }
.card:hover { transform: translateY(-6px); box-shadow: 0 14px 34px rgba(45, 90, 61, 0.14); }
.card--highlight { transform: scale(1.02); }
.card--highlight:hover { transform: scale(1.02) translateY(-6px); }

/* Navigáció aláhúzás-animáció */
.nav-desktop a { position: relative; }
.nav-desktop a::after { content: ""; position: absolute; left: 0.75rem; right: 0.75rem; bottom: 0.25rem; height: 2px; background: var(--accent); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1); }
.nav-desktop a:hover::after { transform: scaleX(1); }

/* Szekció-cím aláhúzás animálva reveal-kor */
.section-heading::after { transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s; }
.section-heading.reveal:not(.is-visible)::after { width: 0; }

/* Lebegő hero-blobok */
.hero__blob--1 { animation: float-slow 9s ease-in-out infinite; }
.hero__blob--2 { animation: float-slow 11s ease-in-out infinite reverse; }
@keyframes float-slow {
  0%, 100% { transform: translate(-50%, 0) scale(1); }
  50% { transform: translate(-50%, -22px) scale(1.06); }
}
.hero__blob--2 { animation-name: float-slow-2; }
@keyframes float-slow-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(14px, 20px) scale(1.08); }
}

/* Hero belépő animáció (staggered) */
.hero__stack > * { opacity: 0; transform: translateY(20px); animation: hero-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.hero__stack > *:nth-child(1) { animation-delay: 0.05s; }
.hero__stack > *:nth-child(2) { animation-delay: 0.18s; }
.hero__stack > *:nth-child(3) { animation-delay: 0.31s; }
.hero__stack > *:nth-child(4) { animation-delay: 0.44s; }
@keyframes hero-in { to { opacity: 1; transform: none; } }
.hero__logo { animation: hero-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.05s forwards, logo-float 6s ease-in-out infinite 1s; }
@keyframes logo-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -8px; } }

/* Pulzáló status badge (upcoming) */
.status-badge--upcoming .status-badge__dot { animation: pulse-dot 1.8s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { box-shadow: 0 0 0 0 rgba(224, 122, 47, 0.5); } 50% { box-shadow: 0 0 0 6px rgba(224, 122, 47, 0); } }

/* Countdown értékek finom pörgés-érzet */
.countdown__unit { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.countdown__unit:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(45, 90, 61, 0.12); }


/* Térkép-trigger lágy zoom-jelzés */
.map-trigger img { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.map-trigger:hover img { transform: scale(1.04); }

/* Footer kredit */
.footer__credit { display: inline-flex; align-items: center; gap: 0.5rem; transition: opacity 0.2s ease, transform 0.2s ease; }
.footer__credit:hover { opacity: 0.85; transform: translateY(-1px); }
.footer__credit img { height: 1.5rem; width: auto; display: block; }
.footer__credit span { font-size: 0.875rem; color: var(--text-muted); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .btn, .card, .hero__stack > *, .hero__logo, .hero__blob--1, .hero__blob--2, .status-badge--upcoming .status-badge__dot {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
