/* =============================
   JUTTERSHUT AMELAND – COMPLETE STYLE.CSS (FINALE VERSIE)
============================= */

/* ---------- ROOT & GLOBALS ---------- */
:root {
  --brand: #f49600;
  --brand-dark: #c47800;
  --sand: #f4f1eb;
  --sand-dark: #e8e0d5;
  --text: #1e1e1e;
  --text-soft: #555;
  --radius: 20px;
  --transition: 0.25s ease;
}

/* --- VEILIGHEIDSREGELS VOOR HORIZONTALE SCROLL (MOBIEL) --- */
* {
  box-sizing: border-box; /* Zorgt dat padding/margin de breedte niet vergroot */
}

img, video, iframe {
  max-width: 100%; /* Zorgt dat media nooit breder zijn dan hun container */
  height: auto;    /* Behoudt de verhouding */
}

body {
  overflow-x: hidden; /* Verbergt horizontale scrollbalk als laatste redmiddel */
  word-wrap: break-word; /* Zorgt dat lange woorden/URL's breken */
}
/* ---------------------------------------------------------- */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px !important;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--sand);
  color: var(--text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ---------- HEADER & MENU FIX (Zorg dat ze altijd zichtbaar blijven) ---------- */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--sand);
  z-index: 10000; /* VERHOOGD van 1000 naar 10000 */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.header.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  z-index: 10000; /* Ook hier verhoogd */
}

/* Zorg dat het mobiele menu ook bovenop alles staat */
.mobile-menu {
  z-index: 10001; /* Nog hoger dan de header */
}

/* Zorg dat de hamburger knop ook bovenop staat */
.hamburger {
  z-index: 10002; /* Nog hoger */
}
/* ----------------------------------------------------------------------------- */

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--brand);
  text-decoration: none;
}


.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
}


.nav.desktop a {
  margin: 0 14px;
  text-decoration: none;
  font-weight: bold;
  color: #333;
  transition: var(--transition);
}

.nav.desktop a:hover {
  color: var(--brand);
}

/* ---------- HERO ---------- */
.hero {
  height: 65vh;
  margin-top: 80px;
  background: url("../assets/img/hero.webp") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  margin-bottom: 20px;
  background-position: 0% center !important;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem; /* Desktop grootte */
}

.hero p {
  font-size: 1.4rem;
}

/* ---------- CTA ---------- */
.cta {
  background: var(--brand);
  padding: 12px 28px;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
  transition: var(--transition);
}

.cta:hover {
  background: var(--brand-dark);
}

.cta:focus-visible {
  outline: 3px solid var(--brand-dark);
  outline-offset: 2px;
}

button:focus-visible {
  outline: 3px solid var(--brand-dark);
  outline-offset: 2px;
}

.nav.desktop a:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* ---------- SPLIT SECTION ---------- */
.story-intro {
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
  border-left: 3px solid var(--brand);
  padding-left: 15px;
  line-height: 1.6;
}

.split-section {
  display: flex;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin: 50px 0;
  align-items: stretch; /* <--- FIX: Zorgt dat foto en tekst even hoog zijn */
}

.split-section .text {
  flex: 1;
  padding: 40px;
}

.split-section .image {
  flex: 1;
  background-size: cover;
  background-position: center;
  min-height: 350px;
}

/* ---------- USP GRID ---------- */




.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

