/*
Theme Name: Casa Delfin Javea
Theme URI: https://casadelfinjavea.nl
Author: Casa Delfin
Author URI: https://casadelfinjavea.nl
Description: Luxe vakantievilla thema voor Casa Delfin, Jávea. Wit en azuurblauw design.
Version: 1.7
License: Private
Text Domain: casadelfin
*/

/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
  --azure:       #2A7FBF;
  --azure-dark:  #1A5F96;
  --azure-light: #5BA3D4;
  --azure-pale:  #EBF5FB;
  --sky:         #D6EAF8;
  --white:       #FFFFFF;
  --off-white:   #F8FBFE;
  --sand:        #F2EDE6;
  --dark:        #1C2B3A;
  --mid:         #3D5166;
  --gray:        #7A8E9E;
  --light-gray:  #C8D8E4;
  --accent:      #E8A838;
  --terracotta:  #C4724A;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', 'Helvetica Neue', sans-serif;

  --shadow-sm:   0 2px 12px rgba(42,127,191,0.10);
  --shadow-md:   0 8px 32px rgba(42,127,191,0.14);
  --shadow-lg:   0 20px 60px rgba(42,127,191,0.18);
  --radius:      4px;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ═══════════════════════════════════════
   LANGUAGE BAR (onderdeel van nav)
═══════════════════════════════════════ */
.lang-bar {
  display: flex;
  gap: 0;
  flex-shrink: 0;
  margin-left: 24px;
}
.lang-btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.40);
  color: rgba(255,255,255,0.90);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 5px 11px;
  transition: var(--transition);
}
.lang-btn:first-child { border-right: none; border-radius: var(--radius) 0 0 var(--radius); }
.lang-btn:last-child  { border-radius: 0 var(--radius) var(--radius) 0; }
.lang-btn.active, .lang-btn:hover {
  background: var(--azure);
  border-color: var(--azure);
  color: var(--white);
}
#mainNav.scrolled .lang-btn {
  background: rgba(42,127,191,0.07);
  border-color: var(--light-gray);
  color: var(--mid);
}
#mainNav.scrolled .lang-btn.active,
#mainNav.scrolled .lang-btn:hover {
  background: var(--azure);
  border-color: var(--azure);
  color: var(--white);
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  transition: all 0.4s ease;
}
#mainNav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 24px rgba(42,127,191,0.12);
  padding: 12px 40px;
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--white);
  transition: color var(--transition);
}
.nav-logo span { color: var(--azure-light); }
#mainNav.scrolled .nav-logo { color: var(--dark); }
#mainNav.scrolled .nav-logo span { color: var(--azure); }

.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--azure-light);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
#mainNav.scrolled .nav-links a { color: var(--mid); }
#mainNav.scrolled .nav-links a::after { background: var(--azure); }
#mainNav.scrolled .nav-links a:hover { color: var(--azure); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: var(--radius);
  color: var(--white);
  padding: 6px 10px;
  font-size: 18px;
  transition: var(--transition);
}
#mainNav.scrolled .nav-toggle { border-color: var(--azure); color: var(--azure); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
  transform: scale(1.04);
}
.hero-slide.active {
  opacity: 1;
  animation: heroZoom 9s ease-in-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,43,58,0.40) 0%,
    rgba(28,43,58,0.15) 50%,
    rgba(28,43,58,0.55) 100%
  );
}
.hero-content {
  position: relative;
  text-align: center;
  padding: 0 24px;
  animation: fadeUp 1.2s ease 0.4s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 32px; height: 1px;
  background: rgba(255,255,255,0.5);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(56px, 9vw, 110px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 4px;
  color: var(--white);
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(28,43,58,0.4);
}
.hero-title em {
  font-style: italic;
  color: #1a6fa8;
  text-shadow: 0 1px 8px rgba(255,255,255,0.55), 0 2px 16px rgba(255,255,255,0.35);
}
.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.97);
  margin-bottom: 44px;
  letter-spacing: 1px;
  text-shadow: 0 1px 12px rgba(28,43,58,0.55), 0 2px 24px rgba(28,43,58,0.35);
}
.hero-cta {
  display: inline-block;
  padding: 16px 44px;
  background: var(--azure);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(42,127,191,0.45);
  transition: all var(--transition);
  border: 2px solid transparent;
}
.hero-cta:hover {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
  box-shadow: none;
  transform: translateY(-2px);
}
.hero-dots {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
}
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.hero-dot.active {
  background: var(--white);
  transform: scale(1.4);
}
.hero-scroll {
  position: absolute;
  bottom: 36px; right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ═══════════════════════════════════════
   SECTIONS — BASE
═══════════════════════════════════════ */
.section-label {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 300;
  text-align: center;
  color: var(--dark);
  line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--azure); }
.azure-rule {
  width: 56px; height: 3px;
  background: linear-gradient(to right, var(--azure), var(--azure-light));
  border-radius: 2px;
  margin: 20px auto 0;
}

