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

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5));
  z-index: 1;
}

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

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

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

/* ====================== */
/* Overview Section */
/* ====================== */
.overview-section {
  padding: 60px 20px;
  background-color: #f0f6f6;
  text-align: center;
}

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

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

/* ====================== */
/* Spa Facilities */
/* ====================== */
.spa-section {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
}

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

.spa-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.spa-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.spa-card i {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 16px;
}

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

/* ====================== */
/* Opening Times */
/* ====================== */
.opening-times-section {
  padding: 70px 20px;
  background: #f8f9fa;
  text-align: center;
}

.times-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 800px;
  margin: 30px auto;
}

.time-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.time-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

/* ====================== */
/* Treatments Section */
/* ====================== */
.treatments-section {
  padding: 70px 20px;
  background: #fff;
  text-align: center;
}

.treatments-grid {
  max-width: 1000px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.treatment-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  font-family: 'Lora', serif;
  line-height: 1.6;
}

/* ====================== */
/* Spa Contact */
/* ====================== */
.spa-contact-section {
  padding: 60px 20px;
  background: #f0f6f6;
  text-align: center;
}

.spa-contact-info {
  max-width: 700px;
  margin: 30px auto;
  font-size: 1.1rem;
}

.spa-contact-info p {
  margin: 15px 0;
}

.spa-contact-info a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

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

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

/* ====================== */
/* Responsive */
/* ====================== */
@media (max-width: 768px) {
  .spa-container, .treatments-grid, .times-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content h1 {
    font-size: 2.6rem;
  }
}

/* ====================== */
/* Membership Brochure */
/* ====================== */
.brochure-section {
  padding: 60px 20px;
  background: #f8f9fa;
  text-align: center;
}

.brochure-container {
  max-width: 700px;
  margin: 0 auto;
}

.brochure-container h2 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  padding: 14px 32px;
  margin-top: 15px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s;
}

.download-btn:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}