/* Driven by Ivo — shared styles
   Colors: bg #111111/#1B1B1B, text #F5F5F2, accent champagne #C9A66B / #E0C289 */

:root {
  --bg: #111111;
  --bg2: #1B1B1B;
  --text: #F5F5F2;
  --gold: #C9A66B;
  --gold-light: #E0C289;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }
::selection { background: var(--gold); color: #111111; }

h1, h2, h3 { font-family: 'Outfit', sans-serif; }

img { max-width: 100%; }

/* ---------- NAV ---------- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: linear-gradient(to bottom, rgba(17,17,17,.94), rgba(17,17,17,.55) 70%, rgba(17,17,17,0));
  backdrop-filter: blur(3px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px clamp(20px, 5vw, 48px);
}
.wordmark {
  color: #F5F5F2; font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 4.4vw, 21px); letter-spacing: .2em; font-weight: 500; white-space: nowrap;
}
.wordmark span { color: var(--gold); font-style: italic; letter-spacing: .08em; text-transform: lowercase; font-weight: 400; }

.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); font-size: 12.5px; letter-spacing: .14em; font-weight: 400; }
.nav-link { color: rgba(245,245,242,.85); }
.nav-link:hover { color: #F5F5F2; }
.nav-link.active { color: #F5F5F2; border-bottom: 1px solid var(--gold); padding-bottom: 4px; }
.nav-phone { color: var(--gold); border: 1px solid rgba(201,166,107,.45); padding: 10px 20px; letter-spacing: .1em; white-space: nowrap; }
.nav-phone:hover { border-color: var(--gold); color: var(--gold-light); }

.nav-compact { display: none; align-items: center; gap: 10px; }
.nav-call-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid rgba(201,166,107,.45); }
.nav-menu-btn { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; padding: 0 11px; background: transparent; border: 1px solid rgba(245,245,242,.28); cursor: pointer; }
.nav-menu-btn span { display: block; height: 1px; background: #F5F5F2; }

.nav-mobile-menu { display: flex; flex-direction: column; padding: 4px clamp(20px, 5vw, 48px) 20px; background: #151515; border-top: 1px solid rgba(245,245,242,.08); }
.nav-mobile-menu[hidden] { display: none; }
.nav-mobile-menu a { color: rgba(245,245,242,.85); font-size: 13px; letter-spacing: .16em; padding: 14px 0; border-bottom: 1px solid rgba(245,245,242,.08); }
.nav-mobile-menu a:hover { color: #F5F5F2; }
.nav-mobile-menu a.active { color: var(--gold); }
.nav-mobile-menu .btn-gold-block { margin-top: 18px; border-bottom: none; }

@media (max-width: 899px) {
  .nav-desktop { display: none; }
  .nav-compact { display: flex; }
}

/* ---------- BUTTONS / LINKS ---------- */
.btn-gold { display: inline-block; background: var(--gold); color: #111111; padding: 16px 32px; font-size: 13px; letter-spacing: .14em; font-weight: 600; }
.btn-gold:hover { background: var(--gold-light); color: #111111; }
.btn-gold-block { display: block; text-align: center; }

.btn-outline { display: inline-block; border: 1px solid rgba(245,245,242,.48); color: #F5F5F2; padding: 16px 32px; font-size: 13px; letter-spacing: .14em; font-weight: 500; }
.btn-outline:hover { border-color: #F5F5F2; }
.btn-outline-block { display: block; text-align: center; }

.btn-outline-gold { display: inline-block; border: 1px solid var(--gold); color: var(--gold); padding: 16px 40px; font-size: 13px; letter-spacing: .14em; font-weight: 500; }
.btn-outline-gold:hover { background: var(--gold); color: #111111; }

.underline-gold { font-size: 12.5px; letter-spacing: .16em; color: var(--gold); border-bottom: 1px solid rgba(201,166,107,.4); padding-bottom: 6px; }
.underline-gold:hover { color: var(--gold); }

/* ---------- CARDS ---------- */
.card { display: block; background: #161616; border: 1px solid rgba(245,245,242,.07); color: #F5F5F2; overflow: hidden; }
.card:hover { border-color: rgba(201,166,107,.4); }

.channel-card { display: block; background: var(--bg2); border: 1px solid rgba(245,245,242,.1); padding: 40px 36px; color: #F5F5F2; }
.channel-card:hover { border-color: rgba(201,166,107,.5); }

.ref-link { font-family: 'Outfit', sans-serif; font-size: 17px; letter-spacing: .16em; font-weight: 300; color: rgba(245,245,242,.5); transition: color .5s; }
.ref-link:hover { color: rgba(245,245,242,.9); }

.footer-link { color: rgba(245,245,242,.72); }
.footer-link:hover { color: #F5F5F2; }

/* ---------- FORM FIELDS ---------- */
.field-label { display: flex; flex-direction: column; gap: 10px; font-size: 11.5px; letter-spacing: .2em; color: rgba(245,245,242,.68); }
.field-input {
  background: #1B1B1B; border: 1px solid rgba(245,245,242,.14); color: #F5F5F2;
  padding: 16px 18px; font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 300;
  letter-spacing: normal; outline: none; width: 100%; resize: vertical;
}
.field-input:focus { border-color: var(--gold); }

/* Native date/time pickers passend bij het donkere thema */
input[type="date"].field-input,
input[type="time"].field-input { color-scheme: dark; accent-color: var(--gold); min-height: 54px; }
input[type="date"].field-input::-webkit-calendar-picker-indicator,
input[type="time"].field-input::-webkit-calendar-picker-indicator { opacity: .55; cursor: pointer; transition: opacity .3s; }
input[type="date"].field-input:hover::-webkit-calendar-picker-indicator,
input[type="time"].field-input:hover::-webkit-calendar-picker-indicator { opacity: .9; }

input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 2px;
  background: linear-gradient(to right, var(--gold) var(--fill, 30%), rgba(245,245,242,.15) var(--fill, 30%));
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold); border: 6px solid #111111; box-shadow: 0 0 0 1px rgba(201,166,107,.6); cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 14px; height: 14px; border-radius: 50%; background: var(--gold);
  border: 6px solid #111111; box-shadow: 0 0 0 1px rgba(201,166,107,.6); cursor: pointer;
}

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed; right: 28px; bottom: 28px; z-index: 60; width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 28px rgba(0,0,0,.45);
}
.wa-float:hover { background: var(--gold-light); }

/* ---------- AVONDLICHT BACKGROUND SECTION ---------- */
.section-avondlicht { position: relative; }
.section-avondlicht::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background-image: linear-gradient(to bottom, #111111 0%, rgba(17,17,17,.86) 30%, rgba(17,17,17,.9) 70%, #111111 100%), url(../assets/avondlicht.jpg);
  background-size: cover, cover; background-position: center, 50% 60%; background-repeat: no-repeat, no-repeat;
}

/* ---------- FOOTER ---------- */
.site-footer { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; font-size: 13px; font-weight: 300; color: rgba(245,245,242,.68); line-height: 2; }
.site-footer .brand { margin: 0 0 8px; font-family: 'Cormorant Garamond', serif; font-size: 18px; letter-spacing: .2em; color: #F5F5F2; }
.site-footer .brand span { color: var(--gold); font-style: italic; text-transform: lowercase; }
.footer-cols { border-top: 1px solid rgba(245,245,242,.09); padding-top: 44px; display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }

/* ---------- SCROLL REVEAL ---------- */
[data-reveal] { }

/* ---------- RITPLANNER ---------- */
.tab-btn {
  flex: 1; white-space: nowrap; padding: 13px 24px; font-family: 'Manrope', sans-serif; font-size: 11.5px;
  letter-spacing: .16em; font-weight: 500; cursor: pointer; border: none; background: transparent;
  color: rgba(245,245,242,.78); transition: all .3s;
}
.tab-btn.active { background: var(--gold); color: #111111; }

.extra-btn {
  display: flex; align-items: center; gap: 14px; text-align: left; padding: 16px 18px;
  font-family: 'Manrope', sans-serif; font-size: 13.5px; font-weight: 300; cursor: pointer; transition: all .3s;
  background: #1B1B1B; border: 1px solid rgba(245,245,242,.1); color: rgba(245,245,242,.8);
}
.extra-btn.active { background: rgba(201,166,107,.1); border: 1px solid rgba(201,166,107,.55); color: #F5F5F2; }
.extra-check {
  width: 18px; height: 18px; flex: none; display: flex; align-items: center; justify-content: center;
  font-size: 11px; transition: all .3s; border: 1px solid rgba(245,245,242,.25); color: transparent;
}
.extra-btn.active .extra-check { border: 1px solid var(--gold); color: var(--gold); }
