/* === Base & Globals === */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #fdfdfd;
  color: #333;
  scroll-behavior: smooth;
}

/* --- Navigation --- */
/* --- Navigation/ Header with Background Image --- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 130px;
  background: url("images/header.png") center/cover no-repeat;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);  /* subtle dark overlay for readability */
  z-index: 0;
  pointer-events: none;
}

nav img {
  height: 120px;
  position: relative;
  z-index: 1;
}

#mobile-menu-icon {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}
.nav-links a {
  color: #fff;  /* white text over a darker image looks better */
  font-weight: 700;
  font-size: 1.4rem;
  padding: 10px 16px;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.nav-links a:hover {
  background-color: rgba(40,167,69,0.8);
  color: white;
}

/* --- Mobile Menu Icon Appearance --- */
@media (max-width: 768px) {
  #mobile-menu-icon {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(0,0,0,0.6);
    position: absolute;
    top: 130px;
    left: 0;
    z-index: 999;
    padding: 10px 0;
    gap: 10px;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
    font-size: 1.3rem;
  }
}


/* --- Hero Section --- */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("images/index-main.png") center/cover fixed no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 90vw;
  padding: 20px;
}
.hero-text h1 {
  font-size: 3rem;
  word-break: break-word;
}
.hero-text p {
  font-size: 1.2rem;
}
.btn {
  background: #28a745;
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  animation: neonPulse 2s infinite;
  transition: transform 0.2s ease;
}
@keyframes neonPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(40, 167, 69, 0.5); }
  50% { box-shadow: 0 0 20px rgba(40, 167, 69, 1); }
}
.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* --- Gradient Quote Banner --- */
.gradient-quote-banner {
  height: 60px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(255, 255, 255, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b08cd2;
  font-style: italic;
  font-weight: bold;
  font-size: 1.1rem;
}

/* --- Stay Section --- */
#stays {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  background: url("images/index-main.png") center/cover fixed no-repeat;
}
#stays::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.6);
}
.stays-header {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}
.stays-header h2 {
  font-size: 3rem;
  color: #2c3e50;
  margin: 0;
}

