:root {
  --black-deep: #0a0a0a;
  --black-soft: #141414;
  --black-card: #1a1a1a;
  --black-border: #2a2a2a;
  --white: #ffffff;
  --white-muted: #e5e5e5;
  --gray: #888888;
  --green-light: #9ae6b4;
  --green-hover: #68d391;
  --green-glow: rgba(154, 230, 180, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  background-color: var(--black-deep);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
}

h4 {
  font-size: 1.25rem;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
.center { text-align: center; }

/* =========================
   NAV - CLEAN REBUILD
========================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95), rgba(10,10,10,0.25));
  transition: background 0.3s ease;
}

.nav.scrolled {
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(10px);
}

.logo {
  display: block;
  z-index: 10002;
}

.logo img {
  height: 74px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.logo:hover img {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white-muted);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--green-light);
}

.nav-cta {
  padding: 0.75rem 1.5rem;
  background: var(--green-light);
  color: var(--black-deep);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
  z-index: 10002;
}

.nav-cta:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
}

/* Hamburger button - hidden on desktop */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10002;
}

.nav-toggle-icon {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  position: relative;
  margin: 0 auto;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease;
}

.nav-toggle-icon::before {
  top: -7px;
}

.nav-toggle-icon::after {
  top: 7px;
}


/* =========================
   HERO
========================= */
.hero{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ffffff08"/></svg>');
  background-size: 50px 50px;
  opacity: 0.5;
}

.hero::after{
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 120px rgba(0,0,0,0.7);
  z-index: 1;
}

.hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.35), rgba(10, 10, 10, 0.45)),
    rgba(154, 230, 180, 0.18);
  z-index: 1;
}

.hero-content{
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
  backdrop-filter: blur(2px);
}

.hero-tagline{
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1.25rem;
}

