/* ---------------------------------------------------------
   01) THEME TOKENS
   --------------------------------------------------------- */
:root{
  --bg:#0e1217;
  --ink:#f7f7f7;
  --muted:#aab3bf;
  --brand:#14b8a6;
  --brand2:#38bdf8;
  --accent2:var(--brand2); /* used by page CSS (LPV) */
  --card:#151b22;
  --card2:#11161c;
  --line:#1b2430;
  --radius:18px;
}

/* ---------------------------------------------------------
   02) RESET + BASICS
   --------------------------------------------------------- */
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  font-family:system-ui,-apple-system,Segoe UI,Inter,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

.muted{color:var(--muted)}
.sr-only{
  position:absolute!important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  border:0
}

/* ---------------------------------------------------------
   03) CONTAINERS
   --------------------------------------------------------- */
.container{
  max-width:1160px;
  margin:0 auto;
  padding:0 20px;
}

.bar{
  max-width:1160px;
  margin:0 auto;
  padding:14px 20px;
}

/* ---------------------------------------------------------
   04) HEADER / NAV
   --------------------------------------------------------- */
header.site{
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(14,18,23,.72);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}

/* Header gets its own tighter padding */
header.site .bar{
  padding:16px 10px;
}
@media (max-width:760px){
  header.site .bar{
    padding:14px 12px;
  }
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:nowrap;
}

/* Make header the positioning context for the dropdown */
header.site .bar.nav-wrap{ position:relative; }

.brand-link{
  display:flex;
  align-items:center;
  gap:6px;
  min-width:0;
}

.brand-logo{
  height:48px;
  width:auto;
  object-fit:contain;
}

.brand-title{
  font-size:1rem;
  line-height:1.2;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:46vw;
  font-weight:700;
  margin:0;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:1.1rem;
  flex-wrap:nowrap;
}

.nav-links a{opacity:.9}
.nav-links a:hover{opacity:1}

/* ---------------------------------------------------------
   05) BUTTONS
   --------------------------------------------------------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.9rem 1.15rem;
  border-radius:999px;
  border:1px solid #2a3340;
  font-weight:600;
  cursor:pointer;
  transition:transform .15s ease,filter .15s ease,box-shadow .2s ease;
}
.btn-primary{
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:#071317;
  border-color:transparent;
}
.btn-primary:hover{
  filter:brightness(1.08);
  transform:translateY(-1px);
}
.btn-ghost{background:transparent}

.btn-compact{
  font-size:.95rem;
  padding:.6rem 1rem;
  border-radius:999px;
  white-space:nowrap;
}

/* ---------------------------------------------------------
   06) MOBILE NAV
   --------------------------------------------------------- */
.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  cursor:pointer;
  padding:10px;
}
.nav-toggle span{
  display:block;
  height:2px;
  background:var(--ink);
  margin:6px 0;
  border-radius:2px;
}

@media (max-width:760px){
  .nav-toggle{ display:inline-block; }

  .nav-links{
    position:absolute;
    top:64px;
    left:12px;
    right:12px;

    display:none;
    flex-direction:column;
    gap:0;

    padding:10px;
    border-radius:14px;
    border:1px solid var(--line);
    background:rgba(15,19,26,.92);
    backdrop-filter:blur(10px);
    box-shadow:0 18px 45px rgba(0,0,0,.55);
    z-index:50;
  }

  .nav-links a{
    width:100%;
    padding:12px 12px;
    border-radius:10px;
    font-size:1rem;
    opacity:1;
  }

  .nav-links a:hover{
    background:rgba(255,255,255,.05);
    color:var(--ink);
  }

  .nav-links.is-open{ display:flex; }

  .nav-links .btn{
    width:100%;
    justify-content:center;
    margin-top:6px;
  }
}

/* ---------------------------------------------------------
   07) REQUEST FORM (shared – used by request.html)
   --------------------------------------------------------- */

.wa-form{
  display:grid;
  gap:12px;
}

.wa-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.wa-field label{
  display:block;
  font-size:.9rem;
  color:rgba(220,228,238,.9);
  margin:0 0 6px;
}

.wa-field input,
.wa-field textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid #2a3340;
  background:rgba(0,0,0,.18);
  color:var(--ink);
  outline:none;
}

.wa-field textarea{
  min-height:92px;
  resize:vertical;
}

