/* Tambahkan ini di file CSS untuk styling slider */
.header-background {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 60, 100, 0.6); /* Biru transparan */
  color: #ffffff;
  padding: 10px 20px;
  position: relative;
  backdrop-filter: blur(8px); /* Efek kaca buram */
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.menu-toggle {
  font-size: 28px;
  cursor: pointer;
  display: none;
  color: white;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #d0eaff; /* Biru muda lembut */
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ffffff;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: rgba(0, 60, 100, 0.85); /* Lebih solid saat menu terbuka */
    border: 1px solid #d0eaff;
    padding: 10px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
  }

  nav.show {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }
}


  
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
  }
  
  .prev { left: 10px; }
  .next { right: 10px; }
  .trip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 5%;
  }
  
  .trip-card {
    background-color: #ff9800;
    padding: 30px;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  
  .trip-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .trip-card:hover {
    transform: translateY(-10px);
  }
  
  @media (max-width: 900px) {
    .trip-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .trip-grid {
      grid-template-columns: 1fr;
    }
  }

  .popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

            .about-content {
              margin: 0;
              padding: 0;
              box-sizing: border-box;
              font-family: Arial, sans-serif;
            }
          
            .about-section {
              background-image: url('about.jpg');
              background-size: cover;
              background-position: center;
              color: white;
              height: 60vh; /* Mengurangi tinggi menjadi 60% viewport */
              display: flex;
              align-items: center;
              justify-content: center;
              text-align: center;
              padding: 0 20px;
            }
          
            .about-content {
              max-width: 800px; /* Lebih lebar untuk tampilan yang ramping */
              background-color: rgba(0, 0, 0, 0.6);
              padding: 30px;
              border-radius: 10px;
              animation: fadeInUp 1s ease-in-out;
            }
          
            .about-content h2 {
              font-size: 2rem;
              margin-bottom: 15px;
            }
          
            .about-content p {
              font-size: 1rem;
              margin-bottom: 15px;
            }
          
            @keyframes fadeInUp {
              from {
                opacity: 0;
                transform: translateY(30px);
              }
              to {
                opacity: 1;
                transform: translateY(0);
              }
            }
  
  .popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
  }
  
  .popup-content h2 {
    color: #007bff;
    margin-bottom: 20px;
  }
  
  .popup-content p {
    margin-bottom: 20px;
    color: #555;
  }
  
  .popup-content a {
    display: inline-block;
    background-color: #ff9800;
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
  }
  
  .popup-content .close-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
  }

  .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
  }
  
  .whatsapp-float img {
    width: 35px;
    height: 35px;
  }
  .testimonial-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .testimonial-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #007bff;
  }
  
  .testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .testimonial-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  
  .testimonial-card:hover {
    transform: translateY(-8px);
  }
  
  .testimonial-card p {
    font-size: 1.1rem;
    color: #444;
    font-style: italic;
    margin-bottom: 15px;
  }
  
  .testimonial-card h4 {
    color: #007bff;
    font-weight: bold;
  }
  #carouselExampleCaptions .carousel-item {
    height: 60vh;
    background-color: #333;
}

#carouselExampleCaptions .carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    bottom: 20px;
    padding: 15px;
}

.carousel-caption h5 {
    font-size: 2rem;
    color: #fff;
}

.carousel-caption p {
    font-size: 1.2rem;
    color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px;
  display: none;
  text-align: center;
}
#carouselExampleCaptions .carousel-item {
  height: 60vh;
  background-color: #333;
}

#carouselExampleCaptions .carousel-caption {
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 20px;
  padding: 15px;
}

.carousel-caption h5 {
  font-size: 2rem;
  color: #fff;
}

.carousel-caption p {
  font-size: 1.2rem;
  color: #fff;
}

.why-lovina {
        background: url('home.webp') no-repeat center center/cover;
        color: rgb(0, 0, 0);
        text-align: center;
        padding: 50px 20px;
      }
      
      h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
      }
      
      .benefits-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
      }
      
      .benefit-card {
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 10px;
        padding: 20px;
        text-align: left;
        color: black;
      }
      
      .benefit-card img {
        width: 50px;
        margin-bottom: 10px;
      }
      
      h3 {
        font-size: 1.25rem;
        margin-bottom: 10px;
      }
      
      p {
        font-size: 1rem;
        color: #555;
      }

/* Gallery Grid Styling */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

/* Styling for Gallery Items */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

/* Apply grayscale filter and zoom effect */
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.5s ease;
  filter: grayscale(100%); /* Set grayscale to 100% */
}

/* Apply zoom-in effect when hovered */
.gallery-item:hover .gallery-img {
  transform: scale(1.1); /* Zoom in */
  filter: grayscale(0%); /* Remove grayscale (colorize the image) */
}

/* Overlay Description Styling */
.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 15px;
  text-align: center;
  opacity: 0; /* Initially hide the overlay */
  transition: opacity 0.3s ease;
  border-radius: 10px;
  width: 90%;
  max-width: 250px;
}

