/* Hero Section */
.hero-section {
  position: relative;
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 40px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  max-width: 700px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4rem);
  margin-bottom: 15px;
}

.hero-content p {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
}

/* Overview */
.overview-section {
  padding: 80px 20px;
  background: #f8f8f8;
  text-align: center;
}

.overview-divider {
  width: 100px;
  height: 3px;
  background: var(--accent-color);
  margin: 25px auto;
}

/* Facilities */
.facilities-section {
  padding: 80px 20px;
  text-align: center;
}

.facilities-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.facility-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  padding: 25px;
  transition: all 0.4s ease;
}

.facility-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-dark);
}

.facility-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.facility-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.facility-card p {
  font-family: 'Lora', serif;
  line-height: 1.7;
}

/* Opening Hours / Treatments */
.treatments-section {
  padding: 80px 20px;
  background: #f8f8f8;
  text-align: center;
}

.treatments-container {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
}

/* CTA Section */
.cta-section {
  padding: 40px 20px;
  background: var(--primary-color);
  color: #fff;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-container h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-container p {
  font-family: "Lora", serif;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cta-container .btn-primary {
  padding: 12px 30px;
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.cta-container .btn-primary:hover {
  transform: scale(1.1);
}
.cta-section a {
  color: white;
  text-decoration: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideDown {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    height: auto;
    opacity: 1;
  }
}