/* Global Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.7;
  background-color: #fdfdfd;
  scroll-behavior: smooth;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Links */
a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: #0d6efd;
}

/* Navbar */
.navbar {
  padding: 15px 0;
  transition: all 0.4s ease-in-out;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.navbar .nav-link {
  font-weight: 500;
  margin-left: 22px;
  color: #3a0303;
  position: relative;
}
.navbar .nav-link::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: #3a0303;
  margin: auto;
  transition: width 0.3s ease-in-out;
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
}
.navbar-brand img {
  height: 40px;       
  width: auto;       
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.3)),
              url('assets/air.webp') center center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: #fff;
 
}
.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  text-shadow: 2px 4px 12px rgba(0,0,0,0.7);
  animation: fadeDown 1s ease-out;
}
.hero p {
  font-size: 1.3rem;
  margin-top: 20px;
  color: #f1f1f1;
  animation: fadeUp 1.2s ease-out;
}
.hero .btn {
  padding: 12px 35px;
  border-radius: 35px;
  font-weight: 600;
  margin-top: 25px;
  transition: all 0.3s ease;

}


/* Hero Animations */
@keyframes fadeDown {
  from {opacity: 0; transform: translateY(-40px);}
  to {opacity: 1; transform: translateY(0);}
}
@keyframes fadeUp {
  from {opacity: 0; transform: translateY(40px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Section */
section {
  padding: 90px 0;
}
section h2 {
  font-size: 2.4rem;
  margin-bottom: 45px;
  display: inline-block;
}

/* About Section */
#about img {
  border-radius: 18px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}
#about img:hover {
  transform: scale(1.05);
}
#about p {
  font-size: 1.08rem;
  color: #555;
  line-height: 1.8;
}

/* Services / General Cards */
.card {
  border-radius: 20px;
  overflow: hidden;
  border: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.card img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover img {
  transform: scale(1.1);
}
.card-body {
  padding: 28px;
}
.card-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #0d6efd;
}
.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

/* Facilities Cards */
.facility-card {
  border-radius: 18px;
  transition: all 0.4s ease;
  background: #fff;
}
.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.facility-card i {
  transition: transform 0.3s ease;
}
.facility-card:hover i {
  transform: scale(1.2);
}

/* Gallery */
.gallery-img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  height: 100%;
  object-fit: cover;
}
.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.gallery-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  border-radius: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-overlay:hover {
  opacity: 1;
}

/* Contact Section */
.contact-header {
  background: url('assets/contact-bg.jpg') center/cover no-repeat;
  position: relative;
  padding: 100px 20px;
  text-align: center;
  color: white;
}
.contact-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
}
.contact-header h1,
.contact-header p {
  position: relative;
  z-index: 2;
}
.contact-header h1 {
  font-size: 3rem;
  font-weight: bold;
}
.contact-header p {
  font-size: 1.25rem;
}
.contact-section {
  padding: 60px 0;
}
.info-box {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.info-box i {
  font-size: 1.3rem;
  color: #6AB04C;
  margin-right: 8px;
}
iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 15px;
}
.form-control {
  border-radius: 10px;
  padding: 12px;
}
.btn-custom {
  border-radius: 10px;
  padding: 12px;
  font-weight: 600;
  background-color: #6AB04C;
  border: none;
  color: #fff;
}
.btn-custom:hover {
  background-color: #5a943f;
}
a, a:hover {
  color: #6AB04C;
}

/* Footer */
footer {
  background: #111;
  color: #ccc;
  font-size: 0.95rem;
  padding: 50px 0;
}
footer p {
  margin: 0;
}
footer a {
  color: #0d6efd;
}
footer a:hover {
  color: #fff;
}
/* Gambar besar kiri */
.gallery-big {
  width: 100%;
  height: 420px;   /* ikut contoh: agak tinggi tapi tidak full screen */
  object-fit: cover;
  border-radius: 8px;
}

/* Gambar kecil kanan */
.gallery-small {
  width: 100%;
  height: 200px;   /* biar sejajar rapi */
  object-fit: cover;
  border-radius: 8px;
}

