:root {
  /* Kleurenpalet: Luxe Zand & Antraciet */
  --bg-sand-light: #f4f1ea;
  --bg-sand-medium: #e8e2d2;
  --bg-card: #ffffff; /* Kleur voor de vakjes */
  --bg-dark: #2a2a2a;
  
  --primary-gold: #c5a059;
  --text-dark: #2a2a2a;
  --text-muted: #5e5b58;
  --text-light: #f4f1ea;
  
  --border-delicate: rgba(42, 42, 42, 0.1);
  
  --container-width: 1000px;
  --radius-btn: 6px;
  --radius-card: 16px; /* Afgeronde hoeken voor foto's en vakjes */
  
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-sand-light);
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.3;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- Vakantie Banner --- */
.announcement-bar {
  background-color: var(--primary-gold);
  color: var(--bg-card);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.announcement-bar strong {
  font-weight: 700;
}

/* --- Header --- */
.header {
  background: var(--bg-sand-light);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-delicate);
}

.header-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-dark);
}

.nav-desktop { display: flex; gap: 3rem; }
.nav-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 0.2rem;
}
.nav-link:hover, .nav-link.active { color: var(--text-dark); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 2px;
  background: var(--text-dark);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 25px; 
  height: 2px;
  background: var(--text-dark);
  transition: 0.3s;
}

.mobile-nav {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: var(--bg-sand-light);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  width: 100vw; height: 100vh;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin: 1.2rem 0;
  color: var(--text-dark);
}
.close-menu {
  position: absolute;
  top: 2rem; right: 2rem;
  background: none;
  border: none;
  font-size: 3rem;
  color: var(--text-dark);
  cursor: pointer;
  line-height: 1;
}

/* Layout Utilities */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 1.5rem; }
.bg-alt { background-color: var(--bg-sand-medium); }

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: 1rem;
}
.btn-primary {
  background-color: var(--text-dark);
  color: var(--text-light);
  border: 1px solid var(--text-dark);
}
.btn-primary:hover {
  background-color: transparent;
  color: var(--text-dark);
}

.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 5rem 0 3rem;
  text-align: center;
  margin-top: 4rem;
}
.footer-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--primary-gold);
  margin-bottom: 2rem;
  display: block;
}
.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}

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