/* Villa radio group */
.wa-radio{
  display:grid;
  gap:10px;
  padding:12px;
  border:1px solid #2a3340;
  border-radius:12px;
  background:rgba(0,0,0,.18);
}
.wa-radio label{
  display:flex;
  gap:10px;
  align-items:center;
  color:var(--ink);
  font-size:1rem;
}
.wa-radio input[type="radio"]{
  width:18px;
  height:18px;
}

.wa-actions{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:flex-start;
  margin-top:6px;
}

.wa-help{
  font-size:.88rem;
  color:var(--muted);
}

/* Number inputs: reduce spinner noise */
.wa-field input[type="number"]{
  -moz-appearance:textfield;
}
.wa-field input[type="number"]::-webkit-outer-spin-button,
.wa-field input[type="number"]::-webkit-inner-spin-button{
  -webkit-appearance:none;
  margin:0;
}

@media (max-width:560px){
  .wa-grid{grid-template-columns:1fr}
}

.video-section {
  padding: 20px 20px;
}

.video-section {
  margin-bottom: 20px;
}


.video-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 26px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.video-card h2 {
  margin: 0 0 10px;
}

.video-card p {
  margin: 0 0 18px;
  opacity: 0.9;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-embed {
  margin-top: 2rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #000;
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

@media (max-width: 768px) {
  .map-embed iframe {
    height: 300px;
  }
}
.subtle-note {
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

.cta-availability {
  margin-top: 18px;
  padding: 14px 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color: #000;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 10px 25px rgba(56,189,248,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-availability:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(56,189,248,0.45);
}

.cta-availability {
  margin-top: 18px;
  padding: 14px 36px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color: #000;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 10px 25px rgba(56,189,248,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-availability:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(56,189,248,0.45);
}

.cta-sub {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #9ca3af;
  letter-spacing: 0.4px;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.social-links a svg {
  width: 18px;
  height: 18px;
  fill: rgba(220,228,238,.6);
  transition: fill .2s ease;
}

.social-links a:hover svg {
  fill: rgba(220,228,238,.9);
}
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}

footer {
  padding: 28px 0 22px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  text-align: center;
}

.footer-divider {
  height: 1px;
  background: rgba(220,228,238,.12);
  margin: 24px auto 18px;
  max-width: 520px;
}

.footer-contact {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-top: 10px;
}

.footer-contact a {
  color: rgba(220,228,238,.78);
  text-decoration: none;
}

.footer-contact a:hover {
  color: rgba(220,228,238,.92);
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}

.social-links a svg {
  width: 18px;
  height: 18px;
  fill: rgba(220,228,238,.6);
  transition: fill .2s ease;
}

.social-links a:hover svg {
  fill: rgba(220,228,238,.9);
}

.footer-small {
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(220,228,238,.55);
}
footer {
  padding: 28px 0 22px;
}

footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  text-align: center;
}

footer .footer-divider {
  height: 1px;
  background: rgba(220,228,238,.12);
  margin: 24px auto 18px;
  max-width: 520px;
}

footer .footer-contact {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-top: 10px;
}

footer .footer-contact a {
  color: rgba(220,228,238,.78);
  text-decoration: none;
}

footer .footer-contact a:hover {
  color: rgba(220,228,238,.92);
}

footer .social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}

footer .social-links a svg {
  width: 18px;
  height: 18px;
  fill: rgba(220,228,238,.6);
  transition: fill .2s ease;
}

footer .social-links a:hover svg {
  fill: rgba(220,228,238,.9);
}

footer .footer-small {
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(220,228,238,.55);
}

.footer-title {
  font-weight: 500;
  letter-spacing: .3px;
  color: rgba(220,228,238,.9);
}
html, body { width: 100%; overflow-x: hidden; }
img { max-width: 100%; height: auto; 
}

html, body { width: 100%; overflow-x: hidden; }
img { max-width: 100%; height: auto; }

.direct-why {
  margin-top: 28px;
  max-width: 520px;
  text-align: center;
  opacity: 0.95;
}

.direct-why h4 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #e9f8fb;
}

.direct-why ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}

.direct-why li {
  font-size: 0.95rem;
  margin: 6px 0;
  color: #cfeef2;
}

.direct-why li strong {
  color: #ffffff;
  font-weight: 600;
}

.direct-note {
  font-size: 0.85rem;
  color: #9fcfd6;
  margin-top: 6px;
}
/* Collapsible "Why book direct?" */
.why-direct{
  max-width: 720px;
  margin: 18px auto 0;
  text-align: center;
}

