/* ============================================
   Pension Blankebil — Stylesheet
   Coastal theme: navy, sand, sea foam
   ============================================ */

:root {
  --navy:     #1b3a5c;
  --navy-dark:#122740;
  --sky:      #4e94bb;
  --seafoam:  #a8d5e8;
  --sand:     #f2ddb8;
  --sand-dark:#e5c98a;
  --coral:    #d4704a;
  --white:    #ffffff;
  --off-white:#f8f4ef;
  --dark:     #1a2735;
  --grey:     #6b7a8a;
  --light-grey:#e8edf2;

  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --radius: 10px;
  --shadow: 0 4px 24px rgba(27, 58, 92, 0.12);
  --shadow-lg: 0 8px 40px rgba(27, 58, 92, 0.18);
  --transition: 0.3s ease;
}

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

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.25; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
p  { color: var(--grey); }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.5rem;
}
.section-title { margin-bottom: 0.6rem; }
.section-subtitle { color: var(--grey); max-width: 60ch; margin: 0 auto 2.5rem; font-size: 1.05rem; }

/* ── Layout helpers ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--alt { background: var(--off-white); }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: var(--seafoam); }
.text-center { text-align: center; }

/* ── CTA Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(212,112,74,0.35);
}
.btn-primary:hover {
  background: #bf5e3a;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(212,112,74,0.45);
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); }

/* ════════════════════════════════════════════
   HEADER & NAV
   ════════════════════════════════════════════ */
#site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 1.1rem 0;
}
#site-header.scrolled {
  background: rgba(27, 58, 92, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  padding: 0.65rem 0;
}
#site-header:not(.scrolled) { background: transparent; }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-logo img {
  height: 52px;
  filter: brightness(0) invert(1);
  transition: height var(--transition);
}
#site-header.scrolled .nav-logo img { height: 42px; }

.nav-links {
  display: flex; align-items: center; gap: 0.2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.12); }
.nav-links .btn-primary { padding: 0.5rem 1.3rem; font-size: 0.88rem; }

/* Language switcher */
.lang-switcher {
  display: flex; align-items: center; gap: 0.25rem;
}
.lang-btn {
  width: 32px; height: 24px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity var(--transition), transform var(--transition);
  border: 2px solid transparent;
  padding: 0;
  background: none;
  font-size: 1.25rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.lang-btn:hover, .lang-btn.active { opacity: 1; transform: scale(1.15); border-color: rgba(255,255,255,0.5); }
.lang-btn.active { opacity: 1; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-slides {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(18,39,64,0.65) 0%,
    rgba(27,58,92,0.45) 50%,
    rgba(18,39,64,0.55) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 820px;
}
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-head);
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  max-width: 55ch;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Hero zoekbalk ── */
.hero-book-label {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .55rem;
}
.hero-book-label em {
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  color: var(--seafoam);
}
.hero-search {
  width: 100%;
  max-width: 700px;
  margin-top: 2rem;
}
.hero-search-bar {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.97);
  border-radius: 14px;
  box-shadow: 0 10px 48px rgba(0,0,0,0.28);
  overflow: hidden;
}
.hero-date-group {
  flex: 1;
  padding: 0.85rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.hero-date-group label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}
.hero-date-group input[type="date"] {
  border: none;
  background: transparent;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--dark);
  width: 100%;
  outline: none;
  cursor: pointer;
  padding: 0;
}
.hero-divider {
  width: 1px;
  background: var(--light-grey);
  margin: 0.75rem 0;
  flex-shrink: 0;
}
.hero-search-btn {
  border-radius: 0 10px 10px 0 !important;
  padding: 0 1.75rem !important;
  font-size: 1rem !important;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-search-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
}
.hero-search-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.hero-search-links a:hover { color: var(--white); }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  color: rgba(255,255,255,0.7); font-size: 0.75rem; letter-spacing: 0.1em;
  gap: 0.5rem;
  text-transform: uppercase;
}
.hero-scroll-arrow {
  width: 20px; height: 28px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 10px;
  position: relative;
}
.hero-scroll-arrow::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 6px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scroll-dot 1.6s infinite;
}
@keyframes scroll-dot {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

/* ════════════════════════════════════════════
   USP STRIP
   ════════════════════════════════════════════ */
#usp-strip {
  background: var(--navy);
  padding: 2rem 0;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.usp-item {
  display: flex; align-items: center; gap: 1rem;
  color: var(--white);
}
.usp-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.usp-text strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--white); }
.usp-text span { font-size: 0.82rem; color: var(--seafoam); }