/* Show the overlay when hovered */
.gallery-item:hover .overlay {
  opacity: 1;
}

/* Styling for text description inside the overlay */
.description {
  font-size: 1.2rem;
  font-weight: bold;
}

/* Make sure it looks good on mobile */
@media (max-width: 768px) {
  .description {
    font-size: 1rem;
  }
}
/* Gallery Grid Styling */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 items per row */
  gap: 20px;
  justify-items: center; /* Center all cards */
}

/* Styling for Gallery Items */
.gallery-item {
  position: relative;
  width: 100%;
  height: 300px; /* Fixed height for uniformity */
  overflow: hidden;
  border-radius: 15px; /* Rounded corners */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Apply grayscale filter and zoom effect */
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.5s ease;
  filter: grayscale(100%); /* Set grayscale to 100% */
}

/* Apply zoom-in effect when hovered */
.gallery-item:hover .gallery-img {
  transform: scale(1.1); /* Zoom in */
  filter: grayscale(0%); /* Remove grayscale (colorize the image) */
}

/* Overlay Description Styling */
.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 15px;
  text-align: center;
  opacity: 0; /* Initially hide the overlay */
  transition: opacity 0.3s ease;
  border-radius: 10px;
  width: 90%;
  max-width: 250px;
}

/* Show the overlay when hovered */
.gallery-item:hover .overlay {
  opacity: 1;
}

/* Styling for text description inside the overlay */
.description {
  font-size: 1.2rem;
  font-weight: bold;
}

  .testimonial-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    background: #f9f9f9;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .testimonial-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #333;
  }

  .review-form {
    display: grid;
    gap: 15px;
    margin-bottom: 40px;
  }

  .review-form textarea,
  .review-form input {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1em;
    width: 100%;
    resize: none;
  }

  .review-form button {
    padding: 12px 20px;
    background: #0077ff;
    color: white;
    font-size: 1.1em;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .review-form button:hover {
    background: #005fcc;
  }

  .testimonial-container {
    display: grid;
    gap: 20px;
  }

  .testimonial-card {
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
  }

  /* Style untuk animasi ketika review baru ditambahkan */
  .testimonial-card.new {
    opacity: 0;
    transform: translateY(-20px);
  }

  .testimonial-card.show {
    opacity: 1;
    transform: translateY(0);
  }

  .testimonial-card p {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #555;
  }

  .testimonial-card h4 {
    font-weight: bold;
    color: #222;
  }

   @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
      
      .contact-section {
        background: url('contact.jpg') no-repeat center center/cover;
        color: #fff;
        padding: 80px 20px;
        text-align: center;
        position: relative;
        font-family: 'Poppins', sans-serif;
      }
      
      
      .contact-container {
        max-width: 800px;
        margin: 0 auto;
      }
      
      .contact-info h2 {
        color: #007bff;
        margin-bottom: 20px;
        font-size: 2.5rem;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
      }
      
      .contact-info p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.2rem;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
      }
      
      .contact-info .icon {
        width: 24px;
        margin-right: 10px;
      }
      
      .social-media a img {
        width: 40px;
        margin: 0 10px;
        transition: transform 0.3s ease;
      }
      
      .social-media a:hover img {
        transform: scale(1.1);
      }
      
      .lovina-article {
        margin-top: 40px;
        padding: 20px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        backdrop-filter: blur(8px);
      }
      
      .lovina-article h3 {
        color: #007bff;
        font-size: 2rem;
        margin-bottom: 15px;
        text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
      }
      
      .lovina-article p {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.9);
      }

* {
              margin: 0;
              padding: 0;
              box-sizing: border-box;
              font-family: Arial, sans-serif;
            }
          
            .about-section {
              background-image: url('about.jpg');
              background-size: cover;
              background-position: center;
              color: white;
              height: 60vh; /* Mengurangi tinggi menjadi 60% viewport */
              display: flex;
              align-items: center;
              justify-content: center;
              text-align: center;
              padding: 0 20px;
            }
          
            .about-content {
              max-width: 800px; /* Lebih lebar untuk tampilan yang ramping */
              background-color: rgba(0, 0, 0, 0.6);
              padding: 30px;
              border-radius: 10px;
              animation: fadeInUp 1s ease-in-out;
            }
          
            .about-content h2 {
              font-size: 2rem;
              margin-bottom: 15px;
            }
          
            .about-content p {
              font-size: 1rem;
              margin-bottom: 15px;
            }
            .logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.5em;
  font-weight: bold;
  color: white; /* atau sesuaikan */
}

          
            @keyframes fadeInUp {
              from {
                opacity: 0;
                transform: translateY(30px);
              }
              to {
                opacity: 1;
                transform: translateY(0);
              }
            }
/* Make sure it looks good on mobile */
@media (max-width: 768px) {
  .description {
    font-size: 1rem;
  }
}