/* 2x2 bij middelgrote schermen */
@media (max-width: 1100px) {
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Onder elkaar op mobiel */
@media (max-width: 600px) {
  .usp-grid {
    grid-template-columns: 1fr;
  }
}



.usp-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.usp-item .icon {
  font-size: 38px;
  margin-bottom: 10px;
}

.usp-item h3 {
  margin: 10px 0;
  font-size: 1.3rem;
  color: #333;
}

.usp-item p {
  margin: 0;
  color: #666;
}

/* ---------- GALLERY ---------- */
.gallery {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.gallery img:hover {
  transform: scale(1.03);
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox img {
  max-width: 95%;
  max-height: 95vh;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.lightbox img:hover {
  transform: scale(1.02);
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  line-height: 1;
  padding: 10px;
}

@media (max-width: 900px) {
  .close-btn {
    top: 20px;
    right: 20px;
    font-size: 50px;
    padding: 15px;
  }
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  padding: 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

#caption {
  margin-top: 15px;
  color: #ccc;
  font-size: 16px;
  text-align: center;
}

/* ---------- BOEKING + KALENDER GRID ---------- */
.booking-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 15px;
}

.calendar-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.booking-column {
  display: flex;
  flex-direction: column;
}

.contact-column {
  margin-top: 20px;
}

/* ---------- FAQ ---------- */
.faq-box {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  margin-bottom: 50px;
}

.faq-box h2 {
  font-size: 1.8rem;
  color: #333333;
  text-align: center;
  margin-bottom: 20px;
}

.faq-category {
  margin-bottom: 20px;
}

.faq-category-btn {
  background-color: #f7f7f7;
  border: 1px solid #e0e0e0;
  padding: 12px;
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 10px;
  color: #333;
  transition: background-color 0.3s ease-in-out;
}

.faq-category-btn:hover {
  background-color: #e0e0e0;
}

.faq-category-btn:focus {
  outline: none;
}

.faq-category-content {
  display: none;
  padding-left: 20px;
  margin-top: 10px;
}

.faq-item {
  background-color: #fafafa;
  padding: 15px;
  border-radius: 10px;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  margin-bottom: 8px;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  color: #555;
  font-size: 1rem;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ---------- CALENDAR ---------- */
.calendar-container {
  max-width: 100%;
  width: 100%;
  padding: 40px 20px 20px 20px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  position: relative;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

.calendar-note {
  text-align: center;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: var(--text-soft);
  position: absolute;
  top: 5px;
  left: 0;
  width: 100%;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

/* --- TABEL STRUCTUUR (DESKTOP & MOBIEL BASIS) --- */
.calendar-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; /* Zorgt voor gelijke kolommen */
  background-color: white;
}

.calendar-table th,
.calendar-table td {
  padding: 10px 0;
  height: 60px; /* Standaard hoogte */
  text-align: center;
  vertical-align: middle;
  border: 1px solid #eee;
  font-size: 1.1rem;
  font-weight: bold;
  background-color: white;
  line-height: 1.2;
}

/* Hover effect */
.calendar-table td:hover {
  background: #f4f4f4;
}

/* Lege cellen */
.calendar-table .empty {
  background: #fafafa;
  cursor: default;
  border: none;
}

/* Beschikbare dagen */
.calendar-table .available {
  background: #ffffff;
}

/* Startdatum (Groen) - CORRECTIE: Geen inline-block */
.calendar-table td.start {
  background: #4caf50;
  color: white;
  border-radius: 50%;
  /* display: inline-block, width: 100%, height: 100% VERWIJDERD */
  /* De tekst wordt gecentreerd door text-align: center en vertical-align: middle op de td */
}

/* Einddatum (Rood) - CORRECTIE: Geen inline-block */
.calendar-table td.end {
  background: #f44336;
  color: white;
  border-radius: 50%;
  /* display: inline-block, width: 100%, height: 100% VERWIJDERD */
}

/* Periode (Groen licht) - CORRECTIE: Geen inline-block */
.calendar-table td.in-range {
  background: #c8e6c9;
  border-radius: 50%;
  /* display: inline-block, width: 100%, height: 100% VERWIJDERD */
}

/* Geblokkeerde dagen (Streepjes) */
/* CORRECT (staat naast elkaar): */
.calendar-table td.available.blocked {
  background: repeating-linear-gradient(
    45deg,
    #f2f2f2,
    #f2f2f2 6px,
    #e0e0e0 6px,
    #e0e0e0 12px
  ) !important;
  color: #999 !important;
  cursor: not-allowed;
  pointer-events: none;
  /* Geen display: block hier! Laten we de tabel structuur intact houden */
}
/* ----------------------------------------------- */

/* --- RESPONSIVE AANPASSINGEN (MOBIEL) --- */
@media (max-width: 900px) {
  .calendar-container {
    padding-top: 58px !important;
  }

  .calendar-note {
    top: 14px;
  }

  /* Op mobiel: kleinere cellen en lettergrootte voor betere pasvorm */
  .calendar-table th,
  .calendar-table td {
    height: 45px; /* Iets smaller op mobiel */
    font-size: 0.95rem; /* Kleiner lettertype */
    padding: 5px 0;
  }

  /* Pas de line-height aan voor de cirkels op mobiel */
  .calendar-table td.start,
  .calendar-table td.end,
  .calendar-table td.in-range {
    line-height: 45px; /* Moet overeenkomen met de mobiele celhoogte */
  }
}
/* ---------------------------------------- */


/* ---------- FORM ---------- */
form {
  display: grid;
  gap: 20px;
  max-width: 500px;
}

input,
textarea,
select {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
}

button {
  background: var(--brand);
  color: white;
  padding: 12px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: var(--transition);
}

button:hover {
  background: var(--brand-dark);
}

/* ---------- FORM VELD CONSISTENTIE (MOBIEL & DESKTOP) ---------- */
form input,
form textarea,
form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 12px;
  box-sizing: border-box;
  font-size: 1rem;
  background-color: #fff;
  appearance: none;
}

form select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

form label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
  color: #333;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--sand-dark);
  text-align: center;
  padding: 40px;
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 70px;
  right: 20px;
  background: white;
  width: 220px;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateX(110%);
  opacity: 0;
}

.mobile-menu.active {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu a {
  margin: 12px 0;
  text-decoration: none;
  font-weight: bold;
  color: #333;
  transition: color 0.25s ease;
  font-size: 1.1rem;
}

.mobile-menu a:hover {
  color: var(--brand);
}

/* Chalet-foto op mobiel: hero-achtige uitsnede */
#chalet .split-section .image {
  background-size: cover !important;
  background-position: 0% center !important;
 / height: 52vh !important;
  min-height: 320px !important;
}

/* ---------- HAMBURGER ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: var(--brand);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 5px;
  align-items: center;
  transition: background 0.25s ease;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger:hover {
  background: var(--brand-dark);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- GLOBAL SECTION SPACING ---------- */
section {
  margin: 50px auto !important;
}

.split-section,
.faq-box,
.booking-contact-grid,
.gallery,
.usp-grid {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.container {
  padding: 30px 20px !important;
}

.hero {
  margin-bottom: 40px !important;
}

#chalet.container {
  margin-top: 50px !important;
}

.split-list li {
  margin-bottom: 12px !important;
  line-height: 1.5 !important;
}

/* ---------- ANCHOR / SCROLL FIX ---------- */
html {
  scroll-padding-top: 85px !important;
}

[id] {
  scroll-margin-top: 85px !important;
}

#galerij-titel,
#faq-titel,
#boeken-titel {
  scroll-margin-top: 85px !important;
}

/* ---------- TOAST ---------- */
#toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  z-index: 99999;
  transition: all 0.3s ease;
}

#toast.show {
  opacity: 1;
  bottom: 50px;
}

