body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #002b5c;
  overflow-x: hidden;
}

.landing-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1400px;
  margin: auto;
  background-color: #002b5c;
  color: white;
}

.left-content {
  flex: 1 1 60%;
  min-width: 300px;
  position: relative;
}

.main-image {
  width: 100%;
  height: auto;
}

/* Bungkus gambar dan tombol WA */
.image-wrapper {
  position: relative;
  width: 100%;
  height: auto;
}

.wa-gloryf-container {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 10;
}

/* Tombol WA */
.wa-gloryf {
  max-width: 130px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  border: 2px solid white; /* ✅ Bingkai putih */
  padding: 6px; /* ✅ Jarak isi agar terlihat seperti tombol */
  background-color: #ffffffcc; /* ✅ Putih semi-transparan di belakang */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.wa-gloryf:hover {
  transform: scale(1.07);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  background-color: #ffffffee; /* Sedikit lebih terang saat hover */
}


/* Responsif */
@media (max-width: 1024px) {
  .wa-gloryf {
    max-width: 110px;
  }
}

@media (max-width: 768px) {
  .wa-gloryf {
    max-width: 90px;
  }
}

@media (max-width: 992px) and (max-height: 500px) {
  .wa-gloryf {
    max-width: 75px;
  }
}


.right-content {
  flex: 1 1 40%;
  min-width: 300px;
  padding: 40px 30px;
  background-color: #003b7a;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right-content h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.right-content ul {
  padding-left: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.dream {
  font-weight: bold;
  margin-bottom: 20px;
}

/* Card Brosur */
.brochure-box {
  background-color: #fff;
  color: #000;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 100%;
  height: 190px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brochure-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.brochure-text {
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 0;
}

.brochure-text .highlight {
  font-weight: 700;
  font-size: 1.15rem;
  display: inline-block;
  margin: 2px 0;
}

/* Tombol Brosur */
.btn-brochure {
  background-color: #e74c3c;
  color: white;
  padding: 10px 30px;
  border: none;
  margin-top: 10px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-brochure:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

/* Banner Video */
.video-banner {
  width: 100%;
  background-color: #e53935;
  text-align: center;
  padding: 15px;
}

.video-banner button {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.video-banner button:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

/* Modal Video */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.modal-content {
  position: relative;
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 320px;
  background-color: transparent;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
}

/* Tombol Close Video */
.close-video-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #ffffffee;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.close-video-btn:hover {
  background-color: #dc3545;
  color: white;
  transform: scale(1.1);
}

.close-video-btn i {
  font-size: 16px;
}

/* WA Floating Icon */
.wa-float-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: linear-gradient(145deg, #25d366, #1ebc59);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.wa-float-icon i {
  font-size: 26px;
  color: white;
}

.wa-float-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Bootstrap Icon Tweaks */
.bi {
  font-family: 'bootstrap-icons' !important;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}

.bi-fire {
  font-size: 1.3em;
  color: #ff6f00 !important;
}

.bi-play-circle-fill {
  font-size: 1.4em;
  color: white;
}

.bi-whatsapp {
  font-size: 1.5em;
}

/* Navbar */
.custom-navbar {
  position: relative; /* agar ikut scroll */
  z-index: 1000;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 12px 24px;
}

/* Styling untuk logo khusus */
.logo-font {
  color: #fff;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  line-height: 1.2;
}

.logo-font .main-title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.logo-font .sub-title {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 4px;
}

/* Hapus padding-top karena tidak perlu lagi */
body {
  padding-top: 0 !important;
  margin: 0;
}

/* Responsif: kecilkan font dan padding navbar di HP */
@media (max-width: 768px) {
  .custom-navbar {
    padding: 10px 16px;
  }

  .logo-font .main-title {
    font-size: 1.3rem;
    letter-spacing: 1px;
  }

  .logo-font .sub-title {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }
}

/* Paksa posisi logo ke kiri walau ada text-center/justify-content-center */
.custom-navbar .container-fluid {
  justify-content: flex-start !important; /* override center */
}

.logo-font {
  text-align: left !important;
}



  .right-content, .left-content {
    width: 100%;
  }

  .right-content {
    padding: 30px 20px;
  }

  .wa-gloryf {
    width: 140px;
    bottom: 10px;
    left: 10px;
  }

  .btn-brochure {
    padding: 8px 20px;
    font-size: 15px;
  }

  .brochure-text {
    font-size: 1rem;
  }

/* Tentang Section */
.tentang-section {
  padding: 60px 20px;
  background-color: #fff;
}

.tentang-title {
  font-weight: 600;
  margin-bottom: 20px;
}

.tentang-description {
  max-width: 900px;
  margin: auto;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}

/* Ganti semua icon fitur jadi gambar PNG konsisten */
.feature-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* Gunung */
.feature-icon.mountain {
  content: url("assets/image/mountain.png");
}

/* Lokasi */
.feature-icon.location {
  content: url("assets/image/location.png");
}

/* Senyum Besar Terbuka */
.feature-icon.laugh {
  content: url("assets/image/laugh.png");
}

.feature-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: #333;
}

.brochure-links {
  font-size: 14px;
}

.brochure-link {
  text-decoration: underline;
  color: black;
  font-weight: 500;
}

/* Footer Bar */
.footer-bar {
  background-color: #d62828;
  padding: 15px 0;
  position: relative;
  z-index: 1;
  font-size: 16px;
}

@media (max-width: 767px) and (orientation: landscape) {
  .landing-container, .tentang-section {
    overflow-x: hidden;
    width: 100vw;
  }

  .left-content img,
  .right-content,
  .tentang-section .container {
    width: 100%;
    max-width: 100%;
  }
}

