:root{
  --bg: #f7f4ef;
  --ink: #1b1b1b;
  --muted: rgba(27,27,27,.72);

  --glass: rgba(255,255,255,.18);
  --glass-border: rgba(255,255,255,.25);

  --card-bg: #ffffff;
  --card-border: rgba(0,0,0,.08);

  --shadow: 0 10px 24px rgba(0,0,0,.14);
  --shadow-soft: 0 12px 30px rgba(0,0,0,.08);

  --radius: 18px;

  --w-bg: rgba(0,0,0,.65);
  --w-border: rgba(255,255,255,.14);
  --w-text: rgba(255,255,255,.95);
  --w-muted: rgba(255,255,255,.72);
}

*{ box-sizing:border-box; }
html, body{ margin:0; padding:0; }

body{
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
}

img{ display:block; }
a, button{ transition: 180ms ease; }
button{ font-family: inherit; }

/* HEADER (desktop: transparent on hero like your design) */
.site-header{
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 20px 0;
  background: transparent;
}

.header-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.brand{ display:flex; align-items:center; text-decoration:none; }
.logo{
  height: 82px;
  width: auto;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.18));
}

.nav-pill{
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 16px 32px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-links{
  display:flex;
  gap: 18px;
  align-items:center;
}

.nav-links a{
  text-decoration:none;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  padding: 10px 16px;
  border-radius: 999px;
}

.nav-links a:hover{
  background: rgba(255,255,255,.15);
  transform: translateY(-1px);
}

.nav-cta{
  text-decoration:none;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .8px;
  padding: 14px 24px;
  border-radius: 999px;
  color: #111;
  background: linear-gradient(90deg, #ffe08a, #b8ffcf);
  border: 1px solid rgba(0,0,0,.10);
}

.nav-cta:hover{
  transform: translateY(-2px);
  filter: brightness(0.98);
}

/* FLAGS */
.lang-switch{
  justify-self: end;
  display:flex;
  gap: 10px;
  align-items:center;
}

.lang-btn{
  width: 44px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.75);
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 20px;
}

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

.lang-btn.active{
  outline: 3px solid rgba(184,255,207,.85);
  border-color: rgba(0,0,0,.10);
}

/* HERO */
.hero{
  position: relative;
  height: 92vh;
  min-height: 620px;
  display:grid;
  place-items:center;
  overflow:hidden;
  padding-top: 140px;
}

.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 400px at 20% 30%, rgba(255,224,138,.35), transparent 60%),
    radial-gradient(700px 400px at 80% 20%, rgba(184,255,207,.25), transparent 60%),
    linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.18));
}

.hero-content{
  position: relative;
  z-index: 2;
  max-width: 1120px;
  width: 100%;
  padding: 0 18px;
  color: #fff;
  text-align: center;
}

.hero-content h1{
  margin: 0 0 12px;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  letter-spacing: 1px;
  text-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.hero-content p{
  margin: 0 auto 22px;
  max-width: 62ch;
  opacity: .95;
  text-shadow: 0 10px 24px rgba(0,0,0,.25);
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap: 16px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration:none;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.92);
  color: #111;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  cursor: pointer;
}

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

