/* Main CSS for Home Spa Night Kits Template */

:root {
  /* Primary Color Palette */
  --spa-primary: #8B5A6B;
  --spa-secondary: #A4C3A2;
  --spa-accent: #F4E6C7;
  --spa-neutral: #6B5B73;
  --spa-luxury: #C8A882;
  
  /* Light/Dark Shades */
  --spa-primary-light: #B88B99;
  --spa-primary-dark: #654248;
  --spa-secondary-light: #C4E0C2;
  --spa-secondary-dark: #7A9278;
  --spa-accent-light: #F9F1E0;
  --spa-accent-dark: #E6D1A1;
  --spa-neutral-light: #8A7F8F;
  --spa-neutral-dark: #504A56;
  --spa-luxury-light: #DCC5A8;
  --spa-luxury-dark: #A68E6B;
  
  /* Additional Colors */
  --spa-white: #FFFFFF;
  --spa-off-white: #FAFAFA;
  --spa-text-dark: #2C2C2C;
  --spa-text-light: #666666;
  --spa-border: #E0E0E0;
  
  /* Gradients */
  --spa-gradient-1: linear-gradient(135deg, var(--spa-primary), var(--spa-secondary));
  --spa-gradient-2: linear-gradient(45deg, var(--spa-accent), var(--spa-luxury));
  --spa-gradient-3: linear-gradient(180deg, var(--spa-primary-light), var(--spa-primary-dark));
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden !important;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--spa-text-dark);
  font-size: 16px;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }

/* Header */
.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 700;
  color: var(--spa-primary) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--spa-text-dark) !important;
  transition: color 0.3s ease;
  margin: 0 0.5rem;
}

.navbar-nav .nav-link:hover {
  color: var(--spa-primary) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--spa-gradient-1);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
  color: white;
}

.hero-decorative {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: var(--spa-accent);
  border-radius: 50%;
  opacity: 0.2;
  z-index: 1;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--spa-primary);
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--spa-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-feature {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 15px;
  background: var(--spa-off-white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 3rem;
  color: var(--spa-primary);
  margin-bottom: 1rem;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--spa-primary);
  margin-top: 1rem;
}

/* Features Section */
.features-section {
  background: var(--spa-gradient-2);
  color: white;
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-item i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

/* Price Plan Section */
.price-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-card.featured {
  border: 3px solid var(--spa-primary);
  transform: scale(1.05);
}

.price-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--spa-primary);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--spa-border);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background-size: cover;
  background-position: center;
  border: 5px solid var(--spa-accent);
}

/* Reviews Section */
.reviews-slider {
  margin-top: 3rem;
}

.review-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  margin: 0 1rem;
  text-align: center;
}

.review-stars {
  color: var(--spa-luxury);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Case Studies Section */
.casestudy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.casestudy-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.casestudy-item:hover {
  transform: translateY(-5px);
}

.casestudy-content {
  padding: 2rem;
}

/* Process Section */
.process-timeline {
  position: relative;
  margin-top: 3rem;
}

.process-item {
  display: flex;
  margin-bottom: 3rem;
  align-items: center;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--spa-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin-right: 2rem;
  flex-shrink: 0;
}

/* Timeline Section */
.timeline-container {
  position: relative;
  margin-top: 3rem;
}

.timeline-item {
  margin-bottom: 2rem;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

/* Career Section */
.career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.career-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.career-item:hover {
  transform: translateY(-5px);
}

/* Core Info Section */
.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.coreinfo-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.coreinfo-item i {
  font-size: 2.5rem;
  color: var(--spa-primary);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-section {
  background: var(--spa-gradient-3);
  color: white;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 10px;
  padding: 1rem;
  font-size: 1rem;
}

.form-control:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
  background: white;
}

.btn-primary {
  background: var(--spa-luxury);
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--spa-luxury-dark);
  transform: translateY(-2px);
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: 1.5rem;
}

.blog-link {
  color: var(--spa-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--spa-primary-dark);
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1.5rem;
  background: var(--spa-primary);
  color: white;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--spa-primary-dark);
}

.faq-answer {
  padding: 1.5rem;
  background: white;
  border-radius: 0 0 10px 10px;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: var(--spa-text-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h5 {
  color: var(--spa-accent);
  margin-bottom: 1rem;
}

.footer-section a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--spa-accent);
}

.footer-bottom {
  border-top: 1px solid var(--spa-neutral);
  padding-top: 1rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb-section {
  padding: 2rem 0;
  background: var(--spa-off-white);
}

.breadcrumb-image {
  width: 100%;
  max-width: 200px;
  height: auto;
}

/* Space Page */
#space {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--spa-gradient-1);
}

/* Swiper Styles */
.swiper-pagination-bullet {
  background: var(--spa-primary);
}

.swiper-pagination-bullet-active {
  background: var(--spa-luxury);
}

/* Utility Classes */
.text-spa-primary { color: var(--spa-primary); }
.text-spa-secondary { color: var(--spa-secondary); }
.bg-spa-primary { background-color: var(--spa-primary); }
.bg-spa-secondary { background-color: var(--spa-secondary); }
.bg-spa-gradient-1 { background: var(--spa-gradient-1); }
.bg-spa-gradient-2 { background: var(--spa-gradient-2); }

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Contact Info Styling */
#contact-info-phone,
#contact-info-email,
#contact-info-address {
  margin-bottom: 0.5rem;
  color: var(--spa-text-light);
}

/* Copyright Styling */
#site-copyright {
  color: var(--spa-text-light);
  font-size: 0.9rem;
}
