.hero-image img {
  width: 100%;
  height: 60vh; /* dikurangi ±30% dari 60vh standar */

  display: block;
}

/* Mobile lebih pendek lagi */
@media (max-width: 790px) {
  .hero-image img {
    height: 38vh;
  }
}

.btn-reservasi {
  background: #198754;
  color: #fff;
  border-radius: 10px;
}
.card {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
}

/* ==================================================
   ROOT & THEME
================================================== */
:root {
  --primary: #0f3d2e; /* hijau tua syari'ah */
  --secondary: #e1e42a; /* emas elegan */
  --accent: #198754;
  --light: #f8f9fa;
  --dark: #1c1c1c;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background-color: #f5f6f8;
  color: #2b2b2b;
  line-height: 1.7;
}

/* ==================================================
   TYPOGRAPHY
================================================== */
h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
  letter-spacing: -0.3px;
}

h2 {
  color: var(--primary);
}

p {
  color: #626369;
}

/* ==================================================
   HEADER & HERO
================================================== */
header {
  background: linear-gradient(rgba(15, 61, 46, 0.85), rgba(15, 61, 46, 0.85));
}

.hero-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  filter: brightness(0.85);
}

/* ==================================================
   NAVBAR
================================================== */
.navbar {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-link {
  font-weight: 500;
  margin-left: 10px;
  transition: all 0.25s ease;
}

.nav-link:hover {
  color: var(--secondary) !important;
}

/* HERO ***********************/
.hero {
  position: relative;
  margin-top: 70px; /* supaya tidak ketutup navbar */
}

.hero-img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  display: block;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 20px;
}

.hero-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-overlay p {
  margin-bottom: 20px;
  font-size: 1rem;
  opacity: 0.9;
}

/* Button */
.hero-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #00c853;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #00b342;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 790px) {
  .hero-img {
    height: 30vh;
  }

  .hero-overlay h1 {
    font-size: 1.5rem;
  }
}

/* ==================================================
   SECTION SPACING
================================================== */
section {
  scroll-margin-top: 90px;
}

.container > h2 {
  margin-bottom: 25px;
}

/* ==================================================
   CARD KAMAR (PRO LOOK)
================================================== */
.card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

.card-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card ul {
  padding-left: 18px;
  margin-bottom: 15px;
}

.card ul li {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.card .fw-bold {
  font-size: 1.05rem;
  color: var(--primary);
}

/* ==================================================
   BUTTONS
================================================== */
.btn-reservasi {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 600;
  border: none;
  transition: all 0.25s ease;
}

.btn-reservasi:hover {
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ==================================================
   FORM BOOKING (HOTEL STYLE)
================================================== */
#form-booking {
  background: #ffffff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.form-label {
  font-weight: 500;
  font-size: 0.9rem;
}

.form-control,
.form-select {
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid #ddd;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.15rem rgba(15, 61, 46, 0.25);
}

/* ==================================================
   FASILITAS
================================================== */
.list-group-item {
  background: transparent;
  border: none;
  padding-left: 0;
  font-weight: 500;
  color: #444;
}

/* ==================================================
   KONTAK & MAP
================================================== */
#kontak p {
  font-size: 0.95rem;
}

iframe {
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ==================================================
   ALERT KONFIRMASI
================================================== */
.alert-success {
  border-radius: 12px;
  font-weight: 500;
}

/* ==================================================
   FOOTER
================================================== */
.footer {
  background: #111;
  color: #aaa;
  padding: 25px 15px;
  text-align: center;
  margin-top: 70px;
}

.footer p {
  margin: 0;
  font-size: 0.85rem;
}

/* ==================================================
   RESPONSIVE
================================================== */
@media (max-width: 790px) {
  .hero-image {
    height: 240px;
  }

  header h1 {
    font-size: 1.8rem;
  }

  .card-img-top {
    height: 190px;
  }

  #form-booking {
    padding: 25px;
  }
}

/* ==================================================
   FLOATING WHATSAPP BUTTON
================================================== */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.25s ease;
}

.wa-float:hover {
  transform: scale(1.08);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* Mobile safe spacing */
@media (max-width: 790px) {
  .wa-float {
    bottom: 16px;
    right: 16px;
  }
}

.btn-check-sekarang {
  background: linear-gradient(135deg, #ff9800, #ff5722);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-check-sekarang:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.hero-section {
  position: relative;
  width: 100%;
}

.hero-image {
  width: 100%;
  max-height: 60%;
  object-fit: cover;
  display: block;
}

/* BUTTON POSITION */
.btn-check-sekarang {
  position: relative;
  bottom: 60px;
  left: 130px;
  background: linear-gradient(135deg, #ff9800, #ff5722);
  color: #fff;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.btn-check-sekarang:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  color: #fff;
}

/* RESPONSIVE MOBILE */
@media (max-width: 790px) {
  .btn-check-sekarang {
    bottom: 15px;
    left: 15px;
    padding: 10px 20px;
    font-size: 14px;
  }
}