/* ════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-images {
  position: relative;
  height: 500px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 85%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 55%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-badge {
  position: absolute;
  bottom: 2.5rem; left: -1.5rem;
  background: var(--coral);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow);
  text-align: center;
  z-index: 2;
}
.about-badge .badge-number {
  display: block; font-size: 2rem; font-weight: 700; font-family: var(--font-head); line-height: 1;
}
.about-badge .badge-label { font-size: 0.78rem; opacity: 0.9; letter-spacing: 0.04em; }
.about-text .section-subtitle { margin-left: 0; }
.about-features {
  margin-top: 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
}
.about-feature {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem; font-weight: 500; color: var(--dark);
}
.about-feature::before { content: '✓'; color: var(--coral); font-weight: 700; flex-shrink: 0; }

/* ════════════════════════════════════════════
   ROOMS
   ════════════════════════════════════════════ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room-card--featured {
  grid-column: span 2;
}

.room-img-wrap {
  position: relative;
  overflow: hidden;
}
.room-img-wrap img {
  width: 100%; height: 240px; object-fit: cover;
  transition: transform 0.5s ease;
}
.room-card--featured .room-img-wrap img { height: 320px; }
.room-card:hover .room-img-wrap img { transform: scale(1.04); }

.room-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}
.room-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.room-title { margin-bottom: 0.5rem; font-size: 1.15rem; }
.room-desc { font-size: 0.88rem; color: var(--grey); line-height: 1.6; flex: 1; }
.room-amenities {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin: 1rem 0;
}
.room-amenity {
  font-size: 0.75rem; color: var(--navy);
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  border-radius: 50px;
  padding: 0.2rem 0.65rem;
  display: flex; align-items: center; gap: 0.3rem;
}
.room-cta {
  margin-top: auto;
}
.room-cta .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.88rem;
  padding: 0.7rem 1rem;
}

/* ════════════════════════════════════════════
   FACILITIES
   ════════════════════════════════════════════ */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.facility-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.facility-card:hover { transform: translateY(-4px); }
.facility-icon { font-size: 2.2rem; margin-bottom: 0.75rem; }
.facility-name { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; }
.facility-desc { font-size: 0.8rem; color: var(--grey); }

/* ════════════════════════════════════════════
   BOOKING SECTION
   ════════════════════════════════════════════ */
#booking {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 5rem 0;
  text-align: center;
}
#booking h2 { color: var(--white); }
#booking .section-subtitle { color: var(--seafoam); margin-bottom: 2rem; }
.booking-direct {
  margin-top: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.booking-direct p { color: var(--seafoam); font-size: 0.9rem; }

/* ════════════════════════════════════════════
   CONTACT & MAP
   ════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
}
.contact-item-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--off-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.contact-item-text strong { display: block; font-size: 0.85rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.2rem; }
.contact-item-text a {
  color: var(--navy); font-weight: 600; font-size: 1rem;
  transition: color var(--transition);
}
.contact-item-text a:hover { color: var(--coral); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* WhatsApp CTA */
.whatsapp-cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #25d366;
  color: var(--white);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: var(--transition);
}
.whatsapp-cta:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 6px 22px rgba(37,211,102,0.45); }

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}
footer img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 1rem; opacity: 0.9; }
.footer-tagline { font-size: 0.88rem; color: var(--seafoam); max-width: 32ch; }
.footer-heading {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1rem;
}
.footer-links li + li { margin-top: 0.5rem; }
.footer-links a { font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; flex-wrap: wrap; gap: 0.5rem;
}

/* ════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
   ════════════════════════════════════════════ */