.hero h1{
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero h1 span{
  font-style: italic;
  color: var(--green-light);
}

.hero-description{
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.hero-buttons{
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary{
  padding: 1rem 2.5rem;
  background: var(--green-light);
  color: var(--black-deep);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary:hover{
  background: var(--green-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgb(154 230 180 / 0.3);
}

.btn-secondary{
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--white);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary:hover{
  border-color: var(--green-light);
  color: var(--green-light);
}

/* Open-to-public pill */
.hero-announcement{
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(154, 230, 180, 0.35);
  background: rgba(10, 10, 10, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.35),
    0 0 0 1px rgba(154, 230, 180, 0.12),
    0 0 30px rgba(154, 230, 180, 0.12);
}
.hero-announcement .announce-dot{
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 14px rgba(154, 230, 180, 0.55);
}
.hero-announcement .announce-sep{ color: rgba(255,255,255,0.65); }

.scroll-indicator{
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-indicator::after{
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--green-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* =========================
   GENERAL SECTIONS
========================= */
.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem;
}

.section-header{
  text-align: center;
  margin-bottom: 4rem;
}

.section-label{
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1rem;
}

.section-title{
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.section-description{
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.text-indent{ padding-left: 30px; padding-top: 5px; }

/* =========================
   ABOUT
========================= */
.about{ background: var(--black-soft); }

.about-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
}

.about-card{
  padding: 2.5rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 4px;
  transition: all 0.3s ease;
}
.about-card:hover{
  border-color: var(--green-light);
  transform: translateY(-5px);
}

.about-icon{
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--green-light);
}

.about-card h3{
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.about-card p{
  color: var(--gray);
  font-size: 0.9375rem;
}

/* =========================
   BOOKING
========================= */
.booking{
  background: linear-gradient(to bottom, var(--black-deep), var(--black-soft));
  text-align: center;
  padding: 2rem 12rem;
}
.booking .container{
  max-width: 100%;
  padding: 0;
}
.booking-iframe{
  width: 100%;
  height: 800px;
  border: none;
  display: block;
}
@media (max-width: 768px){
  .booking{ padding: 3rem 0.5rem; }
  .booking-iframe{ height: 900px; }
}
@media (min-width: 1920px){
  .booking-iframe{ height: 1400px; }
}

/* =========================
   CONTACT
========================= */
.contact{ background: var(--black-soft); }

.contact-card{
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 4px;
}
.contact-card:hover{ border-color: var(--green-light); }

.contact-form{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-field{
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Icon centered vertically (fixes date input issues too) */
.form-field i{
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  pointer-events: none;
  z-index: 1;
}

.form-field input,
.form-field textarea,
.form-field select{
  width: 100%;
  padding: 1rem 1rem 1rem 2.75rem;
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  border-radius: 4px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-field select{
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%239ae6b4" d="M6 8L0 0h12z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 3rem;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus{
  border-color: var(--green-light);
  background: var(--black-card);
}

/* Date input sizing fix */
.form-field input[type="date"]{
  color-scheme: dark;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.form-field input[type="checkbox"]{
  width: auto;
  padding: 0;
  margin: 0;
  cursor: pointer;
  accent-color: var(--green-light);
}

.form-field label{
  position: absolute;
  top: 1.125rem;
  color: var(--gray);
  font-size: 0.9375rem;
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Floating label */
.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label,
.form-field select:focus + label,
.form-field select:valid + label{
  top: -0.5rem;
  left: 0.75rem;
  font-size: 0.75rem;
  color: var(--green-light);
  background: var(--black-card);
  padding: 0 0.5rem;
}

.form-field.textarea textarea{
  padding: 1rem 1rem 1rem 2.75rem;
  min-height: 120px;
  resize: vertical;
}

.form-error{
  color: #ff6b6b;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

.form-actions{
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.form-actions .btn-primary{ min-width: 200px; }

/* =========================
   FAQ (works for /faq page + homepage)
========================= */
.faq-hero{
  padding: 10rem 0 2rem;
  background: linear-gradient(to bottom, rgba(10,10,10,0.98), rgba(20,20,20,1));
}

/* Default FAQ layout (used by standalone /faq page) */
.faq-grid{
  display: grid;
  grid-template-columns: 1.55fr 0.85fr;  /* ✅ side-by-side again */
  gap: 2.5rem;
  align-items: start;
}


.faq-card{
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 6px;
  overflow: hidden;
}

.faq-item{ border-bottom: 1px solid var(--black-border); }
.faq-item:last-child{ border-bottom: none; }

.faq-trigger{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--white);
  text-align: left;
  transition: background .2s ease;
}
.faq-trigger:hover{ background: rgba(154,230,180,0.06); }

.faq-question{
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1rem;
}

.faq-toggle{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(154,230,180,0.22);
  background: rgba(10,10,10,0.35);
  position: relative;
  flex: 0 0 auto;
  transition: transform .2s ease, border-color .2s ease;
}
.faq-toggle::before,
.faq-toggle::after{
  content:"";
  position:absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1px;
  background: rgba(154,230,180,0.9);
  transform: translate(-50%, -50%);
}
.faq-toggle::after{
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity .15s ease;
}
.faq-trigger[aria-expanded="true"] .faq-toggle{
  transform: rotate(45deg);
  border-color: rgba(154,230,180,0.45);
}
.faq-trigger[aria-expanded="true"] .faq-toggle::after{ opacity: 0; }

.faq-panel{
  overflow: hidden;
  transition: height .28s ease;
}

.faq-panel-inner{
  padding: 0 1.5rem 1.35rem;
  color: var(--gray);
  font-size: 0.95rem;
}
.faq-panel-inner p{ margin-top: 0.75rem; }
.faq-panel-inner ul,
.faq-panel-inner ol{ margin: 0.75rem 0 0.25rem 1.25rem; }
.faq-panel-inner strong{ color: var(--white-muted); }

/* Sidebar column (standalone /faq page) */
.faq-side{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-side-card{
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 6px;
  padding: 1.5rem;
  transition: border-color .25s ease, transform .25s ease;
}

.faq-side-card:hover{
  border-color: rgba(154,230,180,0.35);
  transform: translateY(-2px);
}

.faq-side-link{
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--black-border);
  color: var(--white-muted);
  transition: color .2s ease;
}

.faq-side-link:last-child{
  border-bottom: none;
}

.faq-side-link i{
  color: var(--green-light);
}

.faq-side-link:hover{
  color: var(--green-light);
}

.faq-muted{
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-muted strong{
  color: var(--white-muted);
}

/* Get In Touch banner (standalone /faq page) */
.faq-banner{
  margin-top: 2.5rem;
  padding: 1.75rem 1.75rem;
  border-radius: 10px;
  border: 1px solid rgba(154,230,180,0.18);
  background:
    radial-gradient(700px 220px at 20% 20%, rgba(154,230,180,0.12), transparent 60%),
    rgba(10,10,10,0.55);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 18px 55px rgba(0,0,0,0.35);
}

.faq-banner-left{
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-badge-icon{
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: rgba(154,230,180,0.10);
  border: 1px solid rgba(154,230,180,0.20);
}

.faq-badge-icon i{
  font-size: 1.8rem;
  color: var(--green-light);
}

.faq-banner h3{
  font-size: 1.6rem;
  margin-bottom: .25rem;
}

.faq-banner p{
  color: var(--gray);
  max-width: 680px;
}

.faq-banner-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(154,230,180,0.35);
  background: rgba(10,10,10,0.25);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.faq-banner-btn:hover{
  border-color: var(--green-light);
  color: var(--green-light);
  transform: translateY(-2px);
}

/* Heads Up box */
.faq-heads-up{
  margin-top: 2.25rem;
  padding: 1.75rem 2rem;
  border-radius: 8px;
  border: 1px solid rgba(154,230,180,0.18);
  background:
    linear-gradient(135deg, rgba(154,230,180,0.08), transparent 45%),
    rgba(10,10,10,0.55);
}
.faq-heads-up-inner{
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.faq-heads-up p{
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-heads-up strong{ color: var(--white-muted); }

/* Homepage FAQ section (not a "hero") */
.faq-home{
  background: var(--black-soft);
}

/* ✅ ONLY on homepage: make FAQ one column */
.faq-home .faq-grid{
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* =========================
   FOOTER
========================= */
.footer{
  padding: 3rem 2rem;
  background: var(--black-deep);
  border-top: 1px solid var(--black-border);
}

.footer-content{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo{
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
}
.footer-logo span{ color: var(--green-light); }

.mail-link{ font-size: 0.875rem; }

.footer-links{
  display: flex;
  gap: 2rem;
}
.footer-links a{
  color: var(--gray);
  transition: color 0.3s ease;
}
.footer-links a:hover{ color: var(--green-light); }

.footer-copyright{
  font-size: 0.875rem;
  color: var(--gray);
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeInUp{
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse{
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px){
  .about-grid{ grid-template-columns: repeat(2, 1fr); }
  .faq-grid{
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px){
  .faq-banner{
    flex-direction: column;
    text-align: center;
  }
  .faq-banner-left{
    flex-direction: column;
  }

  /* Mobile Nav Adjustments */
  .nav {
    padding: 1rem 1.5rem;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(10px);
  }

  /* Show hamburger on mobile, hide desktop elements */
  .nav-toggle {
    display: block;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  /* Mobile Menu Overlay */
  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 10001;
    padding: 0;
    margin: 0;
  }

  body.nav-open .nav-links li {
    list-style: none;
  }

  body.nav-open .nav-links a {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 600;
  }

  .about-grid{ grid-template-columns: 1fr; }
  .footer-content{
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-links{
    flex-wrap: wrap;
    justify-content: center;
  }
  .contact-card{ padding: 2rem 1.5rem; }
  .form-row{ grid-template-columns: 1fr; gap: 1.5rem; }

  .faq-trigger{ padding: 1.2rem 1.15rem; }
  .faq-panel-inner{ padding: 0 1.15rem 1.2rem; }
}
