
.judul1 {
      background-image: url('../images/bg_4.jpg'); /* Ganti dengan URL gambarmu */
      background-size: cover;
      background-position: center;
      width: 100%; /* lebar elemen */
      height: 200px; /* tinggi elemen */
      display: flex;
      justify-content: center;
      align-items: center;
      color: white; /* warna teks */
      font-size: 2em;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7); /* bayangan agar teks terlihat */
}

    .email-button {
      display: inline-flex;
      align-items: center;
      background-color: #004d99;
      color: white;
      text-decoration: none;
      padding: 12px 20px;
      border-radius: 8px;
      font-size: 16px;
      font-family: Arial, sans-serif;
      transition: background-color 0.3s;
    }

    .email-button:hover {
      background-color: #66b3ff;
	  color: white;
    }

    .email-button img {
      width: 20px;
      height: 20px;
      margin-right: 10px;
    }

	
.whatsapp-button {
      display: inline-flex;
      align-items: center;
      background-color: #00cc00; /* Warna hijau WhatsApp */
      color: white;
      text-decoration: none;
      padding: 12px 20px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: bold;
      transition: background-color 0.3s;
    }

    .whatsapp-button:hover {
      background-color: #00e600;
	  color: white;
    }

    .whatsapp-button img {
      width: 20px;
      height: 20px;
      margin-right: 10px;
    }


	.language-switcher {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.flag-icon {
  width: 24px;
  height: 16px;
  border: 1px solid #fff;
  cursor: pointer;
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.flag-icon:hover {
  transform: scale(1.1);
}



 .social-icons {
    margin-top: 20px;
  }

  .social-circle {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background-color: #f26522; /* Oranye */
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: background-color 0.3s ease;
  }

  .social-circle img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
  }

  .social-circle:hover {
    background-color: #e5530d;
  }	
  

    .dropdown {
      position: relative;
      display: inline-block;
    }

    .dropdown-button {
      background-color: #3498db;
      color: white;
      padding: 10px 16px;
      font-size: 16px;
      border: none;
      cursor: pointer;
      border-radius: 5px;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      background-color: white;
      min-width: 160px;
      box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
      z-index: 1;
      border-radius: 4px;
    }

    .dropdown-content a {
      color: black;
      padding: 10px 14px;
      text-decoration: none;
      display: block;
    }

    .dropdown-content a:hover {
      background-color: #f1f1f1;
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }

    .dropdown:hover .dropdown-button {
      background-color: #2980b9;
    }
  
  
  
  	.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination {
  display: flex;
  gap: 6px;
}

.pagination a {
  color: #f4511e;
  padding: 8px 16px;
  text-decoration: none;
  border: 1px solid #f4511e;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.pagination a:hover {
  background-color: #f4511e;
  color: white;
}

.pagination a.active {
  background-color: #f4511e;
  color: white;
  font-weight: bold;
}
	
	
	 .support-banner {

  background-size: cover;
  background-position: center;
  width: 100%;
  height: 450px; /* Ubah sesuai kebutuhan */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  position: relative;
  color: white;
}


.support-banner .content h2 {
  font-size: 48px; /* Ukuran besar untuk menarik perhatian */
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5); /* Tambahkan kontras */
}

.support-banner .content p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.support-banner .buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}	    
	
 .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
      gap: 0px;
      max-width: 1200px;
      margin: auto;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 8px 15px rgba(0,0,0,0.1);
      cursor: pointer;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
      display: block;
    }

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

    .caption {
      position: absolute;
      bottom: 0;
      width: 100%;
      padding: 10px;
      color: #fff;
      background: rgba(0, 0, 0, 0.5);
      text-align: center;
      font-size: 1rem;
      opacity: 0;
      transition: opacity 0.3s ease-in-out;
    }

    .gallery-item:hover .caption {
      opacity: 1;
    }

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

    .lightbox img {
      max-width: 90%;
      max-height: 80%;
      border-radius: 10px;
      box-shadow: 0 5px 25px rgba(255,255,255,0.2);
    }

    .lightbox .caption {
      color: white;
      margin-top: 10px;
      font-size: 1.2rem;
      text-align: center;
    }

    .close, .prev, .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 2rem;
      background: rgba(255,255,255,0.2);
      color: white;
      padding: 10px 15px;
      cursor: pointer;
      border: none;
      border-radius: 50%;
    }

    .close {
      top: 20px;
      right: 30px;
      transform: none;
      font-size: 2.5rem;
    }

    .prev {
      left: 30px;
    }

    .next {
      right: 30px;
    }
    
   

/* Di HP: munculkan, perkecil, geser ke dalam */
 /* Mobile: 1 slide per view */
    @media (max-width: 768px) {
      .gallery {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0;
      }

      .gallery-item {
        flex: 0 0 100%;
        scroll-snap-align: center;
        border-radius: 0;
        box-shadow: none;
      }

      .gallery-item img {
        height: auto;
      }

      /* Show elegant arrows */
      .nav-btn {
        display: flex;
      }
    }

    /* Arrow buttons */
    .nav-btn {
      display: none;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      background: rgba(0, 0, 0, 0.35);
      color: #fff;
      border: none;
      font-size: 2rem;
      padding: 10px 15px;
      cursor: pointer;
      border-radius: 50%;
      transition: background 0.3s ease;
    }

    .nav-btn:hover {
      background: rgba(0, 0, 0, 0.5);
    }

    .prev-btn {
      left: 10px;
    }

    .next-btn {
      right: 10px;
    }

    .gallery::-webkit-scrollbar {
      display: none;
    }
    	
	#booking-sidebar {
  position: sticky;
  top: 100px;
}
#booking-sidebar a {
  text-decoration: none;
  color: inherit;
}
#booking-sidebar a:hover {
  color: #007bff;
}

  .grid-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      max-width: 1000px;
      margin: auto;
    }

    .grid-item {
      background-color: #f4f4f4;
      border-radius: 8px;
      text-align: center;
      padding: 20px;
      font-weight: bold;
      color: #f15423;
      cursor: pointer;
    }