.btn-outline{
  background: rgba(255,255,255,.15);
  color:#fff;
  border: 1px solid rgba(255,255,255,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-outline-dark{
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(0,0,0,.20);
  box-shadow: none;
}
.btn-outline-dark:hover{
  transform: translateY(-2px);
  background: rgba(0,0,0,.04);
}

/* SECTIONS */
.section{
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 18px;
}

.section-alt{
  max-width: none;
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.section-inner{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}

.muted{ color: var(--muted); }

/* CARDS */
.card{
  width: 100%;
  border-radius: var(--radius);
  padding: 22px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
}

.card h2{
  margin: 0 0 8px;
  font-size: 28px;
}

/* BOOKING + WEATHER GRID */
.two-cards{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

/* SETMORE EMBED */
.booking-inline{
  margin-top: 14px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  background: #fff;
}

.booking-inline iframe{
  width: 100%;
  height: clamp(500px, 62vh, 740px);
  border: 0;
  display: block;
}

/* WEATHER */
.weather-card{ overflow: visible; }

.weather-app{
  width: 100%;
  border-radius: 18px;
  padding: 16px;

  background: transparent;
  border: 0;
  box-shadow: none;

  position: relative;
  overflow: visible;
  isolation: isolate;
  color: var(--w-text);
}

.weather-app::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;

  background: var(--w-bg);
  border: 1px solid var(--w-border);
  box-shadow: 0 14px 40px rgba(0,0,0,.18);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  z-index: 0;
}

.weather-app > *{
  position: relative;
  z-index: 1;
}

.weather-top{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
}

.weather-updated{
  margin-top: 2px;
  color: var(--w-muted);
  font-size: 12px;
}

.unit-toggle{
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.10);
  color: var(--w-text);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 800;
  cursor: pointer;
}

.unit-toggle:hover{
  background: rgba(255,255,255,.14);
  transform: translateY(-1px);
}

.weather-now{
  margin-top: 10px;
  overflow: visible;
}

.weather-temp{
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  padding-top: 6px;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}

.weather-temp .deg{
  font-size: .6em;
  line-height: 1;
  margin-top: 6px;
}

.weather-summary{
  margin-top: 6px;
  color: var(--w-muted);
  font-weight: 600;
}

.daily-row{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.day-pill{
  -webkit-appearance: none;
  appearance: none;
  flex: 0 0 auto;
  width: 64px;
  padding: 10px;
  border-radius: 14px;
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  color: rgba(255,255,255,.95) !important;
  text-align: center;
  cursor: pointer;
  user-select: none;
  box-shadow: none !important;
  outline: none;
}

.day-pill:hover{
  background: rgba(255,255,255,.08) !important;
  transform: translateY(-1px);
}

.day-pill.active{
  background: rgba(255,255,255,.14) !important;
  border-color: rgba(255,255,255,.28) !important;
}

.day-name{ font-weight: 800; font-size: 12px; }
.day-ico{ font-size: 18px; margin: 6px 0; }
.day-temps{ font-size: 12px; display:flex; gap:6px; justify-content:center; }
.day-hi{ font-weight: 800; }
.day-lo{ opacity:.75; font-weight:700; }

.hourly{ margin-top: 12px; }
.hourly-title{
  font-weight: 800;
  font-size: 12px;
  color: var(--w-muted);
  margin-bottom: 8px;
}

.chart-wrap{
  width: 100%;
  height: 130px;
  padding-top: 6px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  overflow: visible;
}

.chart{
  width: 100%;
  height: 124px;
  display:block;
}

.hourly-times{
  margin-top: 8px;
  display:flex;
  justify-content: space-between;
  color: rgba(255,255,255,.60);
  font-size: 11px;
}

/* CONTACT */
.contact-card{ padding: 28px; }

.contact-form{
  margin-top: 18px;
  display: grid;
  gap: 14px;
  width: 100%;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.16);
  font-size: 16px;
  font-family: inherit;
}

.contact-form textarea{
  resize: vertical;
  min-height: 240px;
}

.contact-form .btn{ width: 100%; }

.form-note{
  margin: 0;
  color: rgba(0,0,0,.7);
}

/* FOOTER */
.footer{
  padding: 30px 18px;
  text-align: center;
  color: rgba(0,0,0,.65);
  border-top: 1px solid rgba(0,0,0,.08);
}

/* ===== ABOUT PAGE ===== */
.about-hero{
  position: relative;
  height: 55vh;
  min-height: 420px;
  overflow:hidden;
  background:
    radial-gradient(800px 400px at 20% 20%, rgba(255,224,138,.35), transparent 60%),
    radial-gradient(800px 400px at 80% 20%, rgba(184,255,207,.25), transparent 60%),
    linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.18));
}

.about-hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(to right, rgba(0,0,0,.55), rgba(0,0,0,.25));
}

.about-hero-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  padding: 0 18px;
}

.about-hero-content h1{
  margin:0 0 10px;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  letter-spacing: 4px;
}

.about-hero-content p{
  margin:0;
  opacity:.9;
  font-size: 18px;
}

.about-name{
  text-align:center;
  font-size: 36px;
  margin: 0 0 36px;
}

.about-grid{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items:center;
}

