/* Walibi Holland — marketing landing
   Hero parallax, image cards, ticket pricing, dark + warm palette.
   Pure CSS. Respects prefers-reduced-motion. Mobile-first. */

:root {
  --bg: #0f0a14;
  --bg-elev: #1a1320;
  --bg-card: #211528;
  --bg-soft: #f6f2ea;
  --ink: #ffffff;
  --ink-dark: #1a1320;
  --ink-soft: rgba(255, 255, 255, 0.78);
  --ink-muted: rgba(255, 255, 255, 0.58);
  --rule: rgba(255, 255, 255, 0.12);

  --red: #ED1C24;
  --red-deep: #b8141a;
  --orange: #ff9f43;
  --yellow: #ffd23f;
  --purple: #8e44ad;
  --night: #2d1b3d;
  --teal: #2bd1a1;

  --max-w: 1200px;
  --max-w-narrow: 760px;
  --radius: 14px;
  --radius-lg: 24px;

  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --shadow-lg: 0 30px 80px -30px rgba(0, 0, 0, 0.6);
  --shadow-md: 0 12px 30px -10px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
::selection { background: var(--red); color: #fff; }

/* =============== Progress bar =============== */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow));
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 1000;
  animation: prog linear;
  animation-timeline: scroll(root);
}
@keyframes prog { to { transform: scaleX(1); } }

/* =============== Header =============== */
.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15, 10, 20, 0.85);
  backdrop-filter: saturate(170%) blur(12px);
  -webkit-backdrop-filter: saturate(170%) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.site__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem 1.4rem;
  display: flex; align-items: center; gap: 2rem;
}
.brand {
  font-family: Impact, "Arial Black", sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: 1.7rem;
  text-decoration: none;
  color: var(--red);
  letter-spacing: -0.03em;
  transform: skewX(-6deg);
  line-height: 1;
  display: inline-flex;
  flex-direction: column;
}
.brand span { font-size: 0.62rem; letter-spacing: 4px; font-style: normal;
  background: var(--red); color: #fff; padding: 2px 8px; margin-top: 3px; font-weight: 800;
  font-family: var(--sans); transform: skewX(0deg) translateX(2px);}
.nav { display: flex; gap: 1.4rem; font-size: 0.92rem; font-weight: 500; }
.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  padding: 0.4rem 0.1rem;
  position: relative;
  transition: color .15s;
}
.nav a::after {
  content: ""; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--red);
  transition: left .2s, right .2s;
}
.nav a:hover, .nav a.current { color: var(--ink); }
.nav a:hover::after, .nav a.current::after { left: 0; right: 0; }
.nav__cta {
  margin-left: auto;
  background: var(--red);
  color: #fff !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 999px;
  font-weight: 700 !important;
  transition: background .15s, transform .15s;
}
.nav__cta:hover { background: var(--red-deep); transform: translateY(-1px); }
.nav__cta::after { display: none !important; }

.lang {
  display: inline-flex; gap: 0.3rem; align-items: center;
  font-size: 0.82rem; font-family: var(--mono);
  border: 1px solid var(--rule);
  border-radius: 99px;
  padding: 0.25rem 0.7rem;
  color: var(--ink-soft);
}
.lang a { color: var(--ink-muted); text-decoration: none; padding: 0 0.25rem; transition: color .15s; }
.lang a:hover { color: var(--ink); }
.lang a.current { color: var(--red); font-weight: 700; }

/* =============== Hero =============== */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 6rem 1.4rem 4rem;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(15, 10, 20, 0.55) 0%, rgba(15, 10, 20, 0.7) 60%, rgba(15, 10, 20, 0.95) 100%),
    url("https://images.unsplash.com/photo-1556304044-0820f50d9d99?w=1920&fm=webp&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
  animation: kenburns 30s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.08) translateY(-2%); }
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero__kicker {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.4rem 0.9rem;
  border-radius: 99px;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  animation: pop .8s cubic-bezier(.2,.7,.3,1.2);
}
@keyframes pop { from { opacity: 0; transform: translateY(10px) scale(.9); } }
.hero h1 {
  font-family: Impact, "Arial Black", "Helvetica Neue", sans-serif;
  font-style: italic;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0 0 1.2rem;
  text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  max-width: 18ch;
  animation: slide-up 1s cubic-bezier(.2,.7,.3,1) .15s both;
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.hero__sub {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 2.4rem;
  animation: slide-up 1s cubic-bezier(.2,.7,.3,1) .3s both;
}
@keyframes slide-up { from { opacity: 0; transform: translateY(22px); } }
.hero__ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: slide-up 1s cubic-bezier(.2,.7,.3,1) .45s both;
}
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 1.8rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(237, 28, 36, 0.5);
}
.btn--primary:hover { background: var(--red-deep); transform: translateY(-2px); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.18); transform: translateY(-2px); }