/* --- Stay Cards --- */
.stay-options {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.stay-choice {
  width: 360px;
  background: #f8f8f8;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stay-choice:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}
.stay-choice img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.stay-choice:hover img {
  transform: scale(1.07);
}
.stay-choice h3 {
  padding: 15px;
  font-size: 1.6rem;
  transition: color 0.3s ease;
}
.stay-choice:hover h3 {
  color: #28a745;
}

/* --- Footer with Custom Image --- */
footer {
  position: relative;
  background: url("images/footer.png") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  font-size: 1rem;
  border-top: 2px solid rgba(255,255,255,0.2);
  z-index: 1;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 0;
  pointer-events: none;
}

footer * {
  position: relative;
  z-index: 1;
}

.footer-links {
  margin-top: 10px;
  font-size: 0.9rem;
}

.footer-links a {
  color: #28a745;
  text-decoration: none;
  margin: 0 10px;
}

.footer-links a:hover {
  color: #218838;
}

.footer-socials {
  margin-top: 15px;
}

.footer-socials a img {
  width: 28px;
  height: 28px;
  margin: 0 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  filter: none; /* Show the original color */
}

.footer-socials a:hover img {
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.footer-quote {
  margin-top: 20px;
  font-style: italic;
  opacity: 0.9;
  font-size: 1.1rem;
}

/* --- Scroll-To-Top Button --- */
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #28a745;
  color: white;
  font-size: 24px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
#scrollTopBtn:hover {
  background: #218838;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  footer {
    padding: 10px 5px;
  }
}


/* === Glamping Page Sections === */

/* === Glamping Page Hero Section === */
.hero.small-hero {
  height: 70vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero.small-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.hero.small-hero .hero-text {
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}
.hero.small-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}
.hero.small-hero p {
  font-size: 1.2rem;
}

/* === Content Section Containers === */
.intro-section, .food-menu, .activities, .info-policies {
  padding: 60px 20px;
  text-align: center;
}
.intro-section .container,
.food-menu .container,
.activities .container,
.info-policies .container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* === Headings & Subheadings === */
.intro-section h2,
.food-menu h2,
.activities h2,
.info-policies h2,
.nearby-places h2,
.transportation-info h2  {
  font-size: 2.4rem;
  color: #1a1a1a;
  margin-bottom: 25px;
  border-bottom: 3px solid #28a745;
  display: inline-block;
  padding-bottom: 6px;
  font-weight: 700;
}
.intro-section h3,
.food-menu h3,
.activities h3,
.info-policies h3 {
  font-size: 1.6rem;
  color: #28a745;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* === Paragraphs & Lists === */
.intro-section p,
.food-menu p,
.activities p,
.info-policies p,
.container p,
.container li {
  font-size: 1.15rem;
  font-style: inherit;
  color: #1c1c1c;
  line-height: 1.8;
  font-weight: 500;
  text-shadow: 0.5px 0.5px 2px rgba(255,255,255,0.5);
}
ul {
  padding-left: 25px;
  text-align: left;
}
.intro-section ul li,
.activities ul li,
.info-policies ul li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.activities ul li:last-child {
  margin-bottom: 20px;
}


/* === Meal Section === */
.food-menu .meal-category {
  margin-bottom: 25px;
}
.food-menu .meal-category h3 {
  color: #28a745;
}
.food-menu .meal-category p{
    font-family: 'Poppins', sans-serif;
}

/* === Glowing WhatsApp Button === */
.hero-text .btn.whatsapp-glow {
  background: #25D366;
  animation: neonPulse 2s infinite;
  padding: 12px 30px;
  border: none;
  color: #fff;
  font-size: 1rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.hero-text .btn.whatsapp-glow:hover {
  background: #1ebc59;
  transform: scale(1.05);
}

/* === Sticky Booking Layout & Gallery === */
.glamp-layout {
  display: flex;
  gap: 20px;
  margin: 40px 20px;
  padding: 40px 20px;
  position: relative;
  
  z-index: 1;
}
.glamp-gallery-sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: sticky;
  top: 150px;
  max-height: 80vh;
  overflow-y: auto;
}
.glamp-gallery-sidebar img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.glamp-main-content {
  flex: 3;
}
.booking-sidebar {
  flex: 1;
  position: sticky;
  top: 150px;
  align-self: flex-start;
}
.booking-box {
  background: #fff;
  border: 2px solid #28a745;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.booking-box h3 {
  margin-top: 0;
  color: #28a745;
}
.booking-box label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}
.booking-box input,
.booking-box select {
  width: 100%;
  padding: 8px;
  margin-top: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.booking-box button {
  margin-top: 20px;
}
.price-result {
  margin-top: 15px;
  font-weight: bold;
}

/* === Responsive Tweaks === */
@media (max-width: 768px) {
  .hero.small-hero h1 {
    font-size: 2.2rem;
  }
  .hero.small-hero p {
    font-size: 1rem;
  }

  .glamp-layout {
    flex-direction: column;
  }

  .glamp-gallery-sidebar {
    flex-direction: row;
    overflow-x: auto;
    max-height: none;
    position: static;
  }

  .glamp-gallery-sidebar img {
    width: 150px;
    flex-shrink: 0;
  }

  .booking-sidebar {
    position: static;
    margin-top: 30px;
  }

  .intro-section h2,
  .food-menu h2,
  .activities h2,
  .info-policies h2 {
    font-size: 2rem;
  }

  .intro-section h3,
  .food-menu h3,
  .activities h3,
  .info-policies h3 {
    font-size: 1.3rem;
  }

  .intro-section p,
  .food-menu p,
  .activities p,
  .info-policies p {
    font-size: 1rem;
  }
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 10px;
  text-align: left;
  color: #2c3e50;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .facility-grid {
    grid-template-columns: 1fr;
  }
}

/* === Nearby Places & Transportation Sections === */
.nearby-places,
.transportation-info {
  padding: 60px 20px;
  text-align: center;
}
.nearby-places .container,
.transportation-info .container {
  max-width: 900px;
  margin: 0 auto;
  background-color: rgba(255,255,255,0.9);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
  margin-top: 20px;
  font-size: 1.1rem;
  color: #1a1a1a;
}
.places-grid div {
  text-align: left;
}
.places-grid strong {
  color: #28a745;
}

.transportation-info h2 {
  margin-bottom: 20px;
}
.transportation-info p,
.transportation-info ul {
  font-size: 1.1rem;
  color: #1c1c1c;
  line-height: 1.6;
  margin: 10px 0;
}
.transportation-info ul {
  list-style: disc inside;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive layout adjustments */
@media (max-width: 768px) {
  .places-grid {
    grid-template-columns: 1fr;
  }
}

#glampForm label {
  display: block;
  margin-top: 12px;
  font-weight: 600;
}
#glampForm input,
#glampForm button {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
#glampForm button {
  background: #28a745;
  color: white;
  font-size: 1.1rem;
  margin-top: 20px;
  cursor: pointer;
  transition: background 0.3s;
}
#glampForm button:hover {
  background: #218838;
}
.price-result {
  margin-top: 15px;
  font-weight: 700;
  font-size: 1.2rem;
  color: #333;
}


/* === Camping Page Background Layout === */


.camp-layout {
  display: flex;
  gap: 20px;
  margin: 40px 20px;
  position: relative;
  padding: 40px 20px;
  
  z-index: 1;
}


.camp-gallery-sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: sticky;
  top: 150px;
  max-height: 80vh;
  overflow-y: auto;
}
.camp-gallery-sidebar img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.camp-main-content {
  flex: 3;
}


