/* ======= RESET DASAR ======= */
@font-face {
  font-family: 'Zerove';
  src: url('../css/font/fraunces-reguler-otf.ttf') format('opentype');
  
}

@font-face {
  font-family: 'Zerove';
  src: url('../css/font/Absans-reguler-otf.otf') format('opentype');
}







body, html {
    margin: 0;
    padding: 0;
    font-family: 'Absans', Arial, sans-serif !important;
    }


.np-box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* <-- CENTER! */
  gap: 20px;
  margin: 40px auto;
  max-width: 1100px;
  box-sizing: border-box;
}

.np-box {
  width: 45%;
  max-width: 500px;
  border: 1px solid #f1a15f;
  border-radius: 12px;
  padding: 25px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  box-sizing: border-box;
}


/* Judul box */
.np-box h2 {
  color: #f15b3c;
  margin-bottom: 40px;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}

/* List harga */
.np-price-list {
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.np-price-list li {
  font-size: 20px;
  color: #000;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.np-price-list li::before {
  content: "•";
  color: orange;
  position: absolute;
  left: 0;
  top: 0;
}

/* Konten "What's Included" */
.np-inclusions {
  text-align: left;
}

.np-inclusions p {
  font-size: 19px;
  margin: 5px 0;
  color: #333;
}

.np-inclusions small {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: #666;
}

/* Responsive untuk mobile */
@media (max-width: 768px) {
  .np-box-container {
    flex-direction: column;
    align-items: center;
  }

  .np-box {
    width: 100%;
    max-width: 100%;
  }
}




.accordion-header {
  font-family: 'Absans', sans-serif;
  font-size: 28px;
  color: #b38b4c;        /* Bisa kamu sesuaikan */
  letter-spacing: 0.5px;
  font-weight: 600;
}

.np-box {
  font-family: 'Absans', sans-serif;
}



   
    h1 {
        font-size: 35px;            /* Sesuaikan, misal 2rem atau 32px */
        font-weight: bold;           /* Gunakan 600–700, jangan terlalu bold */
        line-height: 1.4;           /* Tambahkan jarak vertikal agar tidak gepeng */
        font-family: 'Fraunces', sans-serif;  /* Gunakan font modern dan bersih */
      }
      
      @media only screen and (max-width: 600px) {
  h1 {
    font-size: 26px; /* ubah sesuai kebutuhan */
  }
      }

  h2 {
        font-size: 30px;            /* Sesuaikan, misal 2rem atau 32px */
        font-weight: bold;
        line-height: 1.4;           /* Tambahkan jarak vertikal agar tidak gepeng */
        font-family: 'Fraunces', sans-serif;  /* Gunakan font modern dan bersih */
      }
      
      @media only screen and (max-width: 600px) {
  h2 {
    font-size: 26px; /* ubah sesuai kebutuhan */
  }}

  h5 {
        font-size: 25px;            /* Sesuaikan, misal 2rem atau 32px */
        font-weight: 400;           /* Gunakan 600–700, jangan terlalu bold */
        line-height: 1.4;           /* Tambahkan jarak vertikal agar tidak gepeng */
        font-family: 'Fraunces', sans-serif;  /* Gunakan font modern dan bersih */
      }
      
      @media only screen and (max-width: 600px) {
  h5 {
    font-size: 17px; /* ubah sesuai kebutuhan */
  }}

  h3 {
        font-size: 40px;            /* Sesuaikan, misal 2rem atau 32px */
        font-weight: 400;           /* Gunakan 600–700, jangan terlalu bold */
        line-height: 1.4;           /* Tambahkan jarak vertikal agar tidak gepeng */
        font-family: 'Fraunces', sans-serif;  /* Gunakan font modern dan bersih */
      }
      
      @media only screen and (max-width: 600px) {
  h3 {
    font-size: 25px; /* ubah sesuai kebutuhan */
  }}

  

.text-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 16px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
}

