
body {
background-color: #f8f9fa;
font-family: Arial, sans-serif;
 }
h1 {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
h2 {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.container {
  background-color: #f5f5dc;
  padding: 3%;
  border-radius: 5px;
}

.btn-primary {
  border-color: transparent; /* Menghapus warna border */
}

.btn-primary:hover {
  background-color: #8B6A4E;
  border-color: transparent; /* Menghapus warna border saat hover */
  color: inherit; /* Agar warna teks tetap mengikuti default */
}
/* navbar */
/*.navbar {*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*  background-color: white;*/
/*  padding: 20px 0;*/
/*  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
/*}*/
/*.navbar a {*/
/*    margin: 0 15px;*/
/*    text-decoration: none;*/
/*    color: black;*/
/*    font-weight: 700;*/
/*}*/
/*.navbar img {*/
/*  height: 50px;*/
/*  margin: 0 30px;*/
/*}*/

/*navbar baru*/
.sticky-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 0px;
  z-index: 1000;
  /*transition: background-color 0.3s ease-in-out;*/
  background-color: white; /* Default: transparan */
  box-shadow: none; /* Hilangkan bayangan */
}

/* Warna saat di-scroll */
.sticky-navbar.scrolled {
  background-color: white;

}

/* Warna teks di navbar */
.sticky-navbar .nav-link,
.sticky-navbar .navbar-brand {
  color: black;
}

/* Warna teks saat navbar transparan */
.sticky-navbar:not(.scrolled) .nav-link,
.sticky-navbar:not(.scrolled) .navbar-brand {
  color: black;
}

/* Tombol toggle */
.sticky-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.6);
}
.sticky-navbar:not(.scrolled) .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.6%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.sticky-navbar.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%280, 0, 0, 0.6%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-nav .navbar-brand {
  font-size: 40px; /* Atur ukuran font sesuai kebutuhan */
  /*font-weight: bold;  Opsional: Buat teks lebih tebal */
}

.navbar img {
  height: 65px;
  margin: 0 30px;
}

/* Warna saat di-hover */
.navbar .nav-link:hover {
  color: #8B6A4E; /* Warna teks saat di-hover */
}

/* Warna khusus untuk link dengan id "promolink" */
#promolink:hover {
  color: green;
}

/* Warna teks saat di-hover */
.navbar .nav-link:hover {
  color: #8B6A4E; /* Warna teks saat di-hover */
}

/* carousel pertama */
.hero-section {
  position: relative;
  text-align: center;
  color: white;
}

