:root {
  --primary-dark: #1f1f1f;
  --accent-green: #6b8e23;
  --accent-green-dark: #556b2f;
  --accent-beige: #f5f1e8;
}

body {
  padding-top: 70px;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
}

.hero-section {
  min-height: 90vh;
  background: linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)),
              url("../assets/images/homestay-hero.jpg");
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  color: #ffffff !important;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
  color: #ffffff;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

.navbar-brand {
  letter-spacing: 0.3px;
}

.logo-img {
  height: 40px;
  width: auto;
}

.nav-link {
  font-weight: 500;
}

.bg-light {
  background-color: var(--accent-beige) !important;
}

.info-card,
.location-box {
  background-color: var(--accent-beige);
}

section h1,
section h2,
section h3 {
  color: var(--primary-dark);
}

.btn {
  border-radius: 30px;
}

.btn-main {
  background-color: var(--accent-green);
  color: white;
  border: none;
  border-radius: 30px;
}

.btn-main:hover {
  background-color: var(--accent-green-dark);
  color: white;
}

.card {
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.facility-card {
  overflow: hidden;
  transition: 0.3s;
}

.facility-card:hover {
  transform: translateY(-5px);
  border: 1px solid var(--accent-green);
}

.facility-large-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.small-facility-box {
  font-weight: 500;
  color: var(--primary-dark);
  transition: 0.3s;
}

.small-facility-box:hover {
  transform: translateY(-3px);
  border: 1px solid var(--accent-green);
}

.room-img {
  height: 260px;
  object-fit: cover;
}

.detail-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.gallery-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.footer-custom {
  background-color: #2f3e1f;
  color: white;
  font-size: 14px;
}