/* ═══════════════════════════════════════
   INTRO
═══════════════════════════════════════ */
.intro {
  background: var(--white);
  padding: 100px 48px;
  text-align: center;
}
.intro-text {
  max-width: 680px;
  margin: 32px auto 0;
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 300;
  line-height: 1.85;
  color: var(--mid);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 820px;
  margin: 72px auto 0;
  border: 1px solid var(--sky);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.stat {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid var(--sky);
  background: var(--white);
  transition: background var(--transition);
}
.stat:last-child { border-right: none; }
.stat:hover { background: var(--azure-pale); }
.stat-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--azure);
  line-height: 1;
  display: block;
}
.stat-num small { font-size: 22px; }
.stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 8px;
  display: block;
}

/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
.gallery-section {
  background: var(--off-white);
  padding: 100px 0 0;
}
.gallery-section .section-label,
.gallery-section .section-title { padding: 0 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 5px;
  margin-top: 56px;
}
.g-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.g-item:hover img { transform: scale(1.06); }
.g-overlay {
  position: absolute; inset: 0;
  background: rgba(42,127,191,0);
  transition: background 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.g-overlay span {
  color: var(--white);
  font-size: 28px;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.4s;
}
.g-item:hover .g-overlay { background: rgba(42,127,191,0.25); }
.g-item:hover .g-overlay span { opacity: 1; transform: scale(1); }

.g1  { grid-column: 1/8;  grid-row: 1/3; height: 510px; }
.g2  { grid-column: 8/13; grid-row: 1;   height: 252px; }
.g3  { grid-column: 8/13; grid-row: 2;   height: 252px; }
.g4  { grid-column: 1/5;  height: 270px; }
.g5  { grid-column: 5/9;  height: 270px; }
.g6  { grid-column: 9/13; height: 270px; }
.g7  { grid-column: 1/6;  height: 330px; }
.g8  { grid-column: 6/13; height: 330px; }
.g9  { grid-column: 1/5;  height: 250px; }
.g10 { grid-column: 5/9;  height: 250px; }
.g11 { grid-column: 9/13; height: 250px; }

/* ═══════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(28,43,58,0.97);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lb-close {
  position: absolute;
  top: 20px; right: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 20px;
  width: 44px; height: 44px;
  border-radius: var(--radius);
  transition: all 0.3s;
}
.lb-close:hover { background: var(--azure); border-color: var(--azure); }
.lb-prev, .lb-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 22px;
  width: 52px; height: 52px;
  border-radius: var(--radius);
  transition: all 0.3s;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover { background: var(--azure); border-color: var(--azure); }

/* ═══════════════════════════════════════
   AMENITIES
═══════════════════════════════════════ */
.amenities {
  background: var(--white);
  padding: 100px 48px;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-width: 1020px;
  margin: 56px auto 0;
}
.amenity {
  background: var(--off-white);
  border: 1px solid var(--sky);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  transition: all var(--transition);
}
.amenity:hover {
  background: var(--azure-pale);
  border-color: var(--azure-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.amenity-icon { font-size: 30px; margin-bottom: 10px; display: block; }
.amenity-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid);
  display: block;
}

/* ═══════════════════════════════════════
   PRICING
═══════════════════════════════════════ */
.pricing {
  background: var(--azure-pale);
  padding: 100px 48px;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 860px;
  margin: 60px auto 0;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--sky);
  border-radius: var(--radius);
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--transition);
}
.price-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--azure-light);
}
.price-card.featured {
  border-color: var(--azure);
  box-shadow: var(--shadow-md);
}
.price-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--azure);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 0 0 var(--radius) var(--radius);
}
.price-month {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--gray);
  margin-bottom: 20px;
}
.price-amount {
  font-family: var(--font-serif);
  font-size: 58px;
  font-weight: 300;
  color: var(--azure);
  line-height: 1;
}
.price-unit {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin: 8px 0 32px;
}
.price-features { text-align: left; }
.price-features li {
  font-size: 14px;
  color: var(--mid);
  padding: 10px 0;
  border-bottom: 1px solid var(--sky);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before { content: '✓'; color: var(--azure); font-weight: 700; font-size: 14px; }
.price-note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--gray);
  font-style: italic;
}

