/* =========================================================
   Kerstmarkt Fluweelengrot — Mock-up stylesheet
   Theme: warm sandstone (mergel) cave + golden Christmas light
   ========================================================= */

:root {
  /* Cave / stone */
  --stone-900: #14100c;
  --stone-800: #1e1811;
  --stone-700: #2a2118;
  --stone-600: #3a2e20;

  /* Warm light */
  --gold:      #e8b45c;
  --gold-soft: #f4d79a;
  --amber:     #d98f3e;

  /* Christmas accents */
  --pine:      #2f5d4e;
  --pine-soft: #4a8069;
  --berry:     #b23b34;

  /* Text */
  --cream:     #f3e9d8;
  --cream-dim: #c7b59a;
  --line:      rgba(232, 180, 92, .18);

  --radius: 16px;
  --maxw: 1140px;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --display: "Cinzel", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--cream);
  background: var(--stone-900);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 760px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: .85em 1.6em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn--sm { padding: .6em 1.15em; font-size: .85rem; }
.btn--full { width: 100%; }
.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #2a1c08;
  box-shadow: 0 8px 24px -8px rgba(232, 180, 92, .55);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(232, 180, 92, .7); }
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-2px); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--stone-800);
  border-bottom: 1px solid var(--line);
  font-size: .82rem;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 40px;
}
.topbar__note { color: var(--cream-dim); letter-spacing: .04em; }
.langswitch { display: inline-flex; gap: 2px; background: rgba(0,0,0,.25); border-radius: 999px; padding: 3px; }
.langswitch__btn {
  border: 0; background: transparent; color: var(--cream-dim);
  font: 600 .78rem var(--sans); letter-spacing: .05em;
  padding: .3em .7em; border-radius: 999px; cursor: pointer;
  transition: all .2s ease;
}
.langswitch__btn:hover { color: var(--cream); }
.langswitch__btn.is-active { background: var(--gold); color: #2a1c08; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(20, 16, 12, .82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; gap: 24px;
  min-height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  font-size: 1.5rem; color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(232,180,92,.6));
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__text strong { font-family: var(--display); font-size: 1.15rem; letter-spacing: .06em; color: var(--cream); }
.brand__text em { font-style: normal; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }

.mainnav { margin-left: auto; display: flex; gap: 28px; }
.mainnav a {
  font-size: .92rem; font-weight: 500; color: var(--cream-dim);
  position: relative; padding: 4px 0; transition: color .2s ease;
}
.mainnav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold); transition: width .25s ease;
}
.mainnav a:hover { color: var(--cream); }
.mainnav a:hover::after { width: 100%; }

.navtoggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.navtoggle span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__cave {
  position: absolute; inset: 0; z-index: -3;
  background:
    radial-gradient(120% 90% at 50% 0%, #3a2c1a 0%, #241a10 45%, #120d08 100%);
}
/* fake stone texture with layered radial "lantern" glows */
.hero__cave::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(232,180,92,.20), transparent 22%),
    radial-gradient(circle at 82% 22%, rgba(217,143,62,.18), transparent 20%),
    radial-gradient(circle at 68% 72%, rgba(178,59,52,.16), transparent 24%),
    radial-gradient(circle at 30% 78%, rgba(232,180,92,.14), transparent 22%);
  mix-blend-mode: screen;
}
/* arched cave vignette */
.hero__glow {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(70% 120% at 50% 120%, transparent 40%, rgba(0,0,0,.7) 100%),
    radial-gradient(50% 60% at 50% 40%, rgba(244,215,154,.10), transparent 70%);
  pointer-events: none;
}
.hero__content { position: relative; max-width: 760px; padding-top: 40px; padding-bottom: 60px; }
.hero__eyebrow {
  font-size: .8rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.hero__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: .02em;
  text-shadow: 0 4px 40px rgba(0,0,0,.6);
}
.hero__title span { display: block; }
.hero__title-accent {
  width: max-content;
  background: linear-gradient(120deg, var(--gold-soft), var(--gold) 45%, var(--amber));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__tagline {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  color: var(--cream-dim);
  margin: 26px 0 34px;
  max-width: 40ch;
  w++++++++++idth: fit-content;
  padding-right: .12em;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__facts { display: flex; gap: 40px; margin-top: 56px; flex-wrap: wrap; }
.fact { display: flex; flex-direction: column; }
.fact strong { font-family: var(--display); font-size: 1.7rem; color: var(--gold); line-height: 1; }
.fact span { font-size: .82rem; letter-spacing: .05em; color: var(--cream-dim); margin-top: 6px; }
.hero__scroll {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  font-size: 1.4rem; color: var(--gold); animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0);} 50% { transform: translate(-50%, 8px);} }