.hero__scroll {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: var(--ink-muted); font-size: 0.78rem; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none;
  display: inline-flex; flex-direction: column; align-items: center; gap: 0.4rem;
  animation: bob 2.4s ease-in-out infinite;
}
.hero__scroll::after { content: "↓"; font-size: 1.2rem; }
@keyframes bob { 50% { transform: translate(-50%, 6px); } }

/* =============== Section =============== */
.section { padding: 5rem 1.4rem; position: relative; }
.section__inner { max-width: var(--max-w); margin: 0 auto; }
.section__kicker {
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.7rem;
  display: inline-block;
}
.section__title {
  font-family: Impact, "Arial Black", sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  max-width: 22ch;
}
.section__lede {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 2.4rem;
}

/* Parallax section bg */
.parallax {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: center;
  padding: 6rem 1.4rem;
  isolation: isolate;
}
.parallax::before {
  content: ""; position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
}
.parallax::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(15, 10, 20, 0.85) 0%, rgba(15, 10, 20, 0.55) 70%, transparent 100%);
  z-index: -1;
}
.parallax--tickets::before { background-image: url("https://images.unsplash.com/photo-1542204625-ca960da7e1ba?w=1920&fm=webp&q=80"); }
.parallax--attractions::before { background-image: url("https://images.unsplash.com/photo-1505839673365-e3971f8d9184?w=1920&fm=webp&q=80"); }
.parallax--hotel::before { background-image: url("https://images.unsplash.com/photo-1587061949409-02df41d5e562?w=1920&fm=webp&q=80"); }
.parallax--events::before { background-image: url("https://images.unsplash.com/photo-1509557965875-b88c97052f0e?w=1920&fm=webp&q=80"); }
.parallax--cta::before { background-image: url("https://images.unsplash.com/photo-1503095396549-807759245b35?w=1920&fm=webp&q=80"); }

.section--bright {
  background: var(--bg-soft);
  color: var(--ink-dark);
}
.section--bright .section__title { color: var(--ink-dark); }
.section--bright .section__lede { color: rgba(26, 19, 32, 0.75); }

/* =============== Ticket cards =============== */
.tickets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.4rem;
}
.ticket-card {
  background: #fff;
  color: var(--ink-dark);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem 1.6rem;
  position: relative;
  border-top: 6px solid var(--red);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column; gap: 0.8rem;
  box-shadow: var(--shadow-md);
}
.ticket-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4); }
.ticket-card--featured { border-top-color: var(--orange); transform: scale(1.03); }
.ticket-card h3 {
  font-family: Impact, "Arial Black", sans-serif; font-style: italic;
  font-size: 1.55rem; font-weight: 900; line-height: 1.1;
  margin: 0; color: var(--ink-dark); text-transform: uppercase;
}
.ticket-card .price {
  font-size: 1.1rem; font-weight: 600;
  color: var(--red); line-height: 1.3;
  font-family: var(--sans);
  margin: 0.2rem 0 0.6rem;
}
.ticket-card ul {
  list-style: none; padding: 0; margin: 0.4rem 0 1rem;
  font-size: 0.94rem; line-height: 1.55;
}
.ticket-card ul li { padding-left: 1.5rem; position: relative; margin: 0.35rem 0; color: rgba(26, 19, 32, 0.82); }
.ticket-card ul li::before {
  content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 800;
}
.ticket-card .btn { width: 100%; justify-content: center; }

/* =============== Attractions grid =============== */
.attractions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  margin-top: 2.4rem;
}
.attraction {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: flex; align-items: flex-end;
  padding: 1.4rem;
  background-size: cover;
  background-position: center;
  isolation: isolate;
  text-decoration: none;
  color: #fff;
  transition: transform .25s;
}
.attraction::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15, 10, 20, 0.85) 100%);
  z-index: -1;
}
.attraction:hover { transform: scale(1.02); }
.attraction:hover .attraction__title { transform: translateY(-4px); }
.attraction__title {
  font-family: Impact, sans-serif; font-style: italic;
  font-size: 1.5rem; font-weight: 900;
  margin: 0; text-transform: uppercase; letter-spacing: -0.01em;
  transition: transform .2s;
}
.attraction__type {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 0.3rem;
}
.attraction__meta {
  display: flex; gap: 0.6rem; font-size: 0.8rem;
  color: var(--ink-soft); margin-top: 0.6rem;
}
.attraction__meta span { background: rgba(255, 255, 255, 0.15); padding: 0.2rem 0.6rem; border-radius: 99px; backdrop-filter: blur(4px); }