.hero-section img {
  width: 100%;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-section .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-section .content h1 {
  font-size: 2.5rem;
}

.hero-section .content p {
  font-size: 1.25rem;
}

/* booking form */
.booking-form {
  background-color: #faf8f9;
  padding: 20px;
  border-radius: 5px;
  margin-top: -50px;
  z-index: 1;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
.booking-form .form-control {
  height: 40px;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 4px;
}


/* Modern Button Styles */
.booking-form .modern-btnn {
    margin-top: 40px;
  background-color: #8B6A4E; /* Warna utama */
  color: white; /* Warna teks */
  font-size: 12px; /* Ukuran font */
  /*font-weight: bold; /* Teks tebal 
  border: none; /* Hilangkan border */
  /*border-radius: 12px;  Bentuk membulat */
  padding: 10px 4px; /* Spasi dalam tombol */
  transition: all 0.3s ease-in-out; /* Efek transisi */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Bayangan tombol */
}

/* Hover Effect */
.booking-form .modern-btnn:hover {
  background-color: grey; /* Warna lebih terang saat hover */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Bayangan lebih besar */
  transform: translateY(-2px); /* Efek naik sedikit */
}

/* Active Effect */
.booking-form .modern-btnn:active {
  transform: translateY(0); /* Kembali ke posisi semula */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Bayangan semula */
}


.booking-form .form-placeholder {
  font-size: 12px;
  color: #6c757d;
  margin-bottom: 5px;
  display: block;
}

.booking-form .mt-3 {
  margin-top: 20px;
}

.booking-form .w-100 {
  width: 100%;
}

/* carousel card */

.btn {
  background-color: #8B6A4E;
}

.collections-section h2 {
text-align: center;
margin-bottom: 30px;
}
.card img {
height: 200px;
object-fit: cover;
}

 .collections-section {
  background-color: #f9f9f9;
  padding: 20px 0;
}

/* Modern Card Styles */
.modern-card {
  border: 1px solid #ddd; /* Border tipis */
  border-radius: 10px; /* Membuat sudut membulat */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Bayangan lembut */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Efek animasi */
}

.modern-card:hover {
  transform: scale(1.02); /* Sedikit membesar saat hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Bayangan lebih besar */
}

/* Reset gaya default browser */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

header {
    background-color: #004080;
    color: white;
    padding: 1rem;
    text-align: center;
}

header h1 {
    font-size: 2rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 5rem;
}

.page-title {
    background-color: #8B5E3C;
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 1.2rem; /* Sedikit lebih besar agar terbaca dengan jelas */
    font-weight: bold;
}

.hotel-section {
    display: flex;
    flex-wrap: wrap;
   align-items: center; /* Vertikal tengah */
    justify-content: center; 
    gap: 1rem; /* Jarak antar elemen */
    margin-bottom: 2rem;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}


.title {
    font-size: 1.5rem; /* Ukuran font judul */
    font-weight: bold; /* Tebal */
    color: #8B5E3C; /* Warna teks judul */
    text-align:center;
}

.hotel-info {
    flex: 1;
    min-width: 300px;
    text-align:justify;
}

.hotel-image {
    flex: 1;
    text-align: center;
}

.hotel-image img {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
}


/* Modern Button Styles */
.modern-btn {
  background-color: white; /* Warna utama */
	border: 3px solid #8B6A4E;
  color: #8B6A4E; /* Warna teks */
  font-size: 16px; /* Ukuran font */
  font-weight: bold; /* Teks tebal */
  border-radius: 30px; /* Membuat tombol membulat */
  padding: 10px 20px; /* Spasi dalam tombol */
  transition: all 0.3s ease-in-out; /* Efek transisi */
  cursor: pointer; /* Ganti kursor menjadi pointer */
}

/* Hover Effect for Button */
.modern-btn:hover {
  background-color: grey; /* Warna lebih terang saat hover */
  border-color: grey; /* Warna border berubah */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Tambahkan bayangan */
  transform: translateY(-2px); /* Efek naik sedikit */
}

/* Card Image */
.card-img-top {
  border-top-left-radius: 10px; /* Membuat gambar mengikuti radius kartu */
  border-top-right-radius: 10px;
}

/* Card Text */
.card-title {
  font-size: 18px;
  font-weight: bold;
  color: #333; /* Warna teks judul */
}

.card-text {
  font-size: 14px;
  color: #555; /* Warna teks deskripsi */
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(100%);
}
/* carousel card */
/* Styling untuk Section */
.section {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center; /* Untuk memastikan konten tetap di tengah */
  gap: 20px; /* Memberikan jarak antar elemen */
}

/* Styling untuk Kolom */
.col-md-6 {
  flex: 1 1 45%; /* Pastikan kolom menyesuaikan ukuran dengan layar */
  max-width: 500px; /* Maksimum lebar kolom */
  text-align: center; /* Pastikan teks rata tengah di layar kecil */
}

/* Styling untuk Gambar */
.image {
  width: 100%; /* Gambar mengikuti lebar kolom */
  max-width: 400px; /* Maksimum lebar gambar */
  height: auto; /* Memastikan proporsi gambar tetap */
  border-radius: 8px;
  object-fit: cover; /* Memastikan gambar tidak terdistorsi */
  margin: 0 auto; /* Gambar tetap di tengah */
}

/* Styling untuk Judul dan Deskripsi */
.title {
  font-size: 24px;
  font-weight: bold;
  color: #8b5e3c;
  margin-bottom: 10px;
  text-align: center; /* Pastikan rata tengah di layar kecil */
}

.description {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  text-align: center; /* Pastikan rata tengah di layar kecil */
}
/* service card */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.col-12 .service-item {
  border-radius: 100px !important;
}

/* General Service Item */
.service-item {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: #8B5E3C;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.icon-circle {
 flex-shrink: 0;
 width: 100px; 
 height:100px; 
 border-radius: 50%; 
 background-color: #704930; 
 display: flex; 
 align-items: center; 
 justify-content: center;
}

.icon-circle img {
 max-width: 80px; 
 max-height: 80px;
}


.service-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: white;
}

.service-description {
  font-size: 0.9rem;
  color: white;
  line-height: 1.5;
}

.service-item + .service-item {
  margin-top: 20px; /* Memberikan jarak antar item */
}



        /* footer */
        
        .footer {
          background-color: #f5f5dc;
          padding: 40px 0;
          font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
          color: #333;
      }
      
      .footer h1,
      .footer h5 {
          font-weight: bold;
          margin-bottom: 15px;
          color: #8B6A4E;
      }
      
      .footer a {
          text-decoration: none;
          color: #8B6A4E;
      }
      
      .footer a:hover {
          text-decoration: underline;
      }
      
      .footer p {
          margin-bottom: 10px;
          line-height: 1.6;
      }
      
      .footer .text-center {
          font-size: 0.9rem;
          color: #555;
      }
      
      
       .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            visibility: hidden;
            opacity: 0;
            transition: visibility 0.3s, opacity 0.3s;
        }

        .popup.show {
            visibility: visible;
            opacity: 1;
        }

        .popup-content {
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            max-width: 400px; /* Membatasi lebar maksimum */
            width: 90%; /* Responsif untuk layar kecil */
        }

        .popup-content img {
            max-width: 100%; /* Gambar tidak lebih besar dari kontainer */
            height: auto; /* Menjaga rasio gambar */
            margin-top: 10px;
            border-radius: 5px; /* Opsional: Tambahkan sudut bundar */
        }

      
      
 
  /*MOBILE DEVICE  */
  @media (max-width: 768px) {
      
     .page-title {
        font-size: 1rem; /* Ukuran font lebih kecil untuk layar kecil */
    }

    /* Container utama hotel-section */
    .hotel-section {
        flex-direction: column; /* Tampilkan elemen dalam kolom */
        padding: 1rem; /* Kurangi padding pada layar kecil */
    }

    /* Header-info dan gambar hotel */
    .hotel-info {
        width: 100%; /* Lebar 100% pada layar kecil */
        text-align: justify; /* Rata tengah pada teks dan gambar */
    }
    
      .hotel-info p {
        text-align: justify; /* Rata kiri-kanan untuk layar kecil */
        font-size: 0.95rem; /* Ukuran font lebih kecil */
    }
    
    .hotel-image {
        width: 100%; /* Lebar 100% pada layar kecil */
        text-align: center; /* Rata tengah pada teks dan gambar */
    }

    /* Mengubah ukuran gambar hotel untuk layar kecil */
    .hotel-image img {
        max-width: 80%; /* Gambar lebih besar pada layar kecil */
        margin: 0 auto; /* Pusatkan gambar */
    }

    /* Mengatur ukuran teks */
    .title {
        font-size: 1.25rem; /* Ukuran judul lebih kecil */
    }

    .header-info p {
        font-size: 0.9rem; /* Ukuran font paragraf lebih kecil */
    }
    
    .hero-section .content h1 {
        font-size: 1.5rem; /* Ukuran font lebih kecil */
    }

    .hero-section .content p {
        font-size: 1rem;
    }

    .navbar img {
        height: 30px; /* Logo lebih kecil untuk perangkat kecil */
    }

    .booking-form {
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .booking-form .col-md-3,
    .booking-form .col-md-2,
    .booking-form .col-md-1 {
        width: 100%; /* Elemen penuh satu baris */
        margin-bottom: 10px;
    }

    .title {
      font-size: 20px;
  }

  .description {
      font-size: 14px;
  }

    .footer h1 {
        font-size: 1.2rem;
    }

    .footer h5 {
        font-size: 0.9rem;
    }

    .section {
      flex-direction: column; /* Susun secara vertikal */
    }
  
    .col-md-6 {
      flex: 1 1 100%; /* Kolom mengambil lebar penuh */
      max-width: 100%; /* Hapus batas maksimum */
    }
     /* Service item agar vertikal */
  .service-item {
    flex-direction: column; /* Ubah orientasi dari horizontal ke vertikal */
    align-items: flex-start; /* Mulai dari kiri */
    text-align: justify;
  }

  .icon-circle {
    width: 90px; /* Ukuran ikon lebih kecil */
    height: 90px;
    margin-bottom: 10px; /* Beri jarak bawah */
  }

  .icon-circle img {
    max-width: 80px; /* Gambar lebih kecil */
    max-height: 80px;
  }

  .service-title {
    font-size: 1.1rem; /* Ukuran font judul sedikit lebih kecil */
  }

  .service-description {
    font-size: 0.85rem; /* Ukuran font deskripsi lebih kecil */
  }

  .row {
    gap: 10px; /* Memberikan jarak antar elemen di kolom */
  }
}
/* carousel pertama */
.d-block.w-100 {
  height: auto; /* Biarkan tinggi otomatis untuk responsivitas */
}

/* Responsif untuk Ponsel Kecil (Extra Small) */
@media (max-width: 576px) {

	.col-12 .service-item {
  border-radius: 20px !important;
}
  .icon-circle {
    width: 90px; /* Ikon lebih kecil lagi */
    height: 90px;
  }

  .icon-circle img {
    max-width: 80px; /* Gambar lebih kecil */
    max-height: 80px;
  }

  .service-title {
    font-size: 1rem; /* Ukuran font lebih kecil */
  }

  .service-description {
    font-size: 0.8rem;
  }
}

@media (min-width: 992px) { /* Untuk layar desktop ke atas */
  .d-block.w-100 {
      max-height: 500px; /* Batasi tinggi maksimum pada desktop */
      object-fit: cover; /* Sesuaikan gambar agar tetap terlihat bagus */
  }
}

.poster-container {
  margin-top: 50px;
}


.destination-card {
  position: relative;
  color: white;
  border-radius: 10px;
  overflow: hidden;
}
.destination-card img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.destination-card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
}
.destination-card .card-title {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  color: #f5f5dc;

}
.destination-card .card-text {
  font-size: 1rem;
}

.icon-circle i {
      font-size: 48px; /* Ukuran ikon besar */
      color: white; /* Warna ikon putih */
      margin-bottom: 10px;
    }
    
    #tourCarousel {
  max-width: 600px; /* Sesuaikan dengan lebar maksimum yang diinginkan */
  margin: 0 auto; /* Membuat carousel berada di tengah */
}

/* CSS untuk gambar poster */
.poster-img {
  width: 100%; /* Gambar akan menyesuaikan lebar carousel */
  height: auto; /* Menjaga aspek rasio gambar */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1); /* Mengubah warna ikon menjadi putih */
}