* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;

}

@media (max-width: 768px) {
  body {
    font-size: 15px; /* Slightly smaller base text on tablets and phones */
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
}
/* Navbar Styling */
.navbar {
   background-color: rgba(0, 0, 0, 0.7); /* Dim black */
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(4px); /* optional for glass effect */
}

.navbar h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
}

.navbar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.navbar nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.navbar nav a:hover {
  color: #2da8a3
}

.book-now {
  background-color: #007bff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  color: white !important;
}
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px; /* Adjust size as needed */
  width: auto;
}
/* Mobile Navbar Enhancements */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem 1.5rem;
  }

  .navbar nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 0.8rem;
    width: 100%;
  }

  .navbar h1 {
    font-size: 1.5rem;
  }

  .book-now {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }

  .logo-img {
    height: 32px;
  }
}
/* Hide menu-toggle by default (desktop) */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Show menu-toggle only on mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 1001;
  }

  .navbar nav {
    display: none; /* Hide menu by default in mobile */
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.9);
    width: 100%;
    padding: 1rem;
  }

  .navbar nav.active {
    display: flex; /* Show menu when toggle is clicked */
  }
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }

  .navbar nav.active {
    display: flex;
  }
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }

  .navbar nav {
    display: flex !important;
  }
}


.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s ease, transform 0.8s ease;
  z-index: 0;
}

.carousel img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.prev:hover,
.next:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #ff4c60;
  box-shadow: 0 6px 20px rgba(255, 76, 96, 0.6);
  transform: translateY(-50%) scale(1.1);
}

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

.hero-overlay {
  position: absolute;
  bottom: 20%;
  left: 5%;
  color: white;
}

.hero-overlay h2 {
  font-size: 2.5rem;
  font-family: 'Bebas Neue', sans-serif;
}

.hero-overlay .btn {
  background: red;
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
  border-radius: 5px;
}

/* Social icons */
.hero-social-icons {
  position: fixed;
  top: 100px;
  right: 20px;
  display: flex;
  gap: 12px;
  z-index: 1001;
}

.hero-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-social-icons a i {
  color: white;
  font-size: 18px;
  line-height: 1;
  vertical-align: middle;
}

.hero-social-icons a:hover i {
  color: white;
}

.hero-social-icons a:nth-child(1):hover {
  background-color: #e1306c;
}
.hero-social-icons a:nth-child(2):hover {
  background-color: #25d366;
}
.hero-social-icons a:nth-child(3):hover {
  background-color: #007bff;
}

/* 📱 Responsive for Tablets & Phones */
@media screen and (max-width: 768px) {
  .hero {
    height: 70vh;
  }
  

  .hero-overlay {
    bottom: 12%;
    left: 8%;
  }

  .hero-overlay h2 {
    font-size: 1.8rem;
  }

  .prev,
  .next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .hero-social-icons {
    top: 20px;
    right: 12px;
    flex-direction: column;
    gap: 10px;
  }
}

@media screen and (max-width: 480px) {
  .hero-overlay {
    bottom: 10%;
    left: 6%;
  }

  .hero-overlay h2 {
    font-size: 1.4rem;
  }

  .hero-overlay .btn {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-social-icons {
    right: 8px;
    top: 16px;
    gap: 8px;
  }

  .hero-social-icons a {
    width: 36px;
    height: 36px;
  }
}
@media screen and (max-width: 480px) {
  .hero-social-icons {
    top: 50%;
    right: auto;
    left: 10px;
    transform: translateY(-50%);
    flex-direction: column;
  }
}
.about-section {
  display: none;
  background-image: url('./images/bgaboutedit.jpg');
  background-size: cover; /* 🔁 Use cover for better full-screen look */
  background-repeat: no-repeat;
  background-position: center;
  background-color: #000;
  padding: 6rem 2rem 4rem;
  font-family: 'Poppins', sans-serif;
  color: white;
  text-align: center;
}

.about-section .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 4rem 2rem;
  width: 100%;
}