/* ---------- TARIEF CARDEN ---------- */
.price-box {
  background: #fff8ef;
  border: 1px solid #f0d2a8;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 20px;
}

.price-main {
  font-weight: bold;
  color: #c47800;
  margin: 0;
  font-size: 1.1rem;
}

.price-sub {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: #666;
}

.tarief-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.tarief-card {
  flex: 1 1 250px;
  background: #f7f7f7;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tarief-card .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.tarief-card h3 {
  margin: 10px 0;
}

.tarief-card p {
  font-size: 0.95rem;
  line-height: 1.4;
}

.tarief-card .cta {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background-color: #0077cc;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.tarief-card .cta:hover {
  background-color: #005fa3;
}

/* ---------- LOCATIE & KAART ---------- */
.location-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.location-copy p {
  margin-top: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.location-list {
  margin: 18px 0 0;
  padding-left: 20px;
}

.location-list li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.location-actions {
  margin-top: 24px;
}

.map-wrapper {
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  background: #f2f2f2;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  /* --- NIEUWE WIJZIGING: Voorkom horizontale scroll op mobiel --- */
  .container, .split-section, .location-card, .booking-contact-grid, .usp-grid, .gallery {
    width: 100%;
    max-width: 100%;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  /* -------------------------------------------------------------- */

  .booking-contact-grid {
    grid-template-columns: 1fr;
  }

  .calendar-container {
    max-width: 100%;
    margin-bottom: 20px ;
  }

  .split-section {
    flex-direction: column;
  }

  .nav.desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Juttershut-sectie: foto boven tekst op mobiel */
  #chalet .split-section {
    display: flex !important;
    flex-direction: column !important;
  }

  #chalet .split-section .image {
    order: 1 !important;
  }

  #chalet .split-section .text {
    order: 2 !important;
  }

  /* --- NIEUWE WIJZIGING: Locatie kaart boven tekst op mobiel --- */
  #locatie .location-card {
    display: grid;
    grid-template-columns: 1fr;
  }

  #locatie .map-wrapper {
    order: 1;
    min-height: 250px;
  }

  #locatie .location-copy {
    order: 2;
  }
  /* ----------------------------------------------------------- */

  /* --- NIEUWE WIJZIGING: Hero tekst kleiner op mobiel --- */
  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero h2 {
    font-size: 1.5rem;
    margin-top: 10px;
  }

  .hero p {
    font-size: 1.1rem;
  }
  /* ------------------------------------------------------- */

  /* Anchor-offset op mobiel: net iets hoger in beeld */
  #chalet,
  #camping-omgeving,
  #tarief {
    scroll-margin-top: 78px !important;
  }

  #galerij-titel,
  #faq-titel,
  #boeken-titel {
    scroll-margin-top: 78px !important;
  }
}