#campForm label {
  display: block;
  margin-top: 12px;
  font-weight: 600;
}
#campForm input,
#campForm button {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
#campForm button {
  background: #28a745;
  color: white;
  font-size: 1.1rem;
  margin-top: 20px;
  cursor: pointer;
  transition: background 0.3s;
}
#campForm button:hover {
  background: #218838;
}
.price-result {
  margin-top: 15px;
  font-weight: 700;
  font-size: 1.2rem;
  color: #333;
}

/* === Responsive Tweaks === */
@media (max-width: 768px) {
  
  .camp-layout {
    flex-direction: column;
  }

  .camp-gallery-sidebar {
    flex-direction: row;
    overflow-x: auto;
    max-height: none;
    position: static;
  }

  .camp-gallery-sidebar img {
    width: 150px;
    flex-shrink: 0;
  }

}


/* --- Contact Page Styles --- */
/* === Contact Page === */

/* --- Contact Section Layout --- */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  background-color: #f9f9f9;
}

/* --- Contact Info --- */
.contact-info {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
}
.contact-info h2 {
  font-size: 1.6rem;
  color: #2c3e50;
  margin-bottom: 10px;
}
.contact-info ul {
  padding: 0;
  list-style: none;
}
.contact-info ul li {
  margin-bottom: 10px;
}
.contact-info a {
  color: #28a745;
  font-weight: bold;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}

/* --- Contact Form --- */
.contact-form-section {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}
.contact-form-section h2 {
  font-size: 1.6rem;
  color: #2c3e50;
  margin-bottom: 15px;
}
.contact-form-section form {
  display: flex;
  flex-direction: column;
}
.contact-form-section input,
.contact-form-section textarea {
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}
.contact-form-section button {
  background-color: #28a745;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-form-section button:hover {
  background-color: #218838;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    gap: 30px;
  }
}


/* --- FAQ Section --- */
.faq-section {
  padding: 60px 20px;
  background-color: #fdfdfd;
}
.faq-section .container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 30px;
}
.faq-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #2c3e50;
  position: relative;
  padding-left: 20px;
}
.faq-item h3::before {
  content: "❓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5rem;
}
.faq-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  padding-left: 20px;
}
@media (max-width: 768px) {
  .faq-item h3 {
    font-size: 1.3rem;
  }
  .faq-item p {
    font-size: 0.95rem;
  }
}

/* === Location Page Styling === */
/* === Location Page Styling === */
.location-info {
  background-color: #fdfdfd;
  padding: 60px 20px;
  text-align: center;
}
.location-info .container {
  max-width: 800px;
  margin: auto;
}
.location-info h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 10px;
}
.location-info p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #444;
}
.location-info h3 {
  font-size: 1.4rem;
  color: #28a745;
  margin: 30px 0 15px;
}
.map-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.map-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.how-to-reach {
  text-align: left;
  list-style: none;
  padding: 0;
  margin-top: 10px;
}
.how-to-reach li {
  margin-bottom: 10px;
  font-size: 1rem;
  padding-left: 20px;
  position: relative;
}
.how-to-reach li::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: #28a745;
}


/* === About Page Styling === */
.about-hero {
  background: url("images/about.png") center/cover no-repeat fixed;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.about-hero-text {
  position: relative;
  text-align: center;
  padding: 20px;
}
.about-hero-text h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.about-hero-text p {
  font-size: 1.2rem;
}

.about-content {
  padding: 60px 20px;
  background: #f5f8fb;
}
.about-content blockquote {
  font-style: italic;
  color: #555;
  border-left: 4px solid #28a745;
  padding: 10px 20px;
  margin: 20px 0;
  background: #fff;
}
.about-list {
  list-style: disc inside;
  margin: 20px 0;
}
.about-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}


/* === Gallery Page === */

/* Hero Section */
.gallery-hero {
  background: url("images/gallery.png") center/cover fixed no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
}
.gallery-hero::before {
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.5);
}
.gallery-hero-text {
  position:relative;
  text-align:center;
  padding:20px;
}
.gallery-hero-text h1 {
  font-size:3rem;
  margin-bottom:0.5rem;
}
.gallery-hero-text p {
  font-size:1.2rem;
}

/* Photo Grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap:20px;
  margin: 40px auto;
}
.photo-item {
  overflow: hidden;
  border-radius:8px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
}
.photo-item img {
  width:100%;
  height:auto;
  object-fit:cover;
  transition: transform 0.4s ease;
}
.photo-item img:hover {
  transform: scale(1.05);
}

/* Lightbox Overlay */
.lightbox-overlay {
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.9);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:2000;
}
.lightbox-overlay.active {
  display:flex;
}
.lightbox-overlay img {
  max-width:90vw;
  max-height:90vh;
  object-fit:contain;
  border-radius:8px;
}
.lightbox-close {
  position:absolute;
  top:30px;
  right:40px;
  font-size:2.5rem;
  color:#fff;
  cursor:pointer;
  z-index:2100;
}