.about-photo img{
  width:100%;
  max-width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius:50%;
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

.about-text p{
  margin: 0 0 16px;
  line-height: 1.7;
  color: rgba(0,0,0,.75);
}

.about-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* Testimonials */
.testimonials{ padding: 70px 0; }
.reviews-title{ text-align:center; font-size: 32px; margin: 0 0 10px; }
.reviews-sub{ text-align:center; margin: 0 0 28px; }

.slider{
  display:grid;
  grid-template-columns: 54px 1fr 54px;
  align-items:center;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.slider-viewport{
  overflow:hidden;
  border-radius: 26px;
  padding: 2px;
}

.slider-track{
  display:flex;
  transform: translateX(0%);
  transition: transform 500ms ease;
  touch-action: pan-y; /* helps iOS swipe */
}

.review-slide{
  min-width: 100%;
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(184,255,207,.65), rgba(255,224,138,.45));
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 16px 34px rgba(0,0,0,.08);
  opacity: .92;
  transform: scale(.99);
  transition: opacity 400ms ease, transform 400ms ease;
}

.review-slide.is-active{
  opacity: 1;
  transform: scale(1);
}

.quote{ font-size: 18px; line-height: 1.7; font-weight: 600; margin: 0 0 16px; }
.author{ margin: 0; font-weight: 800; }

.slider-btn{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.85);
  box-shadow: 0 10px 20px rgba(0,0,0,.10);
  cursor: pointer;
  font-size: 30px;
  line-height: 0;
}
.slider-btn:hover{
  transform: translateY(-2px);
  filter: brightness(.98);
}

.dots{
  display:flex;
  justify-content:center;
  gap: 10px;
  margin-top: 18px;
}
.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(0,0,0,.18);
  cursor: pointer;
}
.dot.active{
  background: rgba(0,0,0,.6);
  width: 22px;
}

/* =========================================
   MOBILE (header always visible / NOT transparent)
   ========================================= */
@media (max-width: 900px){
  html, body{ width: 100%; overflow-x: hidden; }
  img, video, svg, iframe{ max-width: 100%; }

  .site-header{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    padding-top: calc(10px + env(safe-area-inset-top));
    padding-bottom: 10px;

    /* ✅ ALWAYS VISIBLE ON MOBILE */
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,.06);
  }

  .header-inner{ width: 100%; }

  .header-wrap{
    max-width: 100%;
    padding: 0 12px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }

  .logo{ height: 50px; }

  /* pill stays readable (light, not transparent) */
  .nav-pill{
    justify-self: center;
    width: 100%;
    max-width: 560px;

    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 10px;

    padding: 10px 12px;
    border-radius: 999px;

    background: rgba(255,255,255,.92);
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 10px 24px rgba(0,0,0,.10);

    min-width: 0;
    flex-wrap: nowrap;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
  }

  .nav-links{
    display:flex;
    align-items:center;
    gap: 8px;
    flex: 1 1 auto;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar{ display:none; }

  .nav-links a{
    font-size: 14px;
    padding: 8px 10px;
    white-space: nowrap;
    color: #111;
  }

  .nav-links a:hover{
    background: rgba(0,0,0,.05);
    transform: translateY(-1px);
  }

  .nav-cta{
    flex: 0 0 auto;
    padding: 10px 14px;
    font-size: 13px;
    white-space: nowrap;
  }

  .lang-btn{
    width: 38px;
    height: 30px;
    border-radius: 10px;
    font-size: 18px;
  }

  main{ padding-top: 115px; }

  .hero{
    height: auto;
    min-height: 560px;
    padding-top: 30px;
  }

  .hero-buttons{ width: 100%; gap: 12px; }
  .hero-buttons .btn{ width: 100%; }

  .section{ padding: 60px 12px; }
  .section-inner{ padding: 0; max-width: 100%; min-width: 0; }
  .card{ width: 100%; max-width: 100%; min-width: 0; padding: 18px; }

  .two-cards{ grid-template-columns: 1fr; min-width: 0; }

  .booking-inline{ width: 100%; max-width: 100%; overflow: hidden; }

  .booking-inline iframe{
    width: 1px !important;
    min-width: 100% !important;
    max-width: 100% !important;
    display: block;
    border: 0;
    height: 75vh;
    min-height: 640px;
  }

  .about-grid{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 26px;
  }

  .about-photo img{
    margin: 0 auto;
    height: 260px;
    width: 260px;
  }

  .slider{ grid-template-columns: 1fr; }
  .slider-btn{ display: none; }
}

/* =========================================
   EXTRA-SMALL MOBILE: 2-line header layout
   ========================================= */
@media (max-width: 520px){
  .header-wrap{
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand flags"
      "pill  pill";
    gap: 10px;
  }

  .brand{ grid-area: brand; justify-self: start; }
  .lang-switch{ grid-area: flags; justify-self: end; }

  .nav-pill{
    grid-area: pill;
    justify-self: center;
    width: 100%;
    max-width: 100%;
    padding: 10px 12px;
  }

  .nav-links{ gap: 6px; }
  .nav-links a{ font-size: 13px; padding: 8px 8px; }

  .nav-cta{ padding: 10px 12px; font-size: 12px; }

  main{ padding-top: 150px; }
}