body {
    font-family: 'Nunito', sans-serif;
    background-color: #F8F6F0;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    backdrop-filter: none;
    padding: 10px 20px;
    box-shadow: none;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
  }
  
  .navbar a {
    color: #5D3A00;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .navbar a:hover {
    color: #C18F59;
  }
  

  .navbar.scrolled {
    background-color: #C18F59;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 12px #C18F59;
  }

.navbar-brand img {
    height: 40px;
}

.navbar-icons {
    display: flex;
    align-items: center;
    gap: 10px;

}

.navbar-icons a {
    color: #5D3A00;
    font-size: 15px;
    transition: color 0.50s ease-in-out;
}

.navbar-toggler {
  border-color: transparent; /* opsional, warna border tombol */
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%235D3A00' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.brand-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 520;
    color: #5D3A00;
    font-size: 1rem; /* ukuran default untuk HP */
  }

  @media (min-width: 768px) {
    .brand-text {
      font-size: 1.25rem; /* ukuran untuk tablet ke atas */
    }
  }

  @media (min-width: 992px) {
    .brand-text {
      font-size: 1.5rem; /* ukuran untuk laptop ke atas */
      font-weight: 700;
    }
  }

#fullscreenBtn {
      display: block;
    }
    @media (max-width: 767px) {
      #fullscreenBtn {
        display: none !important;
      }
    }


.hero-section {
    position: relative;
    height: 70vh;
    overflow: hidden;
    color: #fff;
    z-index: 1;
  }

 /* VIDEO AREA FULLSCREEN */
.video-area {
    width: 100%;
    height: 60vh; 
    overflow: hidden;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .video-area video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin-top: 75px;
  }
  
  .image-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: auto;
    padding: 0;
    gap: 0; /* Ini penting: hapus jarak antar kolom & baris */
  }
  
  .image-box {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .image-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 0; /* Kalau mau benar-benar rapat */
  } 

  
#carouselPreview2 {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }

  #carouselPreview2 img {
    object-fit: cover;
    width: 100%;
    height: auto;
    max-height: 80vh; 
    border-radius: 8px;
  }

  @media (max-width: 576px) {
    #carouselPreview2 img {
      padding: 0 10px; 
    }
  }
  
  
.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px #F8F0E3;
}

.hero-section p {
    font-size: 1.5rem;
    font-weight: 500;
}

.card {
    background-color: #F8F0E3;
    border: 1px solid rgba(0, 0, 0, 0.7);
}

.btn-primary {
    background-color: rgba(0, 153, 68, 0.5);;
    border: none;
}

.btn-primary:hover {
    background-color: #009944;
}

.hero-section {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-text {
    max-width: 600px;
    padding: 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.5rem;
  }

 
  .btn-book-icon {
    background-color: rgba(255, 255, 255, 0.7);
    color: #5D3A00;
    font-size: 1.2rem;
    padding: 6px 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 38px;
    height: 38px;
    border: none;
    text-decoration: none;
  }
  
  .btn-book-icon:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: #ffffff; /* hover coklat emas */
  }
  
  /* Saat navbar di-scroll */
  .navbar.scrolled .btn-book-icon {
    color: rgba(255, 255, 255, 0.7); 
    background-color: #5D3A00;
    transition: all 0.3s ease;
  }

  .navbar.scrolled:hover{
    color: rgba(255, 255, 255, 0.3);
  }
  
  .dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    background-color: rgba(0, 0, 0, 0.75); /* Hitam transparan */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 0;
    z-index: 9999;
  }
  
  .dropdown-item {
    color: #ffffff !important; 
    font-weight: 600;
    padding: 10px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.12);
    color: #fff !important;
  }


  .about-homestay {
    background-color: #FEFCFF;
    color: rgba(0, 0, 0, 0.7);
    padding: 0px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  .about-homestay h4 {
    color: #5D3A00;
    margin-bottom: 1.5rem;
  }
  
  .about-text {
    color: rgba(0, 0, 0, 0.75);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
  }  

  .section-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #5D3A00, transparent);
    margin: 30px 0;
  }

  .card-img-top {
  height: 180px;         /* kamu bisa ubah sesuai kebutuhan */
  object-fit: cover;     /* biar gambar tetap proporsional */
}

  #scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: rgba(255, 255, 255, 0.7);
    color: #5D3A00;
    border: none;
    z-index: 9999;
    display: none; 
    padding: 12px 16px;
    font-size: 1.4rem;
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  #scrollTopBtn:hover {
    background-color: #fff;
  }

.qty-column {
    width: 110px; /* Adjust as needed */
    min-width: 110px; /* Prevent shrinking */
}

/* Make sure input stays readable */
.qty-input {
    width: 45px;
    text-align: center;
}

footer{
    background-color: #5D3A00;
}

.modal-content{
    background-color: #F8F0E3;
}

.carousel-inner img {
    width: 100%;
    height: 600px; 
    object-fit: cover; 
  }


.bg-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    animation-duration: 18s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
  }

  .bg1 {
    background-image: url('https://res.cloudinary.com/dxxs7g3ll/image/upload/v1753157292/RCC06114_x3rpio_1_bqk9um.webp');
    animation-name: fade1;
  }

  .bg2 {
    background-image: url('https://res.cloudinary.com/dxxs7g3ll/image/upload/v1753156791/RCC06004_pwivbh_hc9cqu.webp');
    animation-name: fade2;
  }

  .bg3 {
    background-image: url('https://res.cloudinary.com/dxxs7g3ll/image/upload/v1753156025/bangku-meja_fcrt72.webp');
    animation-name: fade3;
  }

  @keyframes fade1 {
    0%, 33% { opacity: 1; }
    33.1%, 100% { opacity: 0; }
  }

  @keyframes fade2 {
    0%, 33% { opacity: 0; }
    33.1%, 66% { opacity: 1; }
    66.1%, 100% { opacity: 0; }
  }

  @keyframes fade3 {
    0%, 66% { opacity: 0; }
    66.1%, 100% { opacity: 1; }
  }

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  #whatsappButton:hover {
    background-color: #25D366; /* solid saat hover */
    transform: scale(1.05);
    transition: all 0.3s ease;
  }