\
:root{--brand-bg:#000;--brand-gold:#d4af37;--text:#eee;--muted:#bdbdbd}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:#111;color:#fff;font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;scroll-behavior:smooth}
.site-header{position:sticky;top:0;z-index:100;background:rgba(0,0,0,.4);backdrop-filter:saturate(140%) blur(6px);padding:.7rem 1rem;display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid rgba(212,175,55,.25)}
.site-header .brand{display:flex;align-items:center;gap:.6rem;text-decoration:none}
.logo{height:48px}
.brand-name{font-weight:800;letter-spacing:.5px;color:var(--brand-gold);font-size:1.25rem}
.nav-links a{color:var(--brand-gold);text-decoration:none;margin-left:1rem;font-weight:600}
.nav-links .btn.small{padding:.35rem .7rem;border-radius:6px;border:2px solid var(--brand-gold)}
.nav-links .btn.small.primary{background:var(--brand-gold);color:#000}
.menu-toggle{display:none;background:none;border:none;cursor:pointer;padding:.4rem}
.menu-toggle span{display:block;width:26px;height:2px;background:var(--brand-gold);margin:6px 0;transition:.25s}
.menu-toggle.open span:nth-child(1){transform:translateY(8px) rotate(45deg)}
.menu-toggle.open span:nth-child(2){opacity:0}
.menu-toggle.open span:nth-child(3){transform:translateY(-8px) rotate(-45deg)}
.menu-overlay{position:fixed;inset:0;background:rgba(0,0,0,.6);opacity:0;pointer-events:none;transition:.25s;z-index:90}
.menu-overlay.show{opacity:1;pointer-events:auto}
@media (max-width: 900px){
  .menu-toggle{display:block}
  .nav-links{position:fixed;top:64px;right:0;background:#0b0b0b;border-left:1px solid rgba(212,175,55,.25);width:min(80vw,360px);height:calc(100vh - 64px);transform:translateX(100%);transition:.3s;padding:1rem;display:flex;flex-direction:column;gap:.8rem;z-index:99}
  .nav-links a{margin:0}
  .nav-links.show{transform:none}
}
.hero{position:relative;min-height:78vh;display:flex;align-items:center;justify-content:center;text-align:center;overflow:hidden;background:#000}
.hero::before{content:"";position:absolute;inset:0;background:url('assets/hero.jpg') center/cover no-repeat;filter:brightness(1);transform:scale(1.02)}
.hero .overlay{position:absolute;inset:0;background:transparent}
.hero .hero-inner{position:relative;z-index:1;padding:2rem 1rem;max-width:960px}
.hero h1{font-size:clamp(2rem,6vw,4rem);color:var(--brand-gold);margin:.2rem 0;opacity:0;animation:fadeIn .9s .2s forwards ease-out}
.hero p.sub{font-size:clamp(1rem,2.5vw,1.25rem);color:var(--muted);margin:.2rem 0 1.2rem;opacity:0;transform:translateY(8px);animation:riseIn .9s .5s forwards ease-out}
.hero .availability{font-size:.95rem;color:var(--muted);opacity:0;transform:translateY(10px);animation:riseIn .9s .7s forwards ease-out}
.btn{display:inline-block;border:2px solid var(--brand-gold);color:var(--brand-gold);padding:.7rem 1.2rem;border-radius:6px;text-decoration:none;font-weight:700;transition:.25s}
.btn:hover{background:var(--brand-gold);color:#000}
.btn.primary{background:var(--brand-gold);color:#000}
.container{max-width:1100px;margin:0 auto;padding:2rem 1rem}
.section{padding:2rem 0;border-top:1px solid rgba(255,255,255,.06)}
.section h2{color:var(--brand-gold);margin-top:0}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.card{background:#121212;border:1px solid rgba(255,255,255,.06);border-radius:12px;padding:1.1rem}
.card h3{color:var(--brand-gold);margin-top:.2rem}
ul.check{list-style:none;padding:0;margin:0}
ul.check li{margin:.4rem 0}
ul.check li::before{content:"✓ ";color:var(--brand-gold);font-weight:800}
.trust{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.trust .tcard{background:#121212;border:1px solid rgba(255,255,255,.06);border-radius:12px;padding:1rem;text-align:center}
.trust .tcard i{font-size:1.6rem;color:var(--brand-gold);margin-bottom:.4rem;display:block}
.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.gallery picture, .gallery img{width:100%;height:280px;object-fit:cover;border-radius:10px;cursor:pointer;transition:transform .25s}
.gallery img:hover{transform:scale(1.02)}
.lightbox{position:fixed;inset:0;background:rgba(0,0,0,.4);display:none;align-items:center;justify-content:center;z-index:9998}
.lightbox img{max-width:92vw;max-height:88vh;border-radius:10px}
.lightbox.show{display:flex}
form input, form select, form textarea{width:100%;padding:.75rem;border-radius:8px;border:1px solid rgba(255,255,255,.15);background:#0f0f0f;color:#fff}
form label{display:block;margin:.4rem 0 .25rem;color:var(--muted)}
form .row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
@media (max-width:760px){form .row{grid-template-columns:1fr}}
.error{color:var(--brand-gold);font-size:.9rem;margin:.25rem 0 .75rem}
.invalid{border-color:var(--brand-gold) !important;}
.site-footer{background:#0a0a0a;border-top:1px solid rgba(212,175,55,.25);padding:1.5rem 1rem;color:var(--muted)}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:1rem;align-items:flex-start}
.footer-grid a{color:var(--brand-gold);text-decoration:none}
.logo-sm{height:28px;vertical-align:middle;margin-right:.4rem}
.brand-inline{display:flex;align-items:center;gap:.5rem}
.copyright{text-align:center;margin-top:1rem;font-size:.9rem;color:#8c8c8c}
.site-footer .social-icons a{font-size:1.2rem;margin:0 .3rem}
.whatsapp-float{position:fixed;width:60px;height:60px;bottom:20px;right:20px;background-color:#25d366;color:#fff;border-radius:50%;text-align:center;font-size:2rem;box-shadow:0 4px 10px rgba(0,0,0,.3);z-index:100;display:flex;align-items:center;justify-content:center}
#preloader{position:fixed;inset:0;background:#000;display:grid;place-items:center;z-index:9999}
#preloader .preloader-inner{display:flex;flex-direction:column;align-items:center;gap:.6rem;opacity:0;animation:fadeIn .3s forwards}
#preloader img{height:72px;filter:drop-shadow(0 0 8px rgba(212,175,55,.25));animation:pulse 1.5s infinite ease-in-out}
#preloader .preloader-text{color:var(--brand-gold);font-weight:800;letter-spacing:.5px;animation:pulse 1.5s infinite ease-in-out}
.reveal{opacity:0;transform:translateY(10px);transition:.6s ease-out}
.reveal.visible{opacity:1;transform:none}
@keyframes pulse{0%{transform:scale(1)}50%{transform:scale(1.06)}100%{transform:scale(1)}}
@keyframes fadeIn{to{opacity:1}}
@keyframes riseIn{to{opacity:1;transform:none}}


/* Failsafe: auto-hide preloader after 6s even if JS fails */
#preloader {
  animation: hidePreloader 6s forwards;
}
@keyframes hidePreloader {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* Ensure reveal sections are visible by default */
.reveal, .card, .tcard, .gallery img, .gallery picture {
  opacity: 1 !important;
  transform: none !important;
}


/* Forcefully remove preloader after load */
#preloader {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  z-index: -1 !important;
}


/* Improve text readability across site */
.hero p.sub,
.hero .availability,
form label,
.site-footer,
.copyright {
  color: #ddd !important;
}

:root {
  --text: #fff;
  --muted: #ccc;
}


/* Improve button, link, and placeholder readability */
button, .btn {
  color: #000 !important; /* dark text on gold buttons */
  font-weight: bold;
}

button:hover, .btn:hover {
  background-color: #d4af37 !important; /* slightly darker gold */
  color: #000 !important;
}

a {
  color: #ffd700; /* gold links */
  text-decoration: none;
}
a:hover {
  color: #ffcc33;
  text-decoration: underline;
}

input::placeholder, textarea::placeholder {
  color: #bbb !important; /* brighter placeholder text */
}

small, .subtitle, .muted, .note {
  color: #ddd !important; /* ensure small/muted text is visible */
}


/* Ensure Book Now buttons are always visible */
button, .btn, .book-now {
  background-color: #ffd700 !important; /* gold */
  color: #000 !important; /* black text */
  font-weight: bold !important;
  border: none !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover, .btn:hover, .book-now:hover {
  background-color: #e6c200 !important; /* darker gold on hover */
  color: #000 !important;
  transform: scale(1.05);
}


/* Mobile responsiveness improvements */
@media (max-width: 768px) {
  .btn, button, .book-now {
    width: 100% !important;
    font-size: 1.2em !important;
    padding: 15px !important;
    margin: 10px 0 !important;
  }

  h1, h2 {
    font-size: 1.6em !important;
  }

  p {
    font-size: 1em !important;
    line-height: 1.6 !important;
  }

  .hero {
    text-align: center !important;
    padding: 60px 20px !important;
  }

  .section {
    padding: 40px 15px !important;
  }

  img, video {
    max-width: 100% !important;
    height: auto !important;
  }

  nav ul {
    flex-direction: column !important;
    text-align: center !important;
  }

  .nav-links {
    width: 100% !important;
  }
}


/* Mobile navigation improvements */
@media (max-width: 768px) {
  .nav-links {
    position: fixed !important;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background: #111;
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 9999;
  }
  .nav-links.active {
    right: 0;
  }
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
  }
  .menu-overlay.show {
    display: block;
  }
  body.menu-open {
    overflow: hidden;
  }
}


/* Mobile logo and Book Now button fixes */
@media (max-width: 768px) {
  .logo img {
    max-width: 150px !important;
    height: auto !important;
  }
  .btn, button, .book-now {
    display: block !important;
    width: 100% !important;
    background-color: #ffd700 !important;
    color: #000 !important;
    font-weight: bold !important;
    padding: 15px !important;
    margin: 15px 0 !important;
  }
}

/* Mobile nav animations */
.nav-links a {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
}
.nav-links.active a {
  opacity: 1;
  transform: translateX(0);
}
.nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
.nav-links.active a:nth-child(2) { transition-delay: 0.2s; }
.nav-links.active a:nth-child(3) { transition-delay: 0.3s; }
.nav-links.active a:nth-child(4) { transition-delay: 0.4s; }
.nav-links.active a:nth-child(5) { transition-delay: 0.5s; }

.menu-overlay {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.menu-overlay.show {
  opacity: 1;
}

/* Toggle button bounce */
.menu-toggle:active {
  transform: scale(0.9);
  transition: transform 0.1s ease;
}


/* Mobile logo and layout fixes */
@media (max-width: 768px) {
  .logo img {
    max-width: 100px !important;
    height: auto !important;
  }
  .logo {
    position: relative !important;
    margin: 0 auto !important;
    text-align: center !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
  }
}

/* Prevent horizontal scrolling */
html, body {
  overflow-x: hidden !important;
  max-width: 100% !important;
}
* {
  box-sizing: border-box;
}

/* Ensure sections fit screen */
.section, .hero, .container {
  width: 100% !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}


/* Mobile spacing and hero button fix */
@media (max-width: 768px) {
  h1, h2 {
    margin-bottom: 15px !important;
  }
  p {
    margin-bottom: 20px !important;
    line-height: 1.5 !important;
  }
  .section {
    padding: 30px 15px !important;
  }
  .hero .book-now {
    margin-top: 40px !important;
  }
  .site-header .book-now {
    display: none !important;
  }
}


/* ================= Final Visual Polish ================= */

/* Footer fixes */
@media (max-width: 768px) {
  .site-footer {
    text-align: center !important;
    padding: 20px 10px !important;
  }
  .site-footer .footer-columns {
    display: flex;
    flex-direction: column !important;
    gap: 15px;
  }
  .site-footer p, 
  .site-footer a, 
  .copyright {
    font-size: 0.9em !important;
    line-height: 1.4 !important;
  }
  .site-footer .social-icons {
    justify-content: center !important;
    gap: 15px !important;
  }
}

/* Buttons consistency */
button, .btn, .book-now, input[type=submit] {
  background-color: #ffd700 !important;
  color: #000 !important;
  font-weight: bold !important;
  border: none !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  border-radius: 5px;
  transition: all 0.3s ease;
}
button:hover, .btn:hover, .book-now:hover, input[type=submit]:hover {
  background-color: #e6c200 !important;
  transform: scale(1.05);
}

/* Forms */
input, textarea, select {
  background-color: #222 !important;
  border: 1px solid #555 !important;
  color: #fff !important;
  padding: 12px !important;
  border-radius: 5px !important;
}
input:focus, textarea:focus, select:focus {
  border-color: #ffd700 !important;
  outline: none !important;
}

/* Section titles */
h2 {
  margin-bottom: 20px !important;
  border-bottom: 2px solid #ffd700;
  display: inline-block;
  padding-bottom: 5px;
}

/* Cards / content blocks */
.card, .tcard {
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  border-radius: 6px;
  transition: all 0.3s ease;
}
.card:hover, .tcard:hover {
  transform: translateY(-5px);
}

/* Smooth transitions */
a, button, .card, .tcard {
  transition: all 0.3s ease;
}


/* Header/nav text visibility */
.site-header a, .nav-links a {
  color: #fff !important;
  font-weight: bold;
}
.site-header a:hover, .nav-links a:hover {
  color: #ffd700 !important;
}

/* Restore vertical scroll while keeping horizontal hidden */
html, body {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  max-width: 100% !important;
}

/* Ensure sections auto-size */
.section, .hero, .container {
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
}
