:root {
  --bg: #f4efe7;
  --card: #ffffff;
  --text: #3f3f3f;
  --heading: #5c4638;
  --accent: #c7b8a3;
  --highlight: #ece6dc;
  --line: #ddd3c7;
}

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

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 18px;
}

img {
  max-width: 100%;
  display: block;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(244, 239, 231, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(92, 70, 56, 0.08);
}

.topbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
}

.brand {
  font-family: 'Playfair Display', serif;
  color: var(--heading);
  font-size: 24px;
  text-decoration: none;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 12px;
  background: var(--card);
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--heading);
  border-radius: 999px;
  transition: 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-panel {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.nav a {
  color: var(--heading);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
}

.nav a:hover {
  opacity: 1;
}

.lang-switch {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lang-btn {
  border: none;
  background: var(--card);
  color: var(--heading);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: 0.25s ease;
}

.lang-btn:hover {
  transform: translateY(-1px);
}

.lang-btn.active {
  background: var(--heading);
  color: #fff;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 36px 22px 120px;
}

.lang-content {
  display: none;
}

.lang-content.active {
  display: block;
}

.hero,
.section,
#top-en,
#rooms-en,
#arrival-en,
#guide-en,
#faq-en,
#book-en,
#top-nl,
#rooms-nl,
#arrival-nl,
#guide-nl,
#faq-nl,
#book-nl,
#stay-en,
#stay-nl {
  scroll-margin-top: 110px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 36px;
}

.hero-copy {
  background: var(--card);
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--heading);
  opacity: 0.75;
  margin-bottom: 10px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  line-height: 1.15;
  color: var(--heading);
  margin: 0 0 16px;
}

.hero p {
  margin: 0 0 18px;
  font-size: 17px;
  opacity: 0.92;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--heading);
  color: #fff;
}

.btn-secondary {
  background: var(--highlight);
  color: var(--heading);
}

.hero-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  min-height: 420px;
  background: #e9e0d4;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.section {
  margin: 0 0 30px;
}

.section-card {
  background: var(--card);
  padding: 28px 26px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--heading);
  margin: 0 0 12px;
}

.section-intro {
  margin: 0 0 22px;
  max-width: 780px;
  opacity: 0.92;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.feature-item {
  background: var(--highlight);
  border-radius: 14px;
  padding: 18px;
}

.feature-item h3 {
  margin: 0 0 8px;
  color: var(--heading);
  font-size: 18px;
  font-family: 'Playfair Display', serif;
}

.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.room-card {
  background: var(--highlight);
  border-radius: 16px;
  overflow: hidden;
}

.room-photo-trigger,
.gallery-thumb-trigger {
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  background: transparent;
  cursor: pointer;
  display: block;
  text-align: left;
}

.room-photo-trigger img,
.gallery-thumb-trigger img {
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.room-photo-trigger:hover img,
.gallery-thumb-trigger:hover img {
  transform: scale(1.015);
  opacity: 0.97;
}

.room-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.room-body {
  padding: 22px;
}

.room-body h3 {
  margin: 0 0 8px;
  color: var(--heading);
  font-size: 24px;
  font-family: 'Playfair Display', serif;
}

.room-meta {
  margin: 14px 0 0;
  padding-left: 18px;
}

.room-meta li {
  margin-bottom: 6px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.mini-card {
  background: var(--highlight);
  border-radius: 14px;
  padding: 20px;
}

.mini-card h3 {
  margin: 0 0 8px;
  color: var(--heading);
  font-size: 20px;
  font-family: 'Playfair Display', serif;
}

.subtle-link {
  color: var(--heading);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(92,70,56,0.25);
}

.subtle-link:hover {
  border-bottom-color: rgba(92,70,56,0.6);
}

details.guide-block {
  background: var(--card);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-bottom: 16px;
  overflow: hidden;
}

details.guide-block summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 26px;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--heading);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

details.guide-block summary::-webkit-details-marker {
  display: none;
}

details.guide-block summary::after {
  content: "+";
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  line-height: 1;
  opacity: 0.6;
}

details[open].guide-block summary::after {
  content: "–";
}

.guide-content {
  padding: 0 26px 26px;
  border-top: 1px solid rgba(92,70,56,0.08);
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.guide-box {
  background: var(--highlight);
  border-radius: 14px;
  padding: 18px;
}

.guide-box h3 {
  margin: 0 0 8px;
  color: var(--heading);
  font-size: 19px;
  font-family: 'Playfair Display', serif;
}

.guide-box ul {
  padding-left: 18px;
  margin-top: 8px;
}

.cta-section {
  background: var(--card);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  padding: 34px 28px;
  text-align: center;
}

.cta-section h2 {
  margin: 0 0 12px;
  color: var(--heading);
  font-family: 'Playfair Display', serif;
  font-size: 32px;
}

.cta-section p {
  max-width: 680px;
  margin: 0 auto 20px;
}

.footer {
  text-align: center;
  margin-top: 60px;
  font-size: 15px;
  opacity: 0.78;
}

.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--heading);
  color: white;
  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: 0.3s ease;
  z-index: 1000;
}

.floating-btn:hover {
  transform: translateY(-3px);
}

#topBtn {
  position: fixed;
  bottom: 85px;
  right: 20px;
  background: var(--accent);
  color: white;
  padding: 10px 14px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 1000;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 24px;
  touch-action: none;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  width: min(1100px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  touch-action: pan-y;
}

.lightbox-image {
  max-width: 100%;
  max-height: 82vh;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
  object-fit: contain;
  background: #111;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: none;
  background: rgba(255,255,255,0.14);
  color: white;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, opacity 0.2s ease;
  z-index: 5;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.22);
}

.lightbox-close {
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

.lightbox-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -42px;
  text-align: center;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 920px) {
  .hero,
  .rooms-grid,
  .split,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 17px;
  }

  .container {
    padding-top: 24px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .feature-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .section-card,
  .cta-section,
  .guide-content,
  details.guide-block summary {
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-toggle {
    display: inline-flex;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .menu-panel {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 22px;
    right: 22px;
    background: var(--card);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.10);
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    z-index: 1300;
  }

  .menu-panel.open {
    display: flex;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav a {
    font-size: 18px;
  }

  .lang-switch {
    width: 100%;
    gap: 12px;
  }

  .lang-btn {
    flex: 1;
    justify-content: center;
  }

  .topbar-inner {
    align-items: center;
  }

  .brand {
    font-size: 19px;
    max-width: calc(100% - 76px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1;
  }

  .floating-btn {
    right: 14px;
    bottom: 14px;
    padding: 12px 16px;
    font-size: 13px;
    max-width: calc(100vw - 28px);
    border-radius: 999px;
  }

  #topBtn {
    right: 14px;
    bottom: 72px;
  }

  .lightbox {
    padding: 16px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-close {
    top: 8px;
    right: 8px;
  }

  .lightbox-image {
    max-height: 72vh;
  }

  .lightbox-caption {
    bottom: -34px;
    font-size: 13px;
  }
}
