/* ======================== */
/* ===== ROOT & RESET ===== */
/* ======================== */
:root{
  --font-head:"Marcellus",serif;
  --font-body:"Manrope",sans-serif;

  --bg:#F7F3ED;        /* Fantasy */
  --surface:#EFD8D6;   /* Vanilla Ice */
  --muted:#C2C6B9;     /* Silver Sand */
  --accent:#DBA1A2;    /* Rose */
  --ink:#422B23;       /* Tobago */
}

*{margin:0;padding:0;box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
}

a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

/* ======================== */
/* ===== HEADER & NAV ===== */
/* ======================== */
.site-header{
  background:var(--bg);
  color:var(--ink);
  min-height:160px;
  display:flex; align-items:center;
}

.header-flex{
  display:flex; justify-content:space-between; align-items:center;
  width:90%; max-width:1200px; margin:0 auto; position:relative; /* for toggle menu positioning */
}

.header-logo img{
  max-height:140px; width:auto; object-fit:contain; margin-top:0;
}

.navbar ul{ display:flex; gap:1rem; list-style:none }

.navbar a{
  color:var(--ink);
  padding:.4rem .8rem;
  border:2px solid var(--accent);
  border-radius:14px;
  transition:all .3s ease;
  font-weight:600; font-size:.85rem; position:relative; top:0;
}
.navbar a:hover,
.navbar a.active{
  background:var(--accent);
  color:var(--ink);
  border-color:var(--accent);
}

/* Menu toggle hidden on desktop */
.menu-toggle{
  display:none; background:none; border:none; color:var(--ink);
  font-size:1.8rem; cursor:pointer;
}
 .multi-select {
    position: relative;
    display: inline-block;
    width: 100%;
  }

  .selected-items {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
     padding: 6px 35px 6px 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    min-height: 40px;
    align-items: center;
  }

  .tag {
    background: #DBA1A2;
    color:#422B23;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
  }
   /* Dropdown arrow */
  .arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 16px;
    color: #666;
  }

  .tag span {
    cursor: pointer;
    font-weight: bold;
  }

  .options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: white;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
  }

  .options div {
    padding: 8px;
    cursor: pointer;
  }

  .options div:hover {
    background: #f0f0f0;
  }

/* ======================== */
/* ===== BOOKING HERO ===== */
/* ======================== */
.booking-hero{
  position:relative; isolation:isolate;
  background:url('plane.jpg') center/cover no-repeat, var(--surface);
  color:var(--ink);
  padding:0 1rem; text-align:center;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  min-height:35vh;
  box-shadow:0 4px 12px rgba(66,43,35,.15);
}
.booking-hero::before{
  content:""; position:absolute; inset:0; z-index:0;
  background:var(--surface); opacity:.65; /* Surface tint over image */
}
.booking-hero > *{ position:relative; z-index:1 }

.booking-hero h1{
  margin-bottom:.5rem; font-size:2.5rem; font-family:var(--font-head);
}

/* ======================== */
/* ===== BOOKING FORM ===== */
/* ======================== */
.booking-form-section{ padding:4rem 0 }

.booking-form-section .container{
  display:flex; justify-content:center;
}

.booking-form{
  background:var(--surface);
  width:100%; max-width:800px;
  padding:2rem; border-radius:12px;
  border:1px solid var(--muted);
  box-shadow:0 4px 12px rgba(66,43,35,.10);
}

.form-group{ margin-bottom:1.5rem }

.form-group label{
  display:block; margin-bottom:.5rem; font-weight:600; color:var(--ink);
}

.form-group input,
.form-group select{
  width:100%; padding:.75rem; font-size:1rem;
  background:#fff;
  border:1px solid var(--muted); border-radius:8px;
  transition:border-color .2s, box-shadow .2s, background-color .2s;
}
.form-group input:focus,
.form-group select:focus{
  border-color:var(--accent);
  outline:0;
  background:#fff;
  box-shadow:0 0 0 3px rgba(219,161,162,.35);
}

.form-group button{
  background:var(--ink); color:var(--bg);
  border:none; padding:.75rem 1.5rem; border-radius:8px;
  cursor:pointer; font-size:1rem; font-weight:700;
  transition:filter .2s, background .2s, color .2s;
}
.form-group button:hover{
  background:var(--accent); color:var(--ink);
}

/* ======================== */
/* ===== FOOTER ===== */
/* ======================== */
.site-footer{
  background:var(--bg); color:var(--ink);
  padding:3rem 0 .8rem; font-size:.9rem;
}

.footer-grid{
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:2rem;
  align-items:flex-start; width:90%; max-width:1200px; margin:0 auto;
}

.footer-about{ flex:1 1 220px }
.footer-logo{ height:180px; margin-bottom:.2rem }

