/* ------------------
 Global Styles
------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #ffffff;
  color: #333;
  line-height: 1.6;
}

/* ------------------
 Navbar
------------------ */
nav {
  background:transparent;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
   backdrop-filter: blur(10px);          
  -webkit-backdrop-filter: blur(10px);  
      
}

.logo a {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  color: #fdcc2c;
  transition: color 0.3s ease;
}

.logo a:hover {
  color: #000000;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  color: #000000;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a:hover {
  background: #ffd54f;
  color: #000;
  transform: translateY(-3px);
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #000000;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: rotate(90deg);
}

.herog {
  background: url('gallery/main.webp') no-repeat center/cover;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.herog::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.herog h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  animation: fadeInDown 1s ease;
  color: #ffd54f;
}

.herog p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  animation: fadeInUp 1.2s ease;
}




/* Mobile Menu */
@media (max-width: 980px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #ffffff;
    width: 220px;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: flex-start;
    transition: max-height 0.5s ease-in-out;
    border-left: 2px solid #ffd54f;
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    max-height: 400px;
    animation: slideDown 0.5s ease forwards;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 20px;
  }

  .menu-toggle {
    display: block;
  }
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gallery Slidebar */


.galleryslidebar h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffd54f;
}

.galleryslidebar p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #666;
  font-size: 18px;
}

/* Full-width slider */
.slider-container {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.slider {
  display: flex;
  width: 100%;
  transition: transform 0.6s ease-in-out;
}

.slider img {
  width: 100vw;     
  height: auto;       
  max-height: 90vh;     
  object-fit: cover;    
  flex-shrink: 0;
}


/* Navigation arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: background 0.3s ease;
}

.prev:hover, .next:hover {
  background: rgba(0,0,0,0.9);
}

.prev {
  left: 20px;
}
.next {
  right: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .slider img {
    height: 300px;
  }
}


/* ------------------
 Description Section
------------------ */
.description {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.description h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

.description p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #555;
}

/* ------------------
 Testimonials Section
------------------ */
.testimonials {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
}

.testimonial-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.testimonial p {
  font-style: italic;
  color: #444;
  margin-bottom: 15px;
}

.testimonial h4 {
  color: #000;
  font-weight: 600;
}

/* ------------------
 Footer
------------------ */
footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #fff;
  margin-top: 40px;
}

footer p {
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}


/* about page css  */
/* ------------------
 Hero Section
------------------ */
.hero {
  background: url('gallery/gokarna-forest-resort-scaled.jpg') no-repeat center/cover;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  animation: fadeInDown 1s ease;
  color: #ffd54f;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  animation: fadeInUp 1.2s ease;
}

.herof {
  background: url('gallery/diningbar.webp') no-repeat center/cover;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.herof::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.herof-content {
  position: relative;
  z-index: 2;
}

.herof h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  animation: fadeInDown 1s ease;
  color: #ffd54f;
}

.herof p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  animation: fadeInUp 1.2s ease;
}

.hero .btn {
  background: #ffd54f;
  color: #000;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero .btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

/* ------------------
 Description Section
------------------ */
.description {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.description h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #222;
}

.description p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

/* ------------------
 Services Section
------------------ */
.services {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
}

.service-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.service-cards .card {
  background: #f4f4f4;
  padding: 25px;
  border-radius: 12px;
  width: 250px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-cards .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.service-cards .card i {
  font-size: 2rem;
  color: #ffd54f;
  margin-bottom: 15px;
}

.service-cards .card h3 {
  margin-bottom: 12px;
  color: #222;
}

.service-cards .card p {
  font-size: 1rem;
  color: #555;
}

/* ------------------
 Rooms Showcase
------------------ */
.rooms-showcase {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.rooms-showcase h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
}

.rooms-showcase p
{
  padding:5px;
}

.room-gallery {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.room-gallery .room {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 300px;
}

.room-gallery .room:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.room-gallery .room img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.room-gallery .room h3 {
  padding: 15px;
  color: #222;
}

/* ------------------
 Testimonials
------------------ */
.testimonials {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
}

.testimonial-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.testimonial {
  background: #f4f4f4;
  padding: 25px;
  border-radius: 12px;
  max-width: 300px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 15px;
  color: #555;
}

.testimonial h4 {
  font-weight: 600;
  color: #222;
}

/* ------------------
 Call to Action (CTA)
------------------ */
.cta {
  padding: 60px 20px;
  background: #ffd54f;
  text-align: center;
  color: #000;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.cta .btn {
  background: #000;
  color: #ffd54f;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta .btn:hover {
  background: #222;
  color: #fff;
  transform: translateY(-3px);
}

/* ------------------
 Animations
------------------ */
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ------------------
 Responsive
------------------ */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .service-cards, .room-gallery, .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }
}


.activities {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.activities h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.activity {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.activity h3 {
  margin: 15px 0 10px;
  font-size: 1.2rem;
  color: #000;
}

.activity p {
  padding: 0 15px 20px;
  color: #555;
  font-size: 0.95rem;
}

.activity:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.herog {
  background: url('gallery/main.webp') no-repeat center/cover;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.herog::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.herog * {
  position: relative;
  z-index: 2;
}

/* Gallery Slider */
.gallery-slider {
  position: relative;
  width: 100%;
  margin: 40px 0;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}

.slider img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  flex-shrink: 0;
}

/* Slider arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.5rem;
  z-index: 10;
  transition: background 0.3s ease;
}

.prev:hover, .next:hover {
  background: rgba(0,0,0,0.8);
}

.prev { left: 20px; }
.next { right: 20px; }

/* Image Grid Gallery */
.image-gallery {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.image-gallery h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #fff;
}

/* Lightbox Styles */
.lightbox {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.lightbox-img {
  width: 800px;
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.lightbox .close:hover {
  color: #ffd54f;
}
.nav-links a.active {
  background: #ffd54f;
  color: #000;
}