.floating-wa {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.floating-wa:hover { background: #1da851; transform: scale(1.1); }

/* ════════════════════════════════════════════
   MOBILE NAV DRAWER
   ════════════════════════════════════════════ */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: var(--navy-dark);
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white); font-size: 1.5rem; font-family: var(--font-head);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--sand); }
.mobile-nav-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: var(--white); font-size: 2rem; cursor: pointer;
  background: none; border: none;
}
.mobile-lang {
  display: flex; gap: 0.6rem; margin-top: 1rem;
}
.mobile-lang .lang-btn { font-size: 1.5rem; width: 40px; height: 30px; }

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .room-card--featured { grid-column: span 2; }
  .facilities-grid { grid-template-columns: repeat(3, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 320px; margin-bottom: 2rem; }
  .about-badge { left: 0.5rem; }
  .about-features { grid-template-columns: 1fr; }

  .rooms-grid { grid-template-columns: 1fr; }
  .room-card--featured { grid-column: span 1; }
  .room-card--featured .room-img-wrap img { height: 240px; }

  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap { height: 300px; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-btns { flex-direction: column; align-items: center; }
  .hero-search { max-width: 100%; }
  .hero-search-bar { flex-direction: column; border-radius: var(--radius); }
  .hero-divider { display: none; }
  .hero-date-group { border-bottom: 1px solid var(--light-grey); }
  .hero-search-btn { border-radius: 0 0 var(--radius) var(--radius) !important; padding: 0.9rem 1rem !important; justify-content: center; }
}

@media (max-width: 480px) {
  .usp-grid { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: 1fr 1fr; }
  .lang-btn { font-size: 1rem; width: 28px; }
}

/* ════════════════════════════════════════════
   ANIMATIONS / UTILITIES
   ════════════════════════════════════════════ */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Star rating */
.stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 0.05em; }

/* ════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1500;
  background: var(--navy-dark);
  color: rgba(255,255,255,0.9);
  padding: 1.25rem 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-inner p {
  flex: 1;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  min-width: 200px;
  margin: 0;
}
.cookie-inner p a { color: var(--sand); text-decoration: underline; }
.cookie-btns { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btns .btn { padding: 0.55rem 1.3rem; font-size: 0.85rem; }
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.75);
  border-radius: 50px;
  background: transparent;
  transition: var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); }

/* Hidden gallery images (for lightbox only) */
.gallery-hidden { display: none !important; }

/* Room gallery trigger */
.room-gallery-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; color: var(--grey);
  cursor: pointer;
  background: none; border: none;
  padding: 0.25rem 0;
  margin-bottom: 0.5rem;
  text-decoration: underline;
  transition: color var(--transition);
}
.room-gallery-btn:hover { color: var(--navy); }

/* Skip to main */
.skip-link {
  position: absolute;
  top: -100px; left: 1rem;
  background: var(--coral);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600; font-size: 0.9rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Booking guarantee badge */
.booking-guarantee {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  font-size: 0.82rem;
  color: var(--sand);
  margin-bottom: 1.5rem;
}

/* ── RoomRaccoon beschikbaarheidswidget ── */
/* Booking sectie — compact widget */
.booking-widget-wrap {
  margin-top: 2rem;
  text-align: center;
}
.rr-availability-widget {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.rr-widget-inner {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.rr-date-group {
  padding: 0.8rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: left;
  min-width: 140px;
}
.rr-date-group label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.rr-date-group input[type="date"] {
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--white);
  outline: none;
  cursor: pointer;
  width: 100%;
  padding: 0;
  color-scheme: dark;
}
.rr-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
  margin: 0.75rem 0;
  flex-shrink: 0;
}
#rr-check-btn {
  border-radius: 0 12px 12px 0 !important;
  padding: 0 1.75rem !important;
  font-size: 0.97rem !important;
  align-self: stretch;
  white-space: nowrap;
}
.rr-or {
  font-size: 0.82rem;
  color: var(--seafoam);
  margin: 0;
}
.rr-availability-widget .btn-navy {
  font-size: 0.88rem;
  padding: 0.6rem 1.4rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
}
.rr-availability-widget .btn-navy:hover {
  background: rgba(255,255,255,0.25);
}

@media (max-width: 600px) {
  .rr-widget-inner { flex-direction: column; border-radius: var(--radius); }
  .rr-date-group { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .rr-divider { display: none; }
  #rr-check-btn { border-radius: 0 0 var(--radius) var(--radius) !important; padding: 0.9rem 1rem !important; width: 100%; justify-content: center; }
}

/* Guarantee strip */
.guarantee-strip {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.guarantee-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; color: var(--seafoam);
}

@media (max-width: 640px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .cookie-btns { width: 100%; }
  .cookie-btns .btn { flex: 1; justify-content: center; }
}

/* ════════════════════════════════════════════
   GALLERY LIGHTBOX
   ════════════════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 4px; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  color: var(--white); font-size: 2.5rem; cursor: pointer;
  background: none; border: none;
  line-height: 1;
}
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: var(--white); font-size: 2rem; cursor: pointer;
  background: rgba(255,255,255,0.12); border: none;
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