.footer-address{ color:var(--accent); font-size:.95rem; line-height:1.6 }
.footer-address h1,
.footer-address h3{ color:var(--ink); font-size:1.2rem; margin-bottom:.5rem; font-family:var(--font-head) }
.footer-address p{ color:var(--accent) }
.footer-address a:hover{ color:var(--ink) }
.footer-address i{ margin-right:8px; color:var(--accent) }

.footer-links{ flex:1 1 200px }
.footer-links h3{ margin-bottom:.5rem; color:var(--ink); font-family:var(--font-head) }
.footer-links ul{ list-style:none; padding:0; margin-top:0 }
.footer-links ul li{ margin-bottom:1.5rem }
.footer-links ul a{ color:var(--accent); transition:color .2s }
.footer-links ul a:hover{ color:var(--ink) }

.footer-social-section{ flex:1 1 200px; text-align:right; margin-right:12rem; margin-bottom:1.5rem }
.footer-social{ display:flex; justify-content:flex-end; gap:1.3rem; padding-right:2rem; margin-bottom:1.5rem }
.footer-social a i{
  margin-bottom:1.5rem; font-size:1.5rem; color:var(--accent);
  transition:color .3s ease, transform .3s ease;
}
.footer-social a:hover i{ transform:scale(1.2) }

.back-to-top{
  position:fixed; bottom:30px; right:30px;
  background:var(--bg); color:var(--ink);
  padding:8px 10px; border-radius:30%; font-size:1.2rem; cursor:pointer;
  border:2px solid var(--ink);
  z-index:1000; transition:transform .3s ease, opacity .3s ease, background .2s, color .2s;
}
.back-to-top:hover{ transform:translateY(-5px); background:var(--ink); color:var(--bg) }

.footer-bottom{
  text-align:center; margin-top:2rem; border-top:1px solid var(--muted);
  padding-top:1rem; font-size:.85rem;
}

/* ======================== */
/* ===== TOAST ===== */
/* ======================== */
.toast-message{
  position:fixed; top:30px; left:50%; transform:translateX(-50%);
  background:var(--ink); color:var(--bg);
  padding:1rem 2rem; border-radius:10px; font-weight:600;
  box-shadow:0 6px 18px rgba(66,43,35,.2);
  opacity:0; z-index:9999; pointer-events:none;
  transition:opacity .5s ease, top .5s ease;
}
.toast-message.show{ opacity:1; top:60px }

/* ======================== */
/* ===== MOBILE STYLES ===== */
/* ======================== */
@media (max-width:768px){
  /* Header & Navbar */
  .site-header{ height:auto }
  .header-flex{ flex-direction:row; padding:.5rem 1rem }
  .header-logo img{ max-height:140px; margin-top:0 }

  .menu-toggle{
    display:block; position:absolute; top:50%; right:15px; transform:translateY(-50%);
    z-index:1001;
  }

  .navbar{ position:static }
  .navbar ul{
    display:none; flex-direction:column; position:absolute; top:4rem; right:-1rem;
    width:160px; padding:1rem; background:rgba(66,43,35,.95);
    border-radius:8px; text-align:right; gap:1rem; box-shadow:-2px 2px 5px rgba(66,43,35,.15); z-index:1000;
  }
  .navbar ul.show{ display:flex }

  .navbar a{
    top:0; padding:.4rem; font-size:.95rem; color:#fff; border:none; background:transparent; font-weight:500; gap:1rem;
  }
  .navbar a:hover, .navbar a.active{
    background:rgba(255,255,255,.2); color:#fff;
  }

  .booking-hero {
    height: 140px !important;     /* set the actual height */
    min-height: 0 !important;      /* kill earlier 35vh (or similar) */
    padding: 12px 8px !important;  /* reduce internal space */
    display: flex;
    align-items: center;           /* keep text vertically centered */
    justify-content: center;
    overflow: hidden;              /* clip if content is taller */
  }
    .booking-hero h1 {
    font-size: 1.2rem;
    line-height: 1.2;
    margin: 0;
  }


  .booking-form{ padding:2rem; max-width:93% }

  /* Footer */
  .footer-grid{ flex-direction:column; align-items:center; gap:2rem; text-align:center }
  .footer-about, .footer-links, .footer-social-section{ flex:1 1 80%; margin:0 auto }
  .footer-logo{ height:120px }
  .footer-social-section{ margin:0 auto }
  .footer-social{ justify-content:center; gap:1rem; padding-right:0 }
  .footer-social a i{ font-size:1.2rem }
  .footer-bottom{ font-size:.85rem; margin-top:.5rem; padding-top:.3rem }
  .back-to-top{ right:15px; bottom:20px; font-size:1rem; padding:6px 8px }
}