/* Bg images for attractions */
.attraction--goliath { background-image: url("https://images.unsplash.com/photo-1599661046827-9c10c3a32cea?w=900&fm=webp&q=80"); }
.attraction--untamed { background-image: url("https://images.unsplash.com/photo-1505839673365-e3971f8d9184?w=900&fm=webp&q=80"); }
.attraction--lost { background-image: url("https://images.unsplash.com/photo-1571171637578-41bc2dd41cd2?w=900&fm=webp&q=80"); }
.attraction--zenith { background-image: url("https://images.unsplash.com/photo-1543872084-c7bd3822856f?w=900&fm=webp&q=80"); }
.attraction--family { background-image: url("https://images.unsplash.com/photo-1576967402682-19976eb930f2?w=900&fm=webp&q=80"); }
.attraction--water { background-image: url("https://images.unsplash.com/photo-1545159768-e6f2bae9f6f2?w=900&fm=webp&q=80"); }

/* =============== Feature cards (split) =============== */
.feature-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}
.feature-split__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
}
.feature-split__img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(237, 28, 36, 0.15) 100%);
}
.feature-split--reverse .feature-split__img { order: -1; }

/* =============== Banner / stats =============== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin: 2.6rem 0;
}
.stat {
  text-align: center;
  padding: 1.2rem;
}
.stat__n {
  font-family: Impact, sans-serif; font-style: italic;
  font-size: 3.2rem; font-weight: 900;
  background: linear-gradient(120deg, var(--red), var(--orange), var(--yellow));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.stat__l { color: var(--ink-soft); font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.4rem; }

/* =============== Big CTA banner =============== */
.cta-banner {
  text-align: center;
  padding: 6rem 1.4rem;
  color: #fff;
  position: relative;
}
.cta-banner h2 {
  font-family: Impact, sans-serif; font-style: italic;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900; text-transform: uppercase;
  margin: 0 0 1rem; line-height: 1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.cta-banner p { font-size: 1.15rem; max-width: 50ch; margin: 0 auto 2rem; color: var(--ink-soft); }

/* =============== Article post =============== */
.post-hero {
  position: relative;
  padding: 8rem 1.4rem 5rem;
  min-height: 60vh;
  display: grid;
  align-items: end;
  isolation: isolate;
  margin-bottom: 3rem;
}
.post-hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.post-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 10, 20, 0.5) 50%, rgba(15, 10, 20, 0.95) 100%);
}
.post-hero__inner { max-width: var(--max-w-narrow); margin: 0 auto; width: 100%; }
.post-hero h1 {
  font-family: Impact, sans-serif; font-style: italic;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 900; text-transform: uppercase;
  line-height: 1; letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
.post-body {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 1.4rem 5rem;
  font-size: 1.05rem;
  line-height: 1.75;
}
.post-body h2 {
  font-family: Impact, sans-serif; font-style: italic;
  font-size: 1.8rem; font-weight: 900; text-transform: uppercase;
  margin: 2.4rem 0 0.8rem; color: var(--red);
}
.post-body p { color: var(--ink-soft); }
.post-body img { border-radius: var(--radius); margin: 1.6rem 0; box-shadow: var(--shadow-md); }
.post-meta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  font-size: 0.85rem; color: var(--ink-muted);
}
.post-meta .tag {
  background: var(--red); color: #fff;
  padding: 0.2rem 0.7rem; border-radius: 99px;
  font-family: var(--mono); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* =============== Footer =============== */
.foot {
  background: #050307;
  padding: 3.5rem 1.4rem 2rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}
.foot__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.foot h4 { color: var(--ink); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em;
  margin: 0 0 0.7rem; font-weight: 700; }
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { margin: 0.4rem 0; }
.foot a { color: var(--ink-soft); text-decoration: none; transition: color .15s; }
.foot a:hover { color: var(--red); }
.foot__bottom {
  border-top: 1px solid var(--rule);
  margin-top: 2.5rem; padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
  color: var(--ink-muted); font-size: 0.82rem;
}

/* =============== Responsive =============== */
@media (min-width: 720px) {
  .nav { gap: 1.8rem; font-size: 1rem; }
  .foot__inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .feature-split { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
  .section { padding: 7rem 1.4rem; }
  .feature-split { gap: 4rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
  .parallax::before, .hero__bg, .post-hero__bg { background-attachment: scroll; }
}

/* iOS Safari fallback for background-attachment: fixed */
@supports (-webkit-touch-callout: none) {
  .parallax::before, .hero__bg, .post-hero__bg { background-attachment: scroll; }
}
