#selection {
  margin-top: 4rem;
}


/* Kenyan Travel Agency – Complete CSS for TRAVEL (EN)
   Version: 1.0 (2025-10-22)
   CLEANED & FIXED – no functional changes except bugfixes
*/

:root{
  --bg:#fbf7f1;
  --card:#ffffff;
  --ink:#2a2a2a;
  --muted:#6f6f6f;
  --accent:#b76e2d;
  --accent-2:#8f531f;
  --radius:14px;
  --shadow:0 12px 30px rgba(15,20,30,.10);
  --shadow-soft:0 6px 18px rgba(15,20,30,.06);
  --font: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*{ box-sizing:border-box }
html, body{ height:100% }

body{
  margin:0;
  font-family:var(--font);
  color:var(--ink);
  background:linear-gradient(180deg,#ECD192 0%,#FBE6BA 40%,#ECD192 100%);
}

.hidden{ display:none !important }
.center{ text-align:center }
.small{ font-size:13px; color:var(--muted) }

/* ================= HEADER ================= */

.site-header{
  background:#fbf7f1;
  padding:10px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
  z-index:10;
}

.site-header .logo{
  width:56px;
  height:56px;
  border-radius:10px;
  background:linear-gradient(135deg,#b76e2d,#e8b07a);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:800;
  box-shadow:var(--shadow-soft);
}

.navbar{
  display:flex;
  gap:14px;
  align-items:center;
  flex:1 1 auto;
}

.navbar a{
  color:#473c2f;
  text-decoration:none;
  font-weight:600;
  padding:8px 10px;
  border-radius:10px;
}

.navbar a:hover{ background:#f3eadf }

.language-switch{
  margin-left:auto;
  display:flex;
  gap:10px;
  align-items:center;
}

.language-switch img{
  width:26px;
  height:18px;
  border-radius:3px;
  box-shadow:0 1px 2px rgba(0,0,0,.15);
}

/* ================= BUTTONS ================= */

.btn{
  display:inline-block;
  background:var(--accent);
  color:#fff;
  padding:12px 18px;
  border-radius:12px;
  font-weight:700;
  border:0;
  cursor:pointer;
  box-shadow:var(--shadow-soft);
}

.btn:hover{ background:var(--accent-2) }

.btn.secondary{
  background:#f4f0eb;
  color:#3a332b;
}

.btn.secondary:hover{ background:#e9e1d7 }

/* ================= HERO ================= */

section.hero{
  min-height:80vh;
  padding-top:120px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  background:#2c1c10 url('../images/big5_hero_new.jpg?v=3') center/cover no-repeat;
}

section.hero .inner{ padding:24px }

section.hero h1{
  margin:0 0 10px;
  font-size:clamp(28px,5.8vw,54px);
  line-height:1.05;
}

section.hero p{
  margin:0 0 22px;
  font-size:clamp(16px,2.6vw,20px);
}

/* ================= GRID & CARDS ================= */

.section{ padding:28px 22px }

.grid{
  display:grid;
  gap:18px;
  grid-template-columns:repeat(3,1fr); /* FIX */
}

.trip-card,
.card{
  background:#fff;
  border:1px solid #b89a72;
  border-radius:14px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
}

.trip-card img,
.card img{
  width:100%;
  height:170px;
  object-fit:cover;
}

.trip-body,
.card-body{
  padding:12px 14px;
}

.trip-body h3,
.card-title{
  margin:0 0 8px;
  font-weight:700;
  font-size:18px;
}

.price{
  font-weight:700;
  color:var(--accent);
  margin:8px 0;
}

/* ================= SELECTION ================= */

#selection{
  max-width:1000px;
  margin:24px auto;
  background:#fff;
  border-radius:14px;
  padding:16px 18px;
  box-shadow:var(--shadow-soft);
}

#selected-list{
  list-style:none;
  margin:0;
  padding:0;
}

#selected-list li{
  display:flex;
  justify-content:space-between;
  padding:8px 0;
  border-bottom:1px dashed #e6e2dd;
}

#selected-list li:last-child{ border-bottom:none }

/* ================= AVATAR FIX ================= */

.avatar-photo,
.avatar{
  width:96px;
  height:96px;
  border-radius:50%;
  object-fit:cover;
  margin-right:16px;
}

/* ================= RESPONSIVE ================= */

@media (max-width:960px){
  section.hero{ min-height:70vh; padding-top:100px }
}

@media (max-width:768px){
  .site-header{
    display:grid;
    grid-template-columns:1fr auto;
    grid-template-areas:
      "logo flags"
      "nav nav";
    gap:10px;
  }

  .navbar{
    grid-area:nav;
    justify-content:center;
    flex-wrap:wrap;
  }
}

@media (max-width:560px){
  .trip-card img{ height:160px }
}

/* ================= DEFINITIEVE STAYS GRID FIX ================= */
.subpage .grid,
.subpage .grid-3,
.subpage .container--wide .grid,
.subpage .container--wide .grid-3{
  display:grid !important;
  grid-template-columns:repeat(3,1fr) !important;
  gap:1.5rem;
}

@media (max-width:900px){
  .subpage .grid,
  .subpage .grid-3,
  .subpage .container--wide .grid,
  .subpage .container--wide .grid-3{
    grid-template-columns:repeat(2,1fr) !important;
  }
}

@media (max-width:600px){
  .subpage .grid,
  .subpage .grid-3,
  .subpage .container--wide .grid,
  .subpage .container--wide .grid-3{
    grid-template-columns:1fr !important;
  }
}
.grid,
.grid-3{
  display:grid !important;
  grid-template-columns:repeat(3,1fr) !important;
}
/* === FIX: selectie mag NOOIT grid zijn === */
#selection,
#selection * {
  display: block;
}

#selected-list {
  display: block;
}