.why-direct summary{
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.why-direct summary::-webkit-details-marker{
  display: none;
}





.why-direct__body{
  margin-top: 14px;
}

.why-direct__list{
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.why-direct__list li{
  line-height: 1.4;
}

.why-direct__note{
  margin: 14px 0 0;
  opacity: 0.85;
  font-size: 0.95rem;
}
.why-direct__note{
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 12px;
}

/* Arrow colour + glow to match CTA */
.why-direct__chev{
  color: var(--brand);
  text-shadow: 0 0 8px rgba(56,189,248,0.45);
}

/* Optional: slightly brighter when open */
.why-direct[open] .why-direct__chev{
  color: var(--brand2);
}
/* Top navigation hover state */
.nav a,
header nav a {
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav a:hover,
header nav a:hover {
  color: var(--brand);
  text-shadow: 0 0 8px rgba(56,189,248,0.4);
}
.nav a.active,
header nav a.active {
  color: var(--brand);
}
/* Why book direct – summary hover cue */
.why-direct summary {
  cursor: pointer;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.why-direct summary:hover {
  color: var(--brand);
  text-shadow: 0 0 10px rgba(56,189,248,0.4);
}



/* Remove default disclosure arrows */
.why-direct summary {
  list-style: none;
}

.why-direct summary::-webkit-details-marker {
  display: none;
}
/* Kill the custom chevrons */
.why-direct summary::after{
  content: "" !important;
  display: none !important;
}
/* Anchor landing offset for sticky header */
:root{
  --header-offset: 110px; /* adjust */
}

html{
  scroll-behavior: smooth;
}

/* Apply to any section you jump to */
#villas, #guest-kind-words, #why {
  scroll-margin-top: var(--header-offset);
}
/* Contact anchor needs to land slightly lower */
#contact{
  scroll-margin-top: calc(var(--header-offset) - 20px);
}

/* =======================
   VILLA PAGES – SHARED
   ======================= */

/* HERO */
.hero{
  position:relative;
  overflow:hidden;
  min-height:52vh;
  display:flex;
  align-items:flex-end;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:var(--hero-image) center/cover no-repeat;
  z-index:-2;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:rgba(0,0,0,.18);
}
.hero-inner{
  width:100%;
  padding:82px 20px 70px;
  text-align:left;
}
.hero-text-box{
  display:inline-block;
  background:rgba(0,0,0,.28);
  padding:1.1rem 1.4rem;
  border-radius:14px;
  max-width:38rem;
}
.hero h1{
  font-size:clamp(2.1rem,4vw,2.7rem);
  margin:0 0 .6rem;
}
.hero p{
  margin:0;
  max-width:36rem;
  color:rgba(255,255,255,.9);
  font-size:1.02rem;
  line-height:1.6;
}

/* TWO COLUMN LAYOUT */
.villa-layout{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:32px;
  margin:40px 0 56px;
  align-items:start;
}
.villa-left,
.gallery-wrap{min-width:0}

/* GALLERY */
.main-photo{
  position:relative;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(0,0,0,.5);
}
.main-photo .frame{
  aspect-ratio:16/10;
  width:100%;
  object-fit:cover;
  transition:opacity 220ms ease;
}
.main-photo .frame.is-fading{opacity:0}

/* THUMBS */
.thumbs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}
.thumb{
  flex:0 0 calc(20% - 8px);
  border:1px solid var(--line);
  border-radius:10px;
  overflow:hidden;
  opacity:.85;
  cursor:pointer;
}
.thumb.active{
  outline:2px solid var(--accent2);
  opacity:1;
}

/* RESPONSIVE */
@media (max-width:980px){
  .villa-layout{grid-template-columns:1fr}
}
.hero-box-title h1{
  line-height:1.1;
}

.hero-subtitle{
  display:block;
  margin-top:0.4rem;
  font-size:0.55em;
  font-weight:600;
  opacity:0.9;
}

/* Intro line under "Why book directly..." */
.why-direct__body{
  margin-top: 14px;
  display: grid;
  gap: 14px; /* separates intro + list + note cleanly */
}

.why-direct-intro{
  margin: 0 auto;
  max-width: 56ch;
  font-weight: 700;
  opacity: 0.95;
}

/* Optional: add a subtle divider so it *never* reads like the list */
.why-direct-intro{
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.why-direct-intro {
  margin: 18px 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  color: rgba(255,255,255,0.9);
}

