@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --spa-green:        #3E8E41;
  --spa-green-light:  #A2ECD0;
  --spa-green-dark:   #2D7041;
  --spa-accent:       #238B57;
  --spa-cream:        #F3FAF6;
  --spa-light-green:  #D0F5E4;
  --spa-dark-green:   #2D7041;
}

/* Base Styles */
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--spa-cream);
  margin: 0;
  padding: 0;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6,
.font-playfair {
  font-family: 'Playfair Display', serif;
}

/* Sticky Navbar */
.navbar {
  top: 0;
  z-index: 1030;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  color: var(--spa-green) !important;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
}

.navbar-nav .nav-link {
  color: var(--spa-green) !important;
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  color: var(--spa-green-dark) !important;
}

/* Hero Section */
.hero-section {
  background: url('../img/hero_bg.jpg') center center / cover no-repeat fixed;
  min-height: 75vh;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero-section .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/* Buttons */
.btn-spa {
  background: linear-gradient(135deg, var(--spa-accent), var(--spa-green));
  color: white;
  border: none;
  transition: all 0.3s ease;
}

.btn-spa:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(72, 213, 143, 0.3);
}

.btn.transition {
  transition: all 0.3s ease;
}

.btn.transition:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Service Cards */
.service-card {
  background-color: var(--spa-cream);
  border: none;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(72, 213, 143, 0.15);
}

/* Modals */
.modal {
  z-index: 1050 !important;
}

.modal-backdrop {
  z-index: 1040 !important;
  background-color: rgba(0, 0, 0, 0.5);
}

body.modal-open {
  overflow: hidden;
}

/* Utilities */
.text-spa-accent {
  color: var(--spa-accent) !important;
}

.text-spa-green {
  color: var(--spa-green) !important;
}

.text-spa-blue {
  color: #007B8A !important;
}

.bg-spa-cream {
  background-color: var(--spa-cream) !important;
}

.bg-spa-green {
  background-color: var(--spa-green) !important;
}

/* Contact Icons */
.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--spa-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

/* Forms */
.form-control:focus,
.form-select:focus {
  border-color: var(--spa-accent);
  box-shadow: 0 0 0 0.2rem rgba(72, 213, 143, 0.25);
}

/* Checkmark Icon */
.checkmark {
  width: 24px;
  height: 24px;
  background-color: var(--spa-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
}

/* Social Icons */
.social-icon {
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: var(--spa-accent) !important;
}

/* Footer */
footer {
  margin-top: auto;
}

.footer-bg {
  background-color: var(--spa-green);
  color: white;
  padding: 1rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
    background-attachment: scroll;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .icon-circle {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Icon Circle */
.icon-circle {
  width: 48px;
  height: 48px;
  background-color: var(--spa-light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--spa-dark-green);
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease;
}

.icon-circle:hover {
  background-color: var(--spa-accent);
  color: white;
}

/* Smooth Scroll + Spacing for Sticky Navbar */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* Preloader */
#preloader {
  transition: opacity 0.5s ease;
  z-index: 9999;
  pointer-events: auto;
}

/* Review Card Hover */
.review-card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
  box-shadow: 0 0.8rem 1.2rem rgba(0, 0, 0, 0.1);
}