#selected-list li {
  display: flex;
  justify-content: space-between;
}
/* === FIX: selectie zichtbaar (minimaal & veilig) === */
#selection ul {
  display: block;
}

#selection li {
  display: flex;
  justify-content: space-between;
}
/* Formulier: alleen invoervelden wit */
form input,
form select,
form textarea {
  background: #fff;
  border: 1px solid #d6d1c8;
  padding: 10px 12px;
  border-radius: 8px;
  color: #2a2a2a;
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: #b76e2d;
  box-shadow: 0 0 0 2px rgba(183,110,45,0.15);
}
/* =========================
   VRAGENLIJST — LAYOUT
========================= */

/* 3 kolommen (desktop) */
#vragenlijst-form .form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

/* Tablet → 2 kolommen */
@media (max-width: 1024px) {
  #vragenlijst-form .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobiel → 1 kolom */
@media (max-width: 640px) {
  #vragenlijst-form .form-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   ALLEEN INVULVELDEN WIT
========================= */

#vragenlijst-form input[type="text"],
#vragenlijst-form input[type="email"],
#vragenlijst-form input[type="tel"],
#vragenlijst-form input[type="number"],
#vragenlijst-form input[type="date"],
#vragenlijst-form select,
#vragenlijst-form textarea {
  background: #ffffff;
  color: #000;
  border: 1px solid #d6d1c8;
  border-radius: 8px;
  padding: 10px 12px;
  box-sizing: border-box;
}

/* Geen achtergrond op labels/containers */
#vragenlijst-form label,
#vragenlijst-form .form-grid,
#vragenlijst-form h2,
#vragenlijst-form h3,
#vragenlijst-form strong {
  background: transparent;
}

/* Focus */
#vragenlijst-form input:focus,
#vragenlijst-form select:focus,
#vragenlijst-form textarea:focus {
  outline: none;
  border-color: #8a2d1c;
  box-shadow: 0 0 0 2px rgba(138,45,28,.15);
}
/* =========================
   VRAGENLIJST — LABEL FIX
========================= */

