@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

:root {
  --bg:          #0D2117;
  --bg2:         #112A1E;
  --black:       #080F0D;
  --gold:        #C39B41;
  --gold-light:  #E2C97E;
  --gold-line:   rgba(195,155,65,0.35);
  --gold-subtle: rgba(195,155,65,0.15);
  --text:        #F0E6C8;
  --text-muted:  rgba(240,230,200,0.55);
  --text-on-gold:#0D2117;
  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Lato', sans-serif;
  --t: 300ms ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg) !important; }
body { font-family: var(--font-b); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; border: none; outline: none; box-shadow: none; padding: 0; background: none; }
a { color: var(--gold); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--gold-light); }

/* NAV */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,15,13,0.93); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-subtle); padding: 0 clamp(24px,6vw,80px);
}
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { font-family: var(--font-d); font-size: 22px; font-weight: 700; letter-spacing: .15em; color: var(--gold); text-transform: uppercase; }
.nav-logo:hover { color: var(--gold-light); }
.nav-menu { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-menu a { font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); transition: color var(--t); }
.nav-menu a:hover { color: var(--gold); }
.nav-cta { color: var(--text-on-gold) !important; background: var(--gold); padding: 10px 24px; }
.nav-cta:hover { background: var(--gold-light); color: var(--text-on-gold) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--gold); }

/* HERO */
.hero {
  position: relative;
  background: url('https://ladylee.nl/wp-content/uploads/2026/06/hero-bg.jpg.png') center/cover no-repeat;
  padding: 60px clamp(24px,6vw,80px);
  margin-top: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(8,15,13,0.45);
}

/* hero-bg verborgen — achtergrond zit nu op .hero zelf */
.hero-bg { display: none; }

/* Twee kolommen container — breedte gebaseerd op foto */
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 619px 619px;
  width: 1238px;
  max-width: 100%;
}

/* Foto kolom */
.hero-photo {
  position: relative;
}
.hero-photo img {
  width: 619px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Tekst kolom — zelfde hoogte als foto */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 48px 56px;
  background: rgba(8,15,13,0.75);
  border: 1px solid var(--gold-subtle);
  gap: 0;
}

.hero-label { font-size: 11px; font-weight: 700; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); opacity: .85; margin-bottom: 20px; }
.hero-rule { width: 60px; height: 1px; background: linear-gradient(to right, var(--gold), transparent); margin-bottom: 20px; }
.hero-name { font-family: var(--font-d); font-size: clamp(44px,6vw,80px); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); line-height: 1; margin-bottom: 16px; text-shadow: 0 0 60px rgba(195,155,65,.2); }
.hero-tagline { font-family: var(--font-d); font-size: clamp(16px,1.8vw,22px); font-style: italic; color: var(--text); opacity: .88; line-height: 1.5; margin-bottom: 40px; max-width: 420px; }
.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; }

/* KNOPPEN */
.btn-primary { font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--text-on-gold); background: var(--gold); padding: 16px 40px; display: inline-block; transition: background var(--t), transform var(--t); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--text-on-gold); }
.btn-secondary { font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); background: transparent; padding: 15px 40px; border: 1px solid var(--gold-line); display: inline-block; transition: all var(--t); }
.btn-secondary:hover { background: rgba(195,155,65,.1); color: var(--gold-light); border-color: rgba(195,155,65,.5); }

/* INTRO */
.section-intro { padding: clamp(64px,8vw,112px) clamp(24px,6vw,80px); background: var(--bg); position: relative; }
.section-intro::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 1px; height: 80px; background: linear-gradient(to bottom, var(--gold-line), transparent); }
.intro-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); opacity: .75; margin-bottom: 12px; }
.section-rule { width: 60px; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); margin: 0 auto 24px; }
.section-title { font-family: var(--font-d); font-size: clamp(24px,3.5vw,38px); font-weight: 600; color: var(--gold); line-height: 1.15; margin-bottom: 24px; }
.intro-text { font-size: 18px; color: var(--text); line-height: 1.8; opacity: .88; margin-bottom: 40px; }

/* SFEER */
.section-atmosphere { position: relative; padding: clamp(64px,8vw,112px) clamp(24px,6vw,80px); background: url('https://ladylee.nl/wp-content/uploads/2026/06/atmosphere-bg.jpg.png') center/cover no-repeat; text-align: center; }
.section-atmosphere::before { content: ''; position: absolute; inset: 0; background: rgba(8,15,13,.72); }
.atmosphere-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.atmosphere-quote { font-family: var(--font-d); font-size: clamp(22px,3.5vw,36px); font-style: italic; color: var(--text); line-height: 1.5; margin-bottom: 40px; }

/* BOEKING */
.section-booking { padding: clamp(64px,8vw,112px) clamp(24px,6vw,80px); background: var(--bg2); border-top: 1px solid var(--gold-subtle); border-bottom: 1px solid var(--gold-subtle); text-align: center; }
.booking-inner { max-width: 680px; margin: 0 auto; }
.booking-title { font-family: var(--font-d); font-size: clamp(24px,3.5vw,38px); font-weight: 600; color: var(--gold); margin-bottom: 12px; }
.booking-text { font-size: 18px; color: var(--text); opacity: .8; margin-bottom: 40px; line-height: 1.7; }

/* FOOTER */
.site-footer { background: var(--black); border-top: 1px solid var(--gold-line); padding: clamp(48px,6vw,80px) clamp(24px,6vw,80px); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--gold-subtle); }
.footer-logo { font-family: var(--font-d); font-size: 28px; font-weight: 700; letter-spacing: .12em; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.footer-nav h4, .footer-social h4 { font-size: 11px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); opacity: .7; margin-bottom: 16px; }
.footer-nav ul { list-style: none; }
.footer-nav ul li { margin-bottom: 10px; }
.footer-nav ul a, .footer-social-links a { font-size: 14px; color: var(--text-muted); transition: color var(--t); }
.footer-nav ul a:hover, .footer-social-links a:hover { color: var(--gold); }
.footer-social-links { display: flex; flex-direction: column; gap: 10px; }
.footer-bottom { max-width: 1200px; margin: 24px auto 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: var(--text-muted); opacity: .6; }

/* ANIMATIES */
@keyframes fadeInUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }

/* MOBIEL */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero-photo { height: 60vw; min-height: 300px; }
  .hero-content { align-items: center; text-align: center; }
  .hero-tagline { text-align: center; }
  .hero-actions { justify-content: center; }
  .nav-menu { display: none; flex-direction: column; }
  .nav-menu.is-open { display: flex; position: absolute; top: 72px; left: 0; right: 0; background: rgba(8,15,13,.98); padding: 24px; border-bottom: 1px solid var(--gold-line); gap: 16px; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