/* ---------- Sections ---------- */
.section { padding: 96px 0; position: relative; }
.section--alt { background: var(--stone-800); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section__eyebrow {
  font-size: .78rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.12;
  color: var(--cream);
}
.section__lead, .section__head .section__lead { color: var(--cream-dim); margin-top: 16px; font-size: 1.08rem; }

/* ---------- Beleef ---------- */
.beleef__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.beleef__text p { color: var(--cream-dim); margin-top: 18px; font-size: 1.05rem; }
.beleef__text .section__title { margin-top: 14px; }
.link-arrow { display: inline-block; margin-top: 26px; color: var(--gold); font-weight: 600; transition: gap .2s; }
.link-arrow:hover { color: var(--gold-soft); }

.beleef__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hl {
  background: linear-gradient(180deg, var(--stone-700), var(--stone-800));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform .25s ease, border-color .25s ease;
}
.hl:hover { transform: translateY(-4px); border-color: var(--gold); }
.hl__icon { font-size: 1.9rem; display: block; margin-bottom: 12px; }
.hl h3 { font-family: var(--display); font-size: 1.1rem; font-weight: 600; color: var(--cream); margin-bottom: 8px; }
.hl p { font-size: .92rem; color: var(--cream-dim); }

/* ---------- Info ---------- */
.info__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: linear-gradient(180deg, rgba(58,46,32,.5), rgba(30,24,17,.5));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
}
.card h3 { font-family: var(--display); font-size: 1.2rem; font-weight: 600; color: var(--gold); margin-bottom: 18px; }
.hours__list { list-style: none; }
.hours__list li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 0; border-bottom: 1px dashed var(--line);
  font-size: .95rem;
}
.hours__list li:last-child { border-bottom: 0; }
.hours__list b { color: var(--cream); white-space: nowrap; }
.hours__note { margin-top: 16px; font-size: .82rem; color: var(--cream-dim); font-style: italic; }
.place__addr { color: var(--cream); font-size: 1.02rem; margin-bottom: 18px; }
.place__list { list-style: none; }
.place__list li { padding: 8px 0; color: var(--cream-dim); font-size: .95rem; }

/* ---------- Tickets ---------- */
.tickets__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 920px; margin: 0 auto; }
.pricecard {
  position: relative;
  background: linear-gradient(180deg, var(--stone-700), var(--stone-800));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  transition: transform .25s ease;
}
.pricecard:hover { transform: translateY(-5px); }
.pricecard--feature {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(232,180,92,.14), var(--stone-800));
  box-shadow: 0 20px 50px -20px rgba(232,180,92,.4);
}
.pricecard__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--berry); color: #fff; font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .4em 1em; border-radius: 999px;
}
.pricecard h3 { font-family: var(--display); font-size: 1.35rem; color: var(--cream); }
.pricecard__age { color: var(--cream-dim); font-size: .88rem; margin-top: 4px; }
.pricecard__price { font-family: var(--display); font-size: 2.6rem; color: var(--gold); margin: 20px 0 24px; line-height: 1; }
.pricecard__price .cur { font-size: 1.3rem; vertical-align: super; margin-right: 2px; }
.pricecard__price .dec { font-size: 1.3rem; vertical-align: super; }
.pricecard__price small { display: block; font-size: .72rem; letter-spacing: .1em; color: var(--cream-dim); margin-top: 6px; }
.tickets__disclaimer { text-align: center; margin-top: 34px; font-size: .82rem; color: var(--cream-dim); font-style: italic; }

/* ---------- FAQ ---------- */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.acc {
  background: rgba(58,46,32,.35);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.acc summary {
  cursor: pointer; list-style: none;
  padding: 20px 24px;
  font-weight: 600; font-size: 1.05rem; color: var(--cream);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "＋"; color: var(--gold); font-size: 1.2rem; transition: transform .25s; }
.acc[open] summary::after { transform: rotate(45deg); }
.acc p { padding: 0 24px 22px; color: var(--cream-dim); }

/* ---------- Newsletter ---------- */
.newsletter { text-align: center; background: linear-gradient(180deg, var(--stone-900), var(--stone-800)); }
.newsletter__inner p { color: var(--cream-dim); margin-top: 14px; }
.newsletter__form { display: flex; gap: 12px; max-width: 480px; margin: 28px auto 0; }
.newsletter__form input {
  flex: 1; padding: .9em 1.2em; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(0,0,0,.3); color: var(--cream);
  font-family: var(--sans); font-size: .95rem;
}
.newsletter__form input:focus { outline: none; border-color: var(--gold); }
.newsletter__small { font-size: .8rem; color: var(--cream-dim); margin-top: 16px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--stone-900); border-top: 1px solid var(--line); padding-top: 64px; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.brand--footer { margin-bottom: 16px; }
.site-footer__tag { color: var(--cream-dim); max-width: 30ch; }
.site-footer h4 { font-family: var(--display); color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: .04em; }
.site-footer p { color: var(--cream-dim); font-size: .95rem; }
.site-footer a:hover { color: var(--gold); }
.social { display: flex; gap: 18px; margin-top: 14px; }
.social a { font-size: .88rem; color: var(--gold); }
.site-footer__bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  border-top: 1px solid var(--line); padding-top: 22px; padding-bottom: 26px;
  font-size: .82rem; color: var(--cream-dim);
}
.site-footer__scai strong { color: var(--gold); }

/* ---------- Particles (falling light) ---------- */
.particles { position: fixed; inset: 0; pointer-events: none; z-index: 5; overflow: hidden; }
.particles i {
  position: absolute; top: -10px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 6px 1px rgba(244,215,154,.8);
  opacity: 0; animation: fall linear infinite;
}
@keyframes fall {
  0%   { transform: translateY(-10px) translateX(0); opacity: 0; }
  10%  { opacity: .9; }
  90%  { opacity: .7; }
  100% { transform: translateY(105vh) translateX(30px); opacity: 0; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .beleef__grid { grid-template-columns: 1fr; gap: 40px; }
  .info__grid { grid-template-columns: 1fr; }
  .tickets__grid { grid-template-columns: 1fr; max-width: 420px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 760px) {
  .mainnav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--stone-800); border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px; display: none;
  }
  .mainnav.is-open { display: flex; }
  .mainnav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-cta { display: none; }
  .navtoggle { display: flex; margin-left: auto; }
  .beleef__cards { grid-template-columns: 1fr; }
  .newsletter__form { flex-direction: column; }
  .hero__facts { gap: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