.text-container h2 {
    font-size: 28px;
    font-weight: bold;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.text-container p {
    font-size: 18px;
}


  
    p {
            font-family: 'Absans', sans-serif;  /* Gunakan font modern dan bersih */
            font-size: 18px;
            text-align: justify;
            line-height: 1.6; /* Memberikan jarak antar baris agar mudah dibaca */
            max-width: 1200px; /* Batas maksimum lebar teks agar tidak terlalu lebar */
            margin: 0 auto; /* Memposisikan di tengah */
        text-indent: 30px;
        
    
    }
        /* Container utama */
        .accordion {
            max-width: 1100px;
            margin: auto;
        }

        /* Style setiap item */
        .accordion-item {
            background: white;
            border: 1px solid #e0c190;
            border-radius: 8px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        /* Header accordion */
        .accordion-header {
            background: white;
            color: #b38b4c;
            font-size: 30px;
            font-weight: bold;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            border-radius: 8px;
        }

        /* Ikon */
        .icon {
            transition: transform 0.3s ease;
        }

        /* Konten tersembunyi awalnya */
        .accordion-content {
            display: none;
            padding: 15px;
            margin-bottom: 10px;
            font-size: 20px;
            color: #333;
            background: white;
        }

        /* Saat aktif, ikon diputar */
        .active .icon {
            transform: rotate(180deg);
        }

        /* Responsif untuk HP & Tablet */
        @media (max-width: 768px) {
            .accordion {
                max-width: 100%;
            }

            .accordion-header {
                font-size: 16px;
                padding: 12px;
            }

            .accordion-content {
                font-size: 14px;
                padding: 12px;
            }
        }

          /* Grid Container */
          .image-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            max-width: 900px;
            margin: 0 auto;
            padding: 10px;
            border: 2px solid orange;
            border-radius: 10px;
            background-color: #fff;
          }
          
          .image-grid img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            object-fit: cover;
          }

        /* Ukuran grid yang lebih besar untuk desktop */
        @media (min-width: 768px) {
            .image-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Ukuran grid lebih kecil untuk tablet */
        @media (max-width: 767px) {
            .image-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Grid satu kolom untuk HP */
        @media (max-width: 480px) {
            .image-grid {
                grid-template-columns:repeat(2, 1fr);
            }
        }
        /* Efek hover untuk gambar */
        .image-grid img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
            transition: filter 0.3s ease-in-out;
        }

        .image-grid img:hover {
            filter: brightness(70%);
        }


        /* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 80%;
    max-height: 80vh;
    border-radius: 8px;
}

.close-btn, .prev-btn, .next-btn {
    position: absolute;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
}

.close-btn {
    top: 20px;
    right: 20px;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}
/*===============================================================================*/



  
  /*====== AGAR CAD RESPONSIF TIDAK BERANTAKAN KETIKA DI MINIMIZE ======*/
  .container {
    max-width: 95%; /* Atur agar tidak terlalu lebar */
  }
  
  /*========= NAVBAR DAN SIDENAV ======= */
  .brand-logo {
    margin-left: 40px;
    margin-right: auto;
  }
  
  nav ul {
    padding-right: 40px; /* Memberikan jarak dengan sisi kanan */
  }
  
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  
  /* ======= SIDENAV ======= */
  .sidenav li a {
    color: black !important;
  }
  
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  
  
  /* ======= STYLE BOOK NOW ======= */
  .booknow {
    background-color: #0d47a1;
    color: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    margin-top: 30px;
  }
  
  .booknow a {
    color: #ffeb3b;
    font-weight: bold;
    text-decoration: none;
  }
  
  .booknow a:hover {
    text-decoration: underline;
  }
  

  .booking-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.booking-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    font-size: 20px;
    font-weight: bold;
    border: 2px solid #25D366;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
}
.booking-button img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
.booking-button:hover {
    background-color: white;
    color: #25D366;
}
  