/* --- Color Variables --- */
:root {
  --spa-green: #2c4c3b; /* Deep elegant green */
  --spa-gold: #c5a059; /* Soft premium gold */
  --spa-gold-hover: #b08d4a;
  --spa-beige: #faf9f6; /* Warm beige background */
  --text-dark: #333333;
  --text-muted: #666666;
}

/* --- Global Styles --- */
body {
  font-family: "Lato", sans-serif;
  color: var(--text-dark);
  background-color: var(--spa-beige);
}
h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
  font-family: "Playfair Display", serif;
  color: var(--spa-green);
}
section {
  padding: 80px 0;
}

@media only screen and (max-width: 768px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }
}

/* --- Buttons --- */
.btn-gold {
  background-color: var(--spa-gold);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  border: 2px solid var(--spa-gold);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}
.btn-gold:hover {
  background-color: var(--spa-gold-hover);
  border-color: var(--spa-gold-hover);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}
.btn-outline-gold {
  background-color: transparent;
  color: var(--spa-gold);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  border: 2px solid var(--spa-gold);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}
.btn-outline-gold:hover {
  background-color: var(--spa-gold);
  color: #fff;
  transform: translateY(-3px);
}

/* --- Navbar --- */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
}
.nav-logo {
  height: 50px; /* Adjust this number to make the logo bigger or smaller */
  width: auto;
  object-fit: contain; /* Ensures the image doesn't get stretched/distorted */
  transition: transform 0.3s ease;
}

/* Optional: Adds a slight zoom effect when hovering over the logo */
.nav-logo:hover {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 600;
  color: var(--spa-green) !important;
  margin: 0 10px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: color 0.3s;
}
.nav-link:hover {
  color: var(--spa-gold) !important;
}

/* --- Hero Section --- */
.hero-section {
  background:
    linear-gradient(rgba(44, 76, 59, 0.7), rgba(44, 76, 59, 0.8)),
    url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80")
      center/cover no-repeat;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
}
.hero-section h1 {
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.hero-section p {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* --- Section Titles --- */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.section-title .divider {
  width: 70px;
  height: 3px;
  background-color: var(--spa-gold);
  margin: 0 auto;
}

/* --- Cards (Services & Packages) --- */
.spa-card {
  background: #fff;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
}
.spa-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(44, 76, 59, 0.15);
}
.spa-card img {
  height: 250px;
  object-fit: cover;
}

/* --- Packages Styling --- */
.package-card {
  text-align: center;
  padding: 40px 20px;
  border-top: 5px solid var(--spa-gold);
}
.package-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--spa-green);
  font-family: "Playfair Display", serif;
  margin: 20px 0;
}
.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  color: var(--text-muted);
}
.package-card ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* --- Why Choose Us --- */
.feature-box {
  background: #fff;
  padding: 40px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s;
}
.feature-box:hover {
  transform: translateY(-5px);
}
.feature-icon {
  font-size: 3rem;
  color: var(--spa-gold);
  margin-bottom: 20px;
}

/* --- Gallery --- */
.gallery-img {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 24px;
}
.gallery-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-img:hover img {
  transform: scale(1.1);
}

/* --- Appointment Form --- */
.appointment-section {
  background-color: var(--spa-green);
  color: #fff;
}
.appointment-section h2 {
  color: #fff;
}
.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 10px;
  padding: 15px;
}
.form-control:focus,
.form-select:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--spa-gold);
  color: #fff;
  box-shadow: none;
}
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.form-select option {
  color: var(--text-dark);
}

/* --- Footer --- */
.footer {
  background-color: #1a2e24;
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 20px;
}
.footer h4 {
  color: var(--spa-gold);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--spa-gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* --- Responsive Tweaks --- */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
}
