:root{
  --bg:#f7f8fb;
  --card:#ffffff;
  --muted:#7b7b86;
  --accent:#0b94a8; /* teal-ish */
  --accent-2:#ffcc00; /* highlight */
  --shadow: 0 8px 24px rgba(12,15,20,0.08);
  --radius:12px;
  --container:1100px;
  --glass: rgba(255,255,255,0.6);
}

/* GLOBAL */
*{box-sizing:border-box}
html,body{height:100%}
body{
  font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:var(--bg);
  color:#222;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
.container{width:92%;max-width:var(--container);margin:0 auto}

/* NAV */
.nav-header{
  background:linear-gradient(90deg,#062a30 0%, #0b7b87 100%);
  color:#fff;
  position:sticky;
  top:0;
  z-index:800;
  box-shadow: 0 6px 18px rgba(4,8,10,0.18);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;padding:0.85rem 0}
.brand{font-weight:700;font-size:1.2rem;color:#fff;text-decoration:none}
.nav-links{display:flex;gap:1rem;align-items:center}
.nav-links a{color:#eaf6f7;text-decoration:none;padding:0.6rem 0.8rem;border-radius:8px;font-weight:600}
.nav-links a:hover{background:rgba(255,255,255,0.06)}
.btn-link{background:var(--accent-2);color:#111;padding:0.5rem 0.8rem;border-radius:8px}

/* HAMBURGER / DRAWER */
.hamburger{
  display:none;
  background:transparent;
  border:0;color:#fff;
  font-size:1.6rem;
  cursor:pointer}
.drawer{
  position:fixed;
  right:-320px;top:0;
  height:100%;width:320px;
  background:#061216;
  color:#fff;
  padding:1.5rem;
  box-shadow:-12px 0 40px rgba(2,8,10,0.6);
  transition:right .36s cubic-bezier(.2,.9,.2,1);
  z-index:900;
}
.drawer.open{right:0}
.drawer-close{background:transparent;border:0;color:#fff;font-size:1.4rem;position:absolute;right:14px;top:12px;cursor:pointer}
.drawer-links{display:flex;flex-direction:column;gap:1rem;margin-top:2rem}
.drawer-links a{color:#e6f7f7;text-decoration:none;padding:0.6rem 0.6rem;border-radius:8px}
.drawer-website{margin-top:1rem;background:var(--accent-2);color:#111;padding:0.6rem;border-radius:8px;text-align:center}

/* HERO */
.hero{height:56vh;background-size:cover;background-position:center;display:flex;align-items:center}
.hero-overlay{padding:3rem 2rem;background:linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.15));color:#fff;border-radius:12px}
.hero h1{font-size:2rem;margin-bottom:.5rem}
.hero p{opacity:0.95;margin-bottom:1rem}
.hero-cta{display:flex;gap:.75rem}

/* BUTTONS */
.btn{padding:.6rem .9rem;border-radius:8px;border:0;cursor:pointer;font-weight:700}
.btn.primary{background:var(--accent);color:white}
.btn.ghost{background:transparent;border:1px solid rgba(0,0,0,0.06);color:inherit}

/* SECTION */
.section{padding:3rem 0}
.lead{color:var(--muted);margin-bottom:1rem}

/* ABOUT GRID */
.about-grid{display:grid;grid-template-columns:1fr 420px;gap:1.5rem;align-items:start}
.checklist{list-style:disc;padding-left:1.2rem;color:#333;margin:1rem 0}

/* FEATURE CARDS */
.about-cards{display:grid;grid-template-columns:repeat(1,1fr);gap:1rem}
.feature-card{display:flex;gap:1rem;background:var(--card);padding:1rem;border-radius:12px;box-shadow:var(--shadow);align-items:center}
.feature-card img{width:44px;height:44px;opacity:0.9}
.feature-card h3{margin:0;font-size:1rem}

/* COTTAGE CARDS */
.cards-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem}
.cottage-card{background:var(--card);border-radius:12px;overflow:hidden;box-shadow:var(--shadow);display:flex;flex-direction:column;transition:transform .18s}
.cottage-card:hover{transform:translateY(-6px)}
.card-media{height:180px;overflow:hidden}
.card-media img{width:100%;height:100%;object-fit:cover;display:block}
.card-body{padding:1rem;flex:1;display:flex;flex-direction:column;gap:.6rem}
.price{color:var(--accent);font-weight:800}
.card-actions{margin-top:auto;display:flex;gap:.5rem;flex-wrap:wrap}

/* PACKAGES */
.package-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.package{background:var(--card);padding:1rem;border-radius:12px;box-shadow:var(--shadow);text-align:center}
.package.popular{border:2px solid var(--accent)}

/* GALLERY */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px}
.gallery-item img{width:100%;height:180px;object-fit:cover;border-radius:8px;cursor:pointer;display:block;box-shadow:0 6px 18px rgba(0,0,0,0.08)}

/* CONTACT */
.contact-grid{display:grid;grid-template-columns:380px 1fr;gap:1rem;align-items:start}
.contact-card{background:var(--card);padding:1rem;border-radius:12px;box-shadow:var(--shadow)}
.map-box{background:#e9eef0;padding:1rem;border-radius:10px;text-align:center;color:#555}

/* FOOTER */
.footer{background:#061216;color:#fff;padding:1.2rem 0;margin-top:2rem}
.footer-inner{display:flex;justify-content:space-between;align-items:center}

/* FLOATING FABS */
.fab-wrapper{position:fixed;right:18px;bottom:20px;display:flex;flex-direction:column;gap:10px;z-index:999}
.fab{width:52px;height:52px;border-radius:999px;display:flex;align-items:center;justify-content:center;background:var(--card);box-shadow:var(--shadow);border:0;cursor:pointer}
.fab img{width:24px;height:24px}
.fab.whats{background:#25D366}
.fab.call{background:#1e88e5}
.fab.book{background:var(--accent-2)}

/* MODALS */
.modal{position:fixed;inset:0;display:none;align-items:center;justify-content:center;background:rgba(4,6,8,0.45);z-index:1200;padding:20px}
.modal[aria-hidden="false"]{display:flex}
.modal-panel{background:var(--card);width:100%;max-width:720px;border-radius:12px;padding:1rem 1.2rem;position:relative;box-shadow:0 18px 60px rgba(0,0,0,0.3)}
.modal-close{position:absolute;right:14px;top:12px;border:0;background:transparent;font-size:1.2rem;cursor:pointer}
.modal-panel label{display:block;margin:0.6rem 0}
.modal-panel input,.modal-panel select,.modal-panel textarea{width:100%;padding:0.6rem;border-radius:8px;border:1px solid #e6e6e9}

/* DETAIL PANEL */
.detail-panel .detail-content{display:flex;gap:1rem;flex-wrap:wrap}
.detail-panel img{width:320px;height:220px;object-fit:cover;border-radius:8px}
.detail-info{flex:1}

/* LIGHTBOX */
.lightbox{position:fixed;inset:0;display:none;align-items:center;justify-content:center;background:rgba(0,0,0,0.86);z-index:1300}
.lightbox[aria-hidden="false"]{display:flex}
.lb-close,.lb-prev,.lb-next{position:absolute;background:transparent;border:0;color:#fff;font-size:2rem;cursor:pointer;z-index:1400}
.lb-close{right:18px;top:18px}
.lb-prev{left:10px;top:50%;transform:translateY(-50%)}
.lb-next{right:10px;top:50%;transform:translateY(-50%)}
#lb-img{max-width:90%;max-height:90%;border-radius:10px;object-fit:contain}

/* SMALLER SCREENS */
@media(max-width:1024px){
  .cards-grid{grid-template-columns:repeat(2,1fr)}
  .gallery-grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:768px){
  .nav-links{display:none}
  .hamburger{display:block}
  .about-grid{grid-template-columns:1fr;gap:1rem}
  .cards-grid{grid-template-columns:1fr}
  .package-cards{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
  .hero{height:46vh}
  .hero-overlay{padding:1.4rem;border-radius:10px}
}
@media(max-width:420px){
  .gallery-grid{grid-template-columns:1fr}
  .drawer{width:100%;right:-100%}
  .drawer.open{right:0}
}

















/* Video Section Styling */
#videos {
  margin: 4rem auto;
  text-align: center;
}

#videos h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

#videos .lead {
  color: #555;
  margin-bottom: 2rem;
}

.video-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.video-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cottage-video {
  width: 100%;
  height: auto;
  display: block;
}

.caption {
  padding: 0.5rem;
  font-size: 0.9rem;
  color: #333;
}

/* Mobile: Horizontal scroll-snap */
@media (max-width: 768px) {
  .video-rail {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
  }

  .video-card {
    flex: 0 0 80%;
    scroll-snap-align: center;
  }
}