/* labels boven input */
#vragenlijst-form label {
  display: block;
  font-weight: 500;
  line-height: 1.4;
}

/* inputs altijd volle kolombreedte */
#vragenlijst-form input[type="text"],
#vragenlijst-form input[type="email"],
#vragenlijst-form input[type="tel"],
#vragenlijst-form input[type="number"],
#vragenlijst-form input[type="date"],
#vragenlijst-form select,
#vragenlijst-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
}

/* checkbox & radio NIET breken */
#vragenlijst-form input[type="checkbox"],
#vragenlijst-form input[type="radio"] {
  width: auto;
  display: inline-block;
  margin-right: 6px;
}
/* =========================
   RESET VRAGENLIJST (SAFE)
========================= */

/* niets globaal forceren */
#vragenlijst-form * {
  box-sizing: border-box;
}

/* form-grid = layout container */
#vragenlijst-form .form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

/* responsive */
@media (max-width: 1024px) {
  #vragenlijst-form .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  #vragenlijst-form .form-grid {
    grid-template-columns: 1fr;
  }
}
.trip-card,
.card{
  overflow: visible !important;
}
/* === DEFINITIEVE GRID HERSTELFIX === */
.grid{
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

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

@media (max-width: 900px){
  .grid-3{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .grid,
  .grid-3{
    grid-template-columns: 1fr;
  }
}

/* selectie mag NOOIT grid zijn */
#selection{
  display: block;
  margin-top: 4rem;
}
.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid.grid-2 { grid-template-columns: repeat(2, 1fr); }
.form-grid.grid-3 { grid-template-columns: repeat(3, 1fr); }
.form-grid.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* =========================================================
   ACCOMMODATIECATALOGUS & HOTELDETAILPAGINA
   Toegevoegd voor Boma Inn Nairobi
========================================================= */

.container--wide{
  width:min(1180px, 100%);
  margin:0 auto;
}

.hotel-catalogue-grid{
  align-items:stretch;
}

.hotel-catalogue-card{
  overflow:hidden;
  transition:transform .2s ease, box-shadow .2s ease;
}

.hotel-catalogue-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}

.hotel-card-link{
  display:block;
  height:100%;
  color:inherit;
  text-decoration:none;
}

.hotel-card-link:focus-visible{
  outline:3px solid rgba(183,110,45,.45);
  outline-offset:4px;
  border-radius:14px;
}

.hotel-catalogue-card .hotel-card-link > img{
  width:100%;
  height:230px;
  display:block;
  object-fit:cover;
  transition:transform .35s ease;
}

.hotel-catalogue-card:hover .hotel-card-link > img{
  transform:scale(1.025);
}

.hotel-card-body{
  min-height:145px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align:center;
  padding:18px 16px 20px;
}

.hotel-card-body h3{
  margin:0 0 8px;
  font-size:21px;
  color:#2f281f;
}

.hotel-card-price{
  margin:0;
  font-size:17px;
}

.hotel-card-breakfast{
  margin-top:5px;
  color:#4f6f3f;
  font-size:14px;
  font-weight:700;
}

.hotel-page{
  min-height:100%;
}

.hotel-detail{
  width:min(1120px, calc(100% - 32px));
  margin:36px auto 54px;
}

.hotel-back-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:18px;
  color:#5b3a21;
  text-decoration:none;
  font-weight:700;
}

.hotel-back-link:hover{
  text-decoration:underline;
}

.hotel-detail-hero{
  margin:0;
  overflow:hidden;
  border:1px solid #b89a72;
  border-radius:18px;
  background:#fff;
  box-shadow:var(--shadow);
}

.hotel-detail-hero img{
  width:100%;
  height:clamp(280px, 52vw, 560px);
  display:block;
  object-fit:cover;
}

