/* =========================
   GLOBAL
========================= */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&display=swap');

body {
  scroll-behavior: smooth;
  margin-top: 56px;
}

body.japanese-theme {
  font-family: 'Noto Sans JP', sans-serif !important;
  background-color: #ffffff;
  color: #2b2b2b;
  overflow-x: hidden;
}

/* =========================
   HERO
========================= */
.hero {
  height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
    url('../assets/img/IMG_20260123_092259_464.jpg') center/cover;
  display: flex;
  align-items: center;
}

/* =========================
   SECTION
========================= */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* =========================
   PRICE CARD
========================= */
.price-card {
  padding: 40px 25px;
  border-radius: 15px;
  background: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
  height: 100%;
}

.price-card i,
.price-card h5 {
  color: #bc002d;
}

/* =========================
   PROFIL
========================= */
#profil p {
  font-weight: 300;
  font-size: 1.05rem;
  max-width: 850px;
  margin: 0 auto;
  line-height: 2;
}

/* =========================
   TESTIMONI
========================= */
#testimoni {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}

#testimoni .container {
  max-width: 1200px;
}

#testimoni .row {
  justify-content: center;
  align-items: flex-start;
}

/* CARD */
.testimonial-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 360px;
  position: relative;
}

/* HEADER */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.testimonial-header img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-header strong {
  font-size: 0.95rem;
}

.rating {
  color: #fbbc04;
  font-size: 0.9rem;
}

/* REVIEW TEXT */
.review-text {
  flex-grow: 1;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 8px;

  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* saat dibuka */
.review-text.open {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}

/* READ MORE */
.read-more {
  font-size: 0.85rem;
  color: #0d6efd;
  cursor: pointer;
  font-weight: 500;
  align-self: flex-start;
}

.read-more:hover {
  text-decoration: underline;
}

/* FOOTER DALAM CARD */
.testimonial-card small {
  display: block;
  margin-top: 10px;
  color: #777;
}

.testimonial-card .review-footer {
  margin-top: auto;
}

/* =========================
   GOOGLE REVIEW LINK
========================= */
.google-review-link {
  font-size: 0.9rem;
  color: #555;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.google-review-link:hover {
  color: #0d6efd;
  text-decoration: underline;
}

/* =========================
   YOUTUBE
========================= */
.youtube-wrapper {
  max-width: 720px;
  margin: auto;
}

.youtube-thumb {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.youtube-thumb img {
  width: 100%;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 48px;
  background: rgba(0,0,0,0.7);
  border-radius: 14px;
  transform: translate(-50%, -50%);
}

.play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent white;
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #f7f7f7;
  padding: 60px 20px;
  color: #111;
  font-size: 15px;
}

/* ALAMAT */
.footer-address {
  max-width: 1100px;
  margin: 0 auto 40px;
  text-align: left;
}

.footer-address p {
  line-height: 1.6;
}

/* LOGO */
.footer-logos {
  max-width: 1100px;
  margin: 0 auto 50px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-logos img {
  max-height: 90px;
  object-fit: contain;
}

/* SOSIAL MEDIA */
.footer-social-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-social-wrapper h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

/* LIST SOSIAL */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ITEM */
.footer-social a {
  display: flex;
  align-items: center;
  gap: 14px;

  color: #111;
  text-decoration: none;
  font-size: 15px;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

/* ICON KOTAK */
.footer-social a i {
  width: 38px;
  height: 38px;
  background: #eaeaea;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  color: #444;
  transition: all 0.3s ease;
}

/* HOVER */
.footer-social a:hover {
  background: #ececec;
}

.footer-social a:hover i {
  background: #d6d6d6;
  color: #000;
}

.footer-social a:hover span {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-address,
  .footer-social-wrapper {
    text-align: center;
  }

  .footer-social {
    align-items: center;
  }

  .footer-social a {
    justify-content: center;
  }

  .footer-logos {
    gap: 30px;
  }

  .footer-logos img {
    max-height: 70px;
  }
}

/* =========================
   MAPS SECTION
========================= */

.maps-section {
  text-align: center;
  margin: 40px 0 80px;
}

.maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: #0d6efd;
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(13,110,253,0.25);
  transition: all 0.3s ease;
}

.maps-btn:hover {
  background: #0b5ed7;
  transform: translateY(-2px);
}

/* =========================
   VIDEO / BANNER SECTION
========================= */

.video-section {
  margin-top: 0;
  padding-top: 0;
}

.video-banner {
  max-width: 1100px;
  margin: 0 auto 100px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .maps-section {
    margin: 30px 0 60px;
  }

  .video-banner {
    margin-bottom: 70px;
    border-radius: 14px;
  }
}

/* =========================
   HARGA SAJA
========================= */

#harga {
  padding: 80px 0;
}

/* CARD HARGA */
#harga .price-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;

  /* BINGKAI BIRU */
  border: 2px solid #e3ecff;
  box-shadow: 0 10px 25px rgba(0, 80, 255, 0.08);

  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

/* HOVER */
#harga .price-card:hover {
  border-color: #1e6bff;
  box-shadow: 0 18px 45px rgba(0, 80, 255, 0.18);
  transform: translateY(-6px);
}