@media (max-width: 768px) {
  .faq-category-btn {
    font-size: 1rem;
  }

  .faq-item {
    padding: 12px;
  }

  .faq-question {
    font-size: 1rem;
  }
}

/* ===== CHALET SECTION FIX ===== */

.chalet-section .split-section {
  display: flex;
  align-items: stretch;
}

.chalet-section .text,
.chalet-section .image {
  flex: 1;
}

.chalet-section .image {
  background-size: cover;
  background-position: center;
  height: auto;
}


/* ---------- PRINT STIJLEN ---------- */
@media print {
  .header, 
  .footer, 
  .mobile-menu, 
  .hamburger, 
  .lightbox, 
  .booking-contact-grid,
  .cta,
  button {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
    font-size: 12pt;
  }

  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    font-weight: normal;
  }

  img {
    page-break-inside: avoid;
  }

  section, .split-section {
    page-break-inside: avoid;
  }
}

/* ------- lettertype hero op mobiel ----- */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 24px;
  }

  .hero h2 {
    font-size: 18px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-content {
    padding: 20px;
  }
}

/* =========================
   BOOKING FORM VERBETERINGEN
========================= */

/* Intro tekst */
.form-intro {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.5;
}

/* Zorg dat formulier geen conflicten krijgt met globale form rules */
.booking-column form {
  display: block;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
}

/* Input velden netjes houden */
.booking-column input,
.booking-column select,
.booking-column textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

/* Button duidelijk en consistent */

.booking-column button {
  background: var(--brand);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
}

.booking-column button:hover {
  background: var(--brand-dark);
}