.hotel-photo-credit{
  padding:8px 14px;
  color:var(--muted);
  background:#fff;
  font-size:12px;
  text-align:right;
}

.hotel-detail-heading{
  display:grid;
  grid-template-columns:minmax(0,1fr) 280px;
  gap:28px;
  align-items:start;
  margin:30px 0 24px;
}

.hotel-eyebrow{
  margin:0 0 7px;
  color:var(--accent-2);
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.hotel-detail-heading h1{
  margin:0 0 12px;
  color:#2f281f;
  font-size:clamp(32px, 5vw, 52px);
  line-height:1.05;
}

.hotel-intro{
  max-width:750px;
  margin:0;
  color:#554c42;
  font-size:18px;
  line-height:1.65;
}

.hotel-price-panel{
  padding:22px;
  border:1px solid #d8c7a5;
  border-radius:16px;
  background:#fff;
  box-shadow:var(--shadow-soft);
  text-align:center;
}

.hotel-price-panel strong,
.hotel-price-panel span,
.hotel-price-panel b,
.hotel-price-panel small{
  display:block;
}

.hotel-price-panel strong{
  color:var(--accent);
  font-size:34px;
  line-height:1.1;
}

.hotel-price-panel span{
  margin-top:4px;
  font-weight:700;
}

.hotel-price-panel b{
  margin-top:12px;
  color:#4f6f3f;
}

.hotel-price-panel small{
  margin-top:8px;
  color:var(--muted);
  line-height:1.45;
}

.hotel-detail-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:20px;
}

.hotel-info-card{
  padding:24px;
  border:1px solid #d8c7a5;
  border-radius:16px;
  background:#fff;
  box-shadow:var(--shadow-soft);
}

.hotel-info-card h2{
  margin:0 0 14px;
  color:#473c2f;
  font-size:22px;
}

.hotel-info-card p{
  margin:0;
  color:#5b534a;
  line-height:1.65;
}

.hotel-facts{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:10px 18px;
  margin:0;
  padding:0;
  list-style:none;
}

.hotel-facts li{
  position:relative;
  padding-left:21px;
  color:#514a42;
  line-height:1.45;
}

.hotel-facts li::before{
  content:'✓';
  position:absolute;
  left:0;
  color:#4f6f3f;
  font-weight:900;
}

.hotel-meals{
  margin-top:20px;
}

.hotel-meal-table{
  width:100%;
  margin-top:12px;
  border-collapse:collapse;
}

.hotel-meal-table th,
.hotel-meal-table td{
  padding:12px 10px;
  border-bottom:1px solid #eadfce;
  text-align:left;
}

.hotel-meal-table th{
  width:42%;
  color:#473c2f;
}

.hotel-meal-table tr:last-child th,
.hotel-meal-table tr:last-child td{
  border-bottom:0;
}

.hotel-note{
  margin:18px 0 0;
  padding:14px 16px;
  border-left:4px solid var(--accent);
  border-radius:0 10px 10px 0;
  background:rgba(255,255,255,.7);
  color:#5b534a;
  font-size:14px;
  line-height:1.55;
}

.hotel-detail-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:26px;
}

.hotel-detail-actions .btn.secondary{
  text-decoration:none;
}

@media (max-width:800px){
  .hotel-detail-heading{
    grid-template-columns:1fr;
  }

  .hotel-price-panel{
    max-width:420px;
  }

  .hotel-detail-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:560px){
  .hotel-catalogue-card .hotel-card-link > img{
    height:210px;
  }

  .hotel-detail{
    width:min(100% - 24px, 1120px);
    margin-top:22px;
  }

  .hotel-detail-hero img{
    height:260px;
  }

  .hotel-info-card{
    padding:19px;
  }

  .hotel-facts{
    grid-template-columns:1fr;
  }

  .hotel-detail-actions{
    flex-direction:column;
  }

  .hotel-detail-actions .btn{
    width:100%;
    text-align:center;
  }
}