/* NOMOR BULAT */
#harga .price-card .number {
  display: inline-block;
  background: #1e6bff;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 14px;
  margin-bottom: 16px;
}

/* JUDUL */
#harga .price-card h4,
#harga .price-card h5 {
  color: #b3002d;
  font-weight: 600;
  margin-bottom: 10px;
}

/* HARGA */
#harga .price-card .price {
  font-size: 30px;
  font-weight: bold;
  color: #222;
}

/* DESKRIPSI KECIL */
#harga .price-card small,
#harga .price-card p {
  color: #666;
  font-size: 14px;
  margin-top: 6px;
}

/* TOMBOL BOOKING */
#harga .price-card .btn {
  margin-top: 18px;
  padding: 12px 26px;
  border-radius: 14px;
  font-weight: 500;
}

/* ===== FASILITAS : HANYA BINGKAI BIRU ===== */

#fasilitas {
  background: #f8f9fa; /* atau biarkan bg-light dari Bootstrap */
}

#fasilitas .card {
  background: #ffffff;
  border-radius: 20px;
  border: 2px solid #0d6efd; /* BINGKAI BIRU */
  padding: 20px;
  box-shadow: 0 8px 20px rgba(13,110,253,0.12);
  transition: all 0.3s ease;
}

/* Hover halus (opsional, tetap profesional) */
#fasilitas .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(13,110,253,0.25);
}

.navbar-logo {
  width: 36px;
  height: auto;
  margin-right: 10px;
}

.navbar-title {
  font-size: 1.15rem;
  font-weight: 600;
  white-space: nowrap;
}

.footer-copyright {
  background: #1f2428;
  color: #ffffff;
  text-align: center;
  padding: 14px 10px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.footer-copyright .brand {
  font-weight: 600;
}

.jam-operasional {
  margin-top: 20px;
  padding: 16px 20px;
  border-left: 5px solid #0d6efd; /* biru */
  background: #f8f9fa;
  border-radius: 8px;
}

.jam-operasional h4 {
  margin-bottom: 6px;
  font-weight: 600;
  color: #0d6efd;
}

.jam-operasional p {
  margin: 0;
  color: #555;
}

.jam-operasional {
  max-width: 420px;
  margin: 30px auto 20px; /* tengah */
}

.jam-operasional h4 {
  font-size: 20px;
}

.alamat {
  margin-top: 30px;
}

.jam-operasional {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* NAVBAR LINK NORMAL */
.navbar-dark .navbar-nav .nav-link {
  color: #cfd8dc;
  font-weight: 500;
  padding: 8px 14px;
  text-decoration: none;
}

/* HOVER */
.navbar-dark .navbar-nav .nav-link:hover {
  color: #ffffff;
}

/* ACTIVE / SAAT DIKLIK */
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:focus {
  color: #0d6efd;          /* biru bootstrap */
  text-decoration: none;  /* HILANGKAN GARIS */
  outline: none;
}

.navbar-dark .navbar-nav .nav-link.active {
  border-bottom: 2px solid #0d6efd;
}

.follow-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.follow-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Follow Us kiri */
.follow-social h3 {
  margin-bottom: 15px;
}

.follow-social a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #333;
  margin-bottom: 10px;
  font-size: 16px;
}

.follow-social i {
  font-size: 30px;
  color: #0d6efd;
}

/* Logo kanan */
.follow-logos {
  display: flex;
  align-items: center;
  gap: 20px;
}

.follow-logos img {
  height: 170px;
   max-width: 200px; 
  object-fit: contain;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* KIRI */
.footer-social-wrapper {
  flex: 1;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  color: #333;
}

/* KANAN */
.footer-logo {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
}

.footer-logo img {
  height: 90px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
    flex-wrap: wrap;
  }
}
