/* ================================
       RESET
    ================================ */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      color: #222;
      line-height: 1.6;
    }

    /* ================================
       TOP BOOKING BAR
    ================================ */
    .top-bar {
      background-color: #90d890;
      text-align: center;
      padding: 8px;
      font-size: 16px;
      font-weight: 600;
      color: #000;
    }

    /* ================================
       MAIN HEADER
    ================================ */
    .main-header {
      background-color: #1a1a1a;
      padding: 10px 0;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: auto;
      padding: 0 20px;
    }

    .navbar ul {
      list-style: none;
      display: flex;
      gap: 25px;
    }

    .navbar ul li a {
      text-decoration: none;
      color: #fff;
      font-size: 18px;
      font-weight: 600;
      transition: 0.3s;
    }

    .navbar ul li a:hover,
    .navbar ul li a.active {
      color: #90d890;
      border-bottom: 2px solid #fff;
    }

    .logo img {
      height: 70px;
      width: auto;
    }

    @media (max-width: 768px) {
      .navbar {
        flex-direction: column;
        gap: 15px;
      }
      .navbar ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
      }
      .logo img {
        height: 60px;
      }
    }

    /* ================================
       HERO SECTION
    ================================ */
    .hero {
      background: url("https://i.ibb.co/VWgsTbth/Whats-App-Image-2025-08-18-at-15-56-26-d5c8da5c.jpg") center/cover no-repeat;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      position: relative;
    }

    .hero::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
      padding: 20px;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 12px;
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .hero p {
      font-size: 1.2rem;
      font-weight: 500;
      margin-bottom: 20px;
    }

    .btn-book {
      display: inline-block;
      padding: 12px 25px;
      background: #4CAF50;
      color: white;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 8px;
      transition: background 0.3s ease;
    }

    .btn-book:hover {
      background: #3a9e40;
    }

    /* ================================
       REVIEWS
    ================================ */
    .reviews {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.reviews h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: 'Montserrat', sans-serif;
}

.review-slider-container {
  position: relative;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
}

.review-slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.review-card {
  background: #fff;
  padding: 20px;
  margin: 0 10px;
  border-radius: 12px;
  box-shadow: 0px 3px 10px rgba(0,0,0,0.1);
  text-align: center;
  min-width: 300px;
  max-width: 300px;
  font-weight: 500;
}

.review-card h4 {
  margin: 10px 0 5px;
  font-weight: 600;
}

.review-card .stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 0.95rem;
  color: #444;
}

.review-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.review-btn:hover {
  background: rgba(0,0,0,0.8);
}

.review-btn.prev { left: 10px; }
.review-btn.next { right: 10px; }

/* Avatar styling */
.guest-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 10px auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  text-transform: uppercase;
}


    /* ================================
       PHOTO GALLERY
    ================================ */
    .photo-gallery {
      text-align: center;
      padding: 60px 20px;
      background: #f9f9f9;
    }

    .photo-gallery h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 30px;
      color: #333;
    }

    .gallery-container {
      position: relative;
      max-width: 1000px;
      margin: auto;
      overflow: hidden;
      border-radius: 12px;
    }

    .gallery-slider {
      display: flex;
      transition: transform 0.6s ease-in-out;
    }

    .gallery-slider img {
      width: 100%;
      max-width: 1000px;
      height: 500px;
      object-fit: cover;
      border-radius: 12px;
    }

    .gallery-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      color: white;
      border: none;
      font-size: 2rem;
      padding: 10px;
      cursor: pointer;
      border-radius: 50%;
      transition: background 0.3s ease;
    }

    .gallery-btn:hover {
      background: rgba(0,0,0,0.8);
    }

    .gallery-btn.prev {
      left: 10px;
    }

    .gallery-btn.next {
      right: 10px;
    }

    /* ================================
       CONTACT
    ================================ */
    .contact-section {
      padding: 60px 20px;
      background: #f9f9f9;
    }

    .contact-container {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: space-between;
      max-width: 1100px;
      margin: auto;
      gap: 30px;
    }

    .contact-info {
      flex: 1;
      min-width: 280px;
    }

    .contact-info h2 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .contact-info p {
      margin: 8px 0;
      font-weight: 500;
    }

    .whatsapp-btn {
      display: inline-flex;
      align-items: center;
      background: #25D366;
      color: white;
      font-weight: 600;
      padding: 12px 18px;
      border-radius: 30px;
      text-decoration: none;
      margin: 15px 0;
      transition: 0.3s ease;
    }

    .whatsapp-btn img {
      width: 24px;
      margin-right: 10px;
    }

    .whatsapp-btn:hover {
      background: #1ebe5c;
    }

    .contact-map {
      flex: 1;
      min-width: 300px;
    }

    /* ================================
       SOCIAL
    ================================ */
    .social-section {
      text-align: center;
      padding: 40px 20px;
      background: #f9f9f9;
    }

    .social-section h2 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 20px;
      color: #333;
    }

    .social-links a img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .social-links a img:hover {
      transform: scale(1.2);
      box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
    }

    /* ================================
       FOOTER
    ================================ */
    footer {
      background: #111;
      color: #fff;
      text-align: center;
      padding: 20px;
      font-weight: 500;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2rem;
      }
      .hero p {
        font-size: 1rem;
      }
      .contact-container {
        flex-direction: column;
        text-align: center;
      }
    }