.about-content {
  max-width: 900px;
  margin: auto;
  padding: 1rem;
}

.about-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  margin-bottom: 1rem;
  color: white;
}

.about-content p {
  font-size: 1rem;
  line-height: 2.6;
  color: #f0f0f0;
  margin-bottom: 1.2rem;
}

/* 🔽 Responsive Tweaks */
@media screen and (max-width: 768px) {
  .about-section {
    padding: 5rem 1rem 3rem;
    background-size: cover;
    background-position: top center;
  }

  .about-section .overlay {
    padding: 2.5rem 1rem;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 480px) {
  .about-section {
    padding: 4rem 1rem 2rem;
  }

  .about-content h2 {
    font-size: 1.6rem;
  }

  .about-content p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}
.activities-section {
  padding: 6rem 2rem 2rem;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  background-image: url(./images/bgedit.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  position: relative;
}

.activities-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.activities-section * {
  position: relative;
  z-index: 1;
}

.activities-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.activity-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  width: 200px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.activity-card img {
  width: 100%;
  height: 130px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  object-fit: cover;
}

.activity-card h3 {
  padding: 1rem 0;
  font-size: 1.2rem;
  color: #000;
}

/* ✅ Responsive Tweaks */
@media (max-width: 1200px) {
  .activities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .activities-section {
    padding: 4rem 1.5rem 2rem;
  }

  .activities-section h2 {
    font-size: 2rem;
  }

  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .activity-card {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .activities-section h2 {
    font-size: 1.8rem;
  }

  .activities-grid {
    grid-template-columns: 1fr;
  }

  .activity-card {
      padding: 0; /* Remove extra padding if any */
    background-color: #fff;
    border: 1px solid #ccc;
  }

  .activity-card img {
    object-fit: contain;
    height: auto;
    max-height: 200px; /* Increase max height for better image fit */
    width: 100%;
    padding: 8px 0; /* Adds breathing room */
  }

  .activity-card h3 {
    font-size: 1rem;
  }
}
.gallery-section {
  padding: 40px;
  background: #fff;
  text-align: center;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.gallery-album {
  width: 250px;
}

.gallery-album img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-album img:hover {
  transform: scale(1.05);
}

.gallery-photos {
  display: none;
  margin-top: 10px;
}

.gallery-photos img {
  width: 75px;
  height: 75px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
}

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

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

/* ✅ Responsive Gallery */
@media screen and (max-width: 768px) {
  .gallery-section {
    padding: 30px 20px;
  }

  .gallery-album {
    width: 90%;
  }

  .gallery-grid {
    gap: 20px;
  }

  .gallery-photos img {
    width: 65px;
    height: 65px;
  }
}

@media screen and (max-width: 480px) {
  .gallery-section {
    padding: 20px 10px;
  }

  .gallery-album {
    width: 100%;
  }

  .gallery-photos img {
    width: 55px;
    height: 55px;
  }
}
.booking-section {
  padding: 6rem 2rem 2rem;
  font-family: 'Segoe UI', sans-serif;
  background: #f5f7fa;
  text-align: center;
  box-sizing: border-box;
}

.booking-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1.5rem;
}

.booking-form {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.booking-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  width: 100%;
}

.laps-selection {
  flex: 1 1 45%;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  max-width: 450px;
  box-sizing: border-box;
  text-align: left;
}

.summary-section {
  flex: 1 1 45%;
  max-width: 450px;
  margin-top: 40px;
}

.summary-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.summary-box h3 {
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #222;
}

.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: #fff;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  color: #333;
}

input[type="date"],
select {
  padding: 0.5rem;
  width: 100%;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.qty-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0;
  font-weight: 500;
  gap: 10px;
}

.qty-row span {
  flex: 1;
}

.qty-row button {
  width: 32px;
  height: 32px;
  font-size: 18px;
  background-color: #2da8a3;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.qty-row button:hover {
  background-color: #0c7c78;
}

.qty-row span[id$="-count"] {
  min-width: 24px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}

.total-amount {
  font-size: 1.2rem;
  font-weight: bold;
  color: #2da8a3;
  margin-top: 1rem;
  text-align: right;
}

.submit-btn {
  margin-top: 1rem;
  padding: 12px 20px;
  background-color: #2da8a3;
  color: white;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
}

.submit-btn:hover {
  background-color:  #0c7c78;
}

/* Responsive */
@media (max-width: 768px) {
  .booking-form,
  .booking-container {
    flex-direction: column;
    align-items: center;
  }

  .laps-selection,
  .summary-section {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .qty-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .qty-row button {
    margin: 5px 0;
  }
}
.clear-btn {
  margin-top: 0.5rem;
  padding: 10px 20px;
  background-color: #dc3545;
  color: white;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
}

.clear-btn:hover {
  background-color: #c82333;
}
@media (max-width: 768px) {
  .booking-section {
    padding: 4rem 1rem 2rem;
  }

  .booking-form,
  .booking-container {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .laps-selection,
  .summary-section {
    max-width: 100%;
    width: 100%;
    margin-top: 0;
  }

  .qty-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: space-between;
  }

  .qty-row button {
    width: 40px;
    height: 40px;
  }

  .submit-btn,
  .clear-btn {
    width: 100%;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .booking-section h2 {
    font-size: 1.5rem;
  }

  .qty-row {
    flex-direction: column;
    align-items: center;
  }

  .qty-row span {
    text-align: center;
  }

  .total-amount {
    text-align: center;
  }
}
/* Footer Styling */
footer {
  background-color: rgba(0, 0, 0, 0.85); /* Dim black with transparency */
  backdrop-filter: blur(6px); /* Adds blur effect */
  color: white;
  padding: 1rem 2rem;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom i {
  font-size: 1.2rem;
  margin: 0 0.5rem;
  color: #fff;
  transition: all 0.3s ease;
}

.footer-bottom i:hover {
  transform: scale(1.1);
}


.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-contact {
  max-width: 280px;
}

.footer-contact h3 {
  font-family: 'Bebas Neue', sans-serif;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.footer-contact p {
  margin-bottom: 0.4rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 0.4rem;
  color: #2da8a3;
  font-size: 0.9rem;
}

.footer-directions {
  text-align: right;
}

.footer-directions .maps-icon {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
  color: #a82d2d;
}

.footer-directions button {
  background-color: #2da8a3;
  color: white;
  border: none;
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.75rem;
}

.footer-bottom {
  margin-top: 0.6rem;
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.8;
}

.footer-bottom i {
  font-size: 1.8rem;
  margin: 0 0.6rem;
  color: #fff;
  transition: color 0.3s,transform 0.3s;
}

.footer-bottom i:hover {
  color: #1e90ff;
  transform: scale(1.2);
}

.footer-bottom p {
  margin-top: 0.3rem;
}

.footer-contact p {
  display: flex;
  align-items: center;
}
.direction-btn {
  display: inline-block;
  background-color: #1e90ff;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: background-color 0.3s;
}

.direction-btn i {
  margin-right: 6px;
}

.direction-btn:hover {
  background-color: #0d6efd;
}
.footer-logo {
  text-align: center;
  margin-bottom: 5px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  vertical-align: middle;
}
.footer-directions .footer-logo {
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-contact, .footer-directions {
    max-width: 100%;
    text-align: center;
  }

  .footer-contact p,
  .footer-directions button {
    justify-content: center;
  }

  .footer-logo {
    margin-top: 10px;
  }

  .footer-directions .footer-logo {
    margin-top: 15px;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 700px; /* Increase width */
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  position: relative;
  color: #333;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 6px 10px;
  cursor: pointer;
}
/* Hide prev/next buttons on small screens (tablet and mobile) */
@media (max-width: 768px) {
  .prev,
  .next {
    display: none;
  }
}