/* ═══════════════════════════════════════
   CALENDAR
═══════════════════════════════════════ */
.calendar-section {
  background: var(--white);
  padding: 100px 48px;
}
.calendar-wrap {
  max-width: 720px;
  margin: 56px auto 0;
  border: 1px solid var(--sky);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: var(--azure);
  color: var(--white);
}
.cal-nav {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 38px; height: 38px;
  border-radius: var(--radius);
  font-size: 18px;
  transition: all 0.3s;
}
.cal-nav:hover { background: rgba(255,255,255,0.3); }
.cal-month-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 1px;
}
.cal-grid { padding: 24px 32px; background: var(--white); }
.cal-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}
.cal-day-name {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--azure);
  padding: 8px 0;
}
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--mid);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.cal-day.empty { pointer-events: none; }
.cal-day.available { cursor: pointer; }
.cal-day.available:hover { background: var(--azure-pale); color: var(--azure); font-weight: 600; }
.cal-day.booked {
  background: rgba(196,114,74,0.10);
  color: var(--terracotta);
  text-decoration: line-through;
  cursor: not-allowed;
}
.cal-day.today {
  border: 2px solid var(--azure);
  color: var(--azure);
  font-weight: 700;
}
.cal-legend {
  display: flex;
  gap: 24px;
  justify-content: center;
  padding: 18px 32px;
  background: var(--off-white);
  border-top: 1px solid var(--sky);
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gray);
  text-transform: uppercase;
}
.legend-dot {
  width: 12px; height: 12px;
  border-radius: 3px;
}
.legend-dot.avail { background: var(--sky); border: 1px solid var(--azure-light); }
.legend-dot.book  { background: rgba(196,114,74,0.3); }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-section {
  background: var(--off-white);
  padding: 100px 48px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  max-width: 1020px;
  margin: 56px auto 0;
  align-items: start;
}
.contact-info-panel {
  background: var(--azure);
  border-radius: var(--radius);
  padding: 48px 36px;
  color: var(--white);
}
.contact-info-panel h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 24px;
}
.contact-detail {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-detail .cd-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.contact-detail .cd-value {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--white);
}
.contact-form-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sky);
}
.contact-form-panel h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--azure);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--azure);
  box-shadow: 0 0 0 3px rgba(42,127,191,0.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--azure);
  border: 2px solid var(--azure);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all var(--transition);
  margin-top: 8px;
}
.submit-btn:hover {
  background: var(--azure-dark);
  border-color: var(--azure-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ═══════════════════════════════════════
   LOCATION
═══════════════════════════════════════ */
.location-section {
  background: var(--white);
  padding: 100px 48px;
}
.location-text {
  max-width: 600px;
  margin: 24px auto 48px;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--mid);
  text-align: center;
}
.map-wrap {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
  border: 1px solid var(--sky);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.nearby-list {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 820px;
  margin: 48px auto 0;
  border: 1px solid var(--sky);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.nearby-item {
  flex: 1;
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid var(--sky);
  background: var(--white);
  transition: background var(--transition);
}
.nearby-item:last-child { border-right: none; }
.nearby-item:hover { background: var(--azure-pale); }
.nearby-icon { font-size: 24px; margin-bottom: 8px; display: block; }
.nearby-name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid);
  display: block;
}
.nearby-dist {
  font-size: 13px;
  color: var(--azure);
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--dark);
  padding: 56px 48px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 5px;
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}
.footer-logo span { color: var(--azure-light); }
footer p {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 6px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}
.footer-links a {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--gray);
  transition: color var(--transition);
  text-transform: uppercase;
}
.footer-links a:hover { color: var(--azure-light); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 960px) {
  #mainNav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    padding: 20px 24px;
    gap: 20px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open a { color: var(--mid) !important; }
  .nav-toggle { display: block; }
  .intro, .amenities, .pricing, .calendar-section,
  .contact-section, .location-section { padding: 70px 24px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 1px solid var(--sky); }
  .g1 { grid-column: 1/13; height: 280px; grid-row: 1; }
  .g2 { grid-column: 1/7;  height: 200px; grid-row: 2; }
  .g3 { grid-column: 7/13; height: 200px; grid-row: 2; }
  .g4 { grid-column: 1/13; height: 210px; grid-row: 3; }
  .g5 { grid-column: 1/7;  height: 190px; grid-row: 4; }
  .g6 { grid-column: 7/13; height: 190px; grid-row: 4; }
  .g7 { grid-column: 1/13; height: 220px; grid-row: 5; }
  .g8 { grid-column: 1/7;  height: 200px; grid-row: 6; }
  .g9 { grid-column: 7/13; height: 200px; grid-row: 6; }
  .g10 { grid-column: 1/7; height: 180px; grid-row: 7; }
  .g11 { grid-column: 7/13; height: 180px; grid-row: 7; }
  .contact-layout { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .nearby-list { flex-wrap: wrap; }
  .nearby-item { flex: 0 0 33.33%; border-bottom: 1px solid var(--sky); }
  .nearby-item:last-child { border-right: 1px solid var(--sky); }
  footer { padding: 48px 24px; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 52px; letter-spacing: 2px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero-scroll { display: none; }
  .pricing-cards { grid-template-columns: 1fr; }
  .calendar-wrap { margin: 40px 0 0; }
  .cal-grid { padding: 16px; }
  .cal-header { padding: 18px 16px; }
}

/* ═══════════════════════════════════════
   MICAZU RESERVEERKNOP (onder kalender)
═══════════════════════════════════════ */
.cal-book-cta {
  text-align: center;
  padding: 48px 24px 64px;
}
.cal-book-text {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 300;
  color: var(--mid);
  margin-bottom: 24px;
}
.micazu-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--azure);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  text-decoration: none;
}
.micazu-btn:hover {
  background: var(--azure-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}
.micazu-btn svg {
  flex-shrink: 0;
  transition: transform var(--transition);
}
.micazu-btn:hover svg {
  transform: translate(2px, -2px);
}
