/* --------------------
   Basic Reset & Base
   -------------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html,body { height: 100%; }
body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #0f1724;
  background: linear-gradient(180deg,#f7fbf9 0%, #eef6f4 100%);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
  -webkit-tap-highlight-color: transparent;
}

/* NAVBAR */
.site-header { position: sticky; top: 0; z-index: 1200; }
.navbar { background: rgba(255,255,255,0.06); backdrop-filter: blur(6px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-inner { max-width:1400px; margin:0 auto; padding:12px 20px; display:flex; align-items:center; gap:16px; justify-content:space-between; }
.brand { font-weight:700; color:#123; text-decoration:none; font-size:18px; }
.nav-links { display:flex; gap:14px; align-items:center; }
.nav-links a { color:#073; text-decoration:none; padding:8px 10px; border-radius:8px; font-weight:600; }
.nav-links a[aria-current="page"], .nav-links a:hover { background: rgba(42,93,52,0.12); color:#0b3b1f; }

/* hamburger (mobile) */
.hamburger { display:none; background:transparent; border:0; cursor:pointer; padding:6px; }
.hamburger span { display:block; width:22px; height:2px; background:#063; margin:4px 0; border-radius:2px; }

/* HERO */
.hero {
  height: 78vh;
  min-height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  background-image: url('hero.jpg');
  background-size:cover;
  background-position:center;
  color:white;
  text-align:center;
}
.hero-overlay { position:absolute; inset:0; background: linear-gradient(180deg, rgba(6,20,12,0.45), rgba(3,8,6,0.55)); }
.hero-inner { position:relative; z-index:2; padding:20px; max-width:980px; }
.hero h1 { font-size:clamp(28px,5vw,52px); margin-bottom:12px; letter-spacing:0.4px; }
.hero p { font-size:clamp(14px,1.5vw,18px); margin-bottom:18px; opacity:0.95; }
.cta { display:inline-block; background:#2a5d34; color:white; padding:10px 16px; border-radius:10px; text-decoration:none; font-weight:700; }
/* HERO with background video */
.video-hero {
  position: relative;
  overflow: hidden;
  height: 85vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.video-hero video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.6));
  z-index: 1;
}

.video-hero .hero-inner {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 900px;
}

.video-hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  margin-bottom: 12px;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

.video-hero p {
  font-size: clamp(14px, 1.5vw, 18px);
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 1.3s ease forwards;
}

.video-hero .cta {
  animation: fadeUp 1.6s ease forwards;
  opacity: 0;
}

/* Smooth text appear */
@keyframes fadeUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}


/* SECTIONS */
.section { padding:48px 20px; max-width:1200px; margin:0 auto; }
.section h2 { font-size:22px; margin-bottom:14px; color:#083; text-align:left; }

/* GLASS PANEL */
.glass-panel { background: rgba(255,255,255,0.12); border-radius:14px; padding:20px; border:1px solid rgba(255,255,255,0.08); box-shadow: 0 6px 18px rgba(10,20,20,0.06); }

/* GRID CARDS (Attractions / Gallery preview) */
.grid-cards {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap:18px;
  margin-top:16px;
}
.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border-radius:14px;
  padding:12px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 24px rgba(6,20,12,0.06);
  transition: transform .32s ease, box-shadow .32s ease;
  overflow:hidden;
}
.glass-card:hover { transform:translateY(-8px); box-shadow:0 14px 40px rgba(6,20,12,0.12); }
.glass-card img { width:100%; height:170px; object-fit:cover; border-radius:10px; display:block; }
.glass-card h3 { font-size:16px; margin:10px 0 6px; color:#082; }
.glass-card p { font-size:14px; color:#143; }

/* NEWS SLIDER (index) */
.news-header { display:flex; justify-content:space-between; align-items:center; gap:12px; margin-bottom:10px; }
.view-more-btn { background:transparent; border:1px solid rgba(10,40,20,0.09); padding:8px 12px; border-radius:8px; color:#083; text-decoration:none; font-weight:600; }
.news-slider-wrapper { overflow:hidden; width:100%; }
.news-slider { display:flex; gap:16px; transition: transform .6s cubic-bezier(.2,.9,.2,1); will-change:transform; padding-bottom:6px; }
.news-card { min-width:260px; max-width:260px; position:relative; }
.badge { position:absolute; top:12px; right:12px; background:#e53935; color:white; padding:6px 8px; border-radius:6px; font-weight:700; font-size:12px; z-index:5; }

/* GALLERY PREVIEW */
.gallery-preview { margin-top:12px; }
.gallery-preview .glass-card img { height:160px; }

/* GALLERY PAGE (square thumbnails) */
.gallery-grid {
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:12px;
}
.gallery-grid img.gallery-thumb {
  width:100%; aspect-ratio:1 / 1; object-fit:cover; border-radius:8px; display:block; cursor:pointer; transition: transform .24s ease;
}
.gallery-grid img.gallery-thumb:hover { transform:scale(1.03); }

/* NEWS PAGE grid (9:16 images) */
.news-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap:18px; }

/* MODAL (news & photos) */
.modal, .photo-modal {
  display:none;
  position:fixed;
  inset:0;
  background: rgba(0,0,0,0.7);
  align-items:center;
  justify-content:center;
  z-index:2000;
  padding:20px;
}
.modal-content, .photo-modal .modal-content { max-width:900px; width:100%; padding:18px; position:relative; border-radius:12px; }
.modal-content img { width:100%; height:auto; border-radius:10px; margin-bottom:12px; }
.modal-close, .photo-close { position:absolute; top:12px; right:16px; font-size:28px; background:transparent; color:white; border:0; cursor:pointer; }

/* Gallery lightbox nav arrows */
.photo-nav { position:absolute; top:50%; transform:translateY(-50%); background: rgba(0,0,0,0.35); color:white; border:0; font-size:36px; width:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center; cursor:pointer; }
.photo-nav.left { left:18px; } .photo-nav.right { right:18px; }

/* CONTACT BIG BOX */
.glass-box { background: rgba(255,255,255,0.08); border-radius:14px; padding:28px; border:1px solid rgba(255,255,255,0.05); box-shadow:0 10px 30px rgba(6,20,12,0.06); }
.contact-big-box { display:flex; flex-direction:column; gap:20px; align-items:center; }
.contact-row h2 { margin-bottom:8px; }
.contact-btn { background:#2a5d34; color:white; padding:10px 14px; border-radius:8px; text-decoration:none; font-weight:700; }

/* FOOTER */
.site-footer { text-align:center; padding:20px; margin-top:30px; color:#075; }

/* FADE-UP ANIMATION */
.fade-up { opacity:0; transform:translateY(18px); transition: all .8s cubic-bezier(.2,.9,.2,1); }
.fade-up.visible { opacity:1; transform:none; }
/* CONTACT SECTION */
.contact-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.contact-card {
  flex: 1 1 300px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
}

.contact-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #084c2b;
}

.contact-info p {
  font-size: 15px;
  color: #124d31;
  margin-bottom: 15px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: #1eb55f;
  transform: translateY(-2px);
}

.whatsapp-btn img {
  width: 20px;
  height: 20px;
}

/* Responsive Contact Layout */
@media (max-width: 800px) {
  .contact-container {
    flex-direction: column;
    gap: 20px;
    padding: 30px;
  }
}


/* RESPONSIVE */
@media(max-width:1100px) { .gallery-grid { grid-template-columns: repeat(4,1fr); } }
@media(max-width:900px) { .gallery-grid { grid-template-columns: repeat(3,1fr); } .grid-cards { grid-template-columns: repeat(2,1fr); } .nav-links { display:none; } .hamburger { display:block; } }
@media(max-width:600px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } .glass-card img { height:140px; } .news-card { min-width:220px; } .hero { height:60vh; min-height:360px; } }
@media(max-width:420px) { .gallery-grid { grid-template-columns: 1fr; } .grid-cards { gap:12px; } .nav-inner { padding:10px; } }
@media(max-width:600px){
  .video-hero { height: 70vh; }
  .video-hero video { object-position: center; }
  .hero-inner h1 { font-size: 28px; }
}
/* MAP SECTION */
.map-box {
  margin-top: 16px;
  padding: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

#map h2 {
  color: #0a6628;
  margin-bottom: 10px;
}
/* ======================
       FOOTER STYLES
====================== */
.site-footer {
  background: rgba(255, 255, 255, 0.06);
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 800px;
  margin: 0 auto 20px;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(20px);
}

.footer-content h2 {
  color: #0a6628;
  font-size: 22px;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2a5d34;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(42, 93, 52, 0.3);
}

.footer-btn:hover {
  background: #1d4927;
  transform: translateY(-2px);
}

.footer-btn img {
  width: 20px;
  height: 20px;
}

.review-box {
  margin-top: 25px;
}

.review-box h3 {
  color: #0a6628;
  margin-bottom: 10px;
}

.glass-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  resize: none;
  font-family: inherit;
  font-size: 15px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
}

.submit-btn {
  background: #2a5d34;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
  background: #1e4629;
  transform: translateY(-2px);
}

.review-msg {
  margin-top: 10px;
  font-size: 14px;
  color: #064b24;
}

.footer-copy {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 10px;
  color: #0a6628;
}
/* CONTACT PAGE */
.contact-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.contact-card {
  flex: 1 1 300px;
  max-width: 340px;
  padding: 25px;
  text-align: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  backdrop-filter: blur(20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.contact-card h3 {
  color: #0a6628;
  font-size: 20px;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 15px;
  color: #333;
  opacity: 0.8;
  margin-bottom: 14px;
}

.contact-btn {
  display: inline-block;
  background: #2a5d34;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #1e4629;
  transform: translateY(-2px);
}

.contact-btn i {
  margin-right: 6px;
}
.footer-btn i {
  margin-right: 8px;
  font-size: 18px;
}