/* Overlay "Lihat Semua Foto" */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  border-radius: 8px;
  opacity: 0;
  transition: 0.3s ease;
}

/* ================================
   GLOBAL STYLES – PARIBAN HOT SPRING
   ================================ */
:root {
  --red:#b71c1c;
  --red-dark:#8e0000;
  --ink:#1f2937;
  --muted:#6b7280;
  --bg:#faf8f8;
  --card:#ffffff;
  --border:#ece5e5;
  --tint:#fff4f4;
  --max-width:1200px;
  --radius:14px;
  --shadow-sm:0 4px 12px rgba(0,0,0,.04);
  --shadow-lg:0 12px 28px rgba(0,0,0,.08);
}

html, body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--ink);
  margin: 0;
  padding: 0;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--ink);
}

a {text-decoration:none; color:inherit}
a:hover {color:var(--red)}

/* ================================
   WRAPPER
   ================================ */
.site-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 16px;
}

/* ================================
   BUTTONS
   ================================ */
.btn-red {
  background: var(--red);
  color: #fff !important;
  border-radius: 10px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .25s ease;
}
.btn-red:hover {background: var(--red-dark); transform:translateY(-2px)}

.btn-red-outline {
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red) !important;
  border-radius: 10px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .25s ease;
}
.btn-red-outline:hover {background: var(--red); color:#fff !important}

/* ================================
   SEARCH & FILTER
   ================================ */
.search-wrap {
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow-sm);
}
.search-wrap .input-group-text {
  background:#fff;
  border:none;
  color: var(--red);
}
.btn-search {
  background: var(--red);
  border:none;
  color:#fff;
  font-weight:600;
}
.btn-search:hover {background: var(--red-dark)}
.filter-row .form-select, .filter-row .form-control {min-height:44px}

/* ================================
   ROOM CARD
   ================================ */
.room-card {
  background: var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow:hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.room-card:hover {transform:translateY(-6px);box-shadow:0 20px 40px rgba(0,0,0,.12)}
.room-media {
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:10px;
}
.room-body {
  padding:20px;
}
.room-title {
  font-size:1.5rem;
  font-weight:700;
  margin-bottom:8px;
  color:var(--ink);
}
.room-sub {
  color:var(--muted);
  font-size:.95rem;
  margin-bottom:10px;
}
.chip {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--tint);
  border-radius:999px;
  padding:6px 12px;
  color:var(--red);
  font-weight:600;
  font-size:.9rem;
}

/* ================================
   PRICE BADGE
   ================================ */
.price-badge {
  position:absolute;
  right:18px;
  top:18px;
  background:#fff;
  border:1px solid var(--border);
  padding:10px 14px;
  border-radius:12px;
  text-align:right;
  min-width:150px;
  box-shadow: var(--shadow-sm);
}
.price-now {
  color:var(--red);
  font-weight:800;
  font-size:1.2rem;
}
.price-old {
  color:#9ca3af;
  text-decoration:line-through;
  font-size:.85rem;
}

/* ================================
   TABLE PRICING
   ================================ */
.table-pricing thead th {
  background:#fff7f7;
  color:#7c2d2d;
  font-weight:700;
}
.table-pricing td, .table-pricing th {
  vertical-align:middle;
  font-size:.95rem;
}
.table-pricing tbody tr:hover {
  background:#fff9f9;
  transition:background .2s ease;
}

/* ================================
   DESC CLAMP
   ================================ */
.desc-clamp {
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
  text-overflow:ellipsis;
  line-height:1.4rem;
}
.desc-expanded {
  display:block;
  max-height:none;
  -webkit-line-clamp:unset;
}

/* ================================
   THUMBNAILS
   ================================ */
.thumbs {
  display:flex;
  gap:8px;
  margin-top:10px;
}
.thumbs img {
  width:64px;
  height:44px;
  object-fit:cover;
  border-radius:6px;
  cursor:pointer;
  border:2px solid transparent;
}
.thumbs img.active {border-color:var(--red)}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 767.98px) {
  .room-media {height:220px}
  .price-badge {position:static; margin-top:12px; text-align:left}
  .room-title {font-size:1.25rem}
}
