/* ═══════════════════════════════════════════
   GT CUTS — Stylesheet
   Pas kleuren, fonts en spacing hier aan.
   ═══════════════════════════════════════════ */

/* ─── Kleuren (pas hier aan) ─── */
:root {
  --bg: #0a0a0a;
  --fg: #ededed;
  --card: #141414;
  --border: #262626;
  --muted: #808080;
  --muted-light: #383838;
  --radius: 3px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: rgba(237, 237, 237, 0.2); }

/* ─── Layout ─── */
.container { max-width: 1152px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6, .logo, .heading-section, .heading-cta, .price, .highlight-num {
  font-family: 'Playfair Display', serif;
}
.label-tag {
  display: block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 16px;
}
.heading-section { font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.section-intro { color: var(--muted); font-size: 0.9rem; margin-bottom: 48px; max-width: 480px; }
.divider { width: 48px; height: 1px; background: rgba(237,237,237,0.2); margin: 16px 0 24px; }

/* ─── Header ─── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s, border 0.4s, backdrop-filter 0.4s;
}
#header.scrolled {
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1152px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
}
.logo { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.02em; }
.logo span { font-weight: 300; }
.nav-desktop { display: none; gap: 32px; }
.nav-desktop a { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); transition: color 0.3s; }
.nav-desktop a:hover { color: var(--fg); }

/* ─── Buttons ─── */
.btn-book {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--fg); color: var(--bg);
  font-weight: 600; padding: 16px 28px; font-size: 0.85rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-book:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(237,237,237,0.15); }
.btn-small { padding: 10px 20px; font-size: 0.75rem; }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid rgba(237,237,237,0.3); color: var(--fg);
  font-weight: 500; padding: 16px 28px; font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: border-color 0.3s, background 0.3s;
}
.btn-outline:hover { border-color: var(--fg); background: rgba(237,237,237,0.05); }
.btn-snapchat {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  background: #FFFC00; color: #0d0d0d;
  font-weight: 600; padding: 16px 28px; font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: filter 0.3s, transform 0.3s;
}
.btn-snapchat:hover { filter: brightness(1.1); transform: translateY(-2px); }
.link-book {
  display: inline-block; margin-top: 20px;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.3s;
}
.link-book:hover { color: var(--muted); }

/* ─── Hero ─── */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 5%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg), rgba(10,10,10,0.6) 50%, transparent);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(10,10,10,0.2);
}
.hero-content {
  position: relative; width: 100%; padding: 56px 20px 56px;
  max-width: 1152px; margin: 0 auto;
  animation: fadeUp 0.8s ease-out 0.2s both;
}
.hero h1 { font-size: 3.2rem; font-weight: 700; letter-spacing: -0.02em; line-height: 0.95; margin-bottom: 24px; }
.hero-sub { color: var(--muted); font-size: 1rem; max-width: 400px; margin-bottom: 40px; line-height: 1.6; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Marquee ─── */
.marquee-strip {
  overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 16px 0; background: var(--card);
}
.marquee-track {
  display: flex; gap: 24px; white-space: nowrap;
  animation: scroll 20s linear infinite;
}
.marquee-track span {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(128,128,128,0.3); flex-shrink: 0; align-self: center; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── Services ─── */
.services-grid { display: grid; gap: 16px; }
.service-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 32px;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-4px); }
.service-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.service-top h3 { font-size: 1.25rem; font-weight: 700; }
.price { font-size: 1.6rem; font-weight: 700; }
.service-card p { color: var(--muted); font-size: 0.85rem; margin-bottom: 4px; }
.service-card .detail { color: rgba(128,128,128,0.7); font-size: 0.75rem; }

/* ─── Gallery ─── */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.gallery-item { aspect-ratio: 3/4; overflow: hidden; border-radius: var(--radius); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s;
}
.gallery-item:hover img { transform: scale(1.1); }

/* ─── Highlights ─── */
.highlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; text-align: center; }
.highlight-num { display: block; font-size: 1.8rem; font-weight: 700; margin-bottom: 4px; }
.highlight-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }

/* ─── About ─── */
.about-grid { display: grid; gap: 40px; }
.about-image { aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text p { color: var(--muted); font-size: 0.9rem; margin-bottom: 16px; line-height: 1.7; }
.about-text .btn-outline { margin-top: 16px; }

/* ─── Contact ─── */
.contact-grid { display: grid; gap: 40px; }
.contact-grid > div:first-child p { color: var(--muted); font-size: 0.9rem; margin-bottom: 32px; max-width: 400px; }
.contact-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.info-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 32px; margin-bottom: 16px;
}
.info-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.info-card p { color: var(--muted); font-size: 0.85rem; }
.hours { font-size: 0.85rem; }
.hour-row { display: flex; justify-content: space-between; margin-bottom: 8px; }
.hour-row span:first-child { color: var(--muted); }
.muted { color: var(--muted); }

/* ─── CTA Section ─── */
.cta-section { padding: 100px 0; }
.cta-icon { font-size: 2.5rem; margin-bottom: 24px; }
.heading-cta { font-size: 2.5rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 16px; }
.cta-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 40px; max-width: 360px; margin-left: auto; margin-right: auto; }

/* ─── Footer ─── */
footer { border-top: 1px solid var(--border); padding: 48px 0; }
.footer-grid { display: grid; gap: 40px; margin-bottom: 48px; }
.footer-logo { font-size: 1.5rem; display: block; margin-bottom: 12px; }
.footer-desc { color: var(--muted); font-size: 0.85rem; max-width: 280px; }
.footer-heading { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; font-size: 0.85rem; color: var(--muted); }
.footer-nav a:hover { color: var(--fg); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px;
  font-size: 0.75rem; color: var(--muted);
}

/* ═══ DESKTOP (768px+) ═══ */
@media (min-width: 768px) {
  .container { padding: 0 32px; }
  .section { padding: 128px 0; }
  .nav-desktop { display: flex; }
  .heading-section { font-size: 3rem; }
  .hero h1 { font-size: 5rem; }
  .hero-content { padding: 56px 32px 56px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .gallery-item.offset { margin-top: 32px; }
  .highlights { grid-template-columns: repeat(4, 1fr); gap: 32px; }
  .highlight-num { font-size: 2.5rem; }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .heading-cta { font-size: 3.5rem; }
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 6rem; }
}

/* ─── Scroll animations ─── */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
