/* Corporate Stress-Relief Sanatorium Template - Main CSS */

:root {
  /* Primary Color Palette - Harmonious Pastels */
  --primary-sage: #a8c5a0;      /* Calming sage green */
  --primary-lavender: #c5a8d8;  /* Soothing lavender */
  --primary-peach: #f5d5ae;     /* Warm peach */
  --primary-sky: #b8d4e3;       /* Soft sky blue */
  --primary-rose: #e8c5d1;      /* Gentle rose */
  
  /* Light/Dark Shades */
  --sage-light: #d4e8cd;
  --sage-dark: #7d9975;
  --lavender-light: #e2d4f0;
  --lavender-dark: #9b7fb0;
  --peach-light: #fae8d4;
  --peach-dark: #d4b389;
  --sky-light: #dae8f2;
  --sky-dark: #8fb5c9;
  --rose-light: #f2e0e8;
  --rose-dark: #c49fb0;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #495057;
  --black: #212529;
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-padding: 80px 0;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
overflow-x: hidden;
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; color: var(--sage-dark); }
h2 { font-size: 2.8rem; color: var(--lavender-dark); }
h3 { font-size: 2.2rem; color: var(--sage-dark); }
h4 { font-size: 1.8rem; }
h5 { font-size: 1.4rem; }
h6 { font-size: 1.2rem; }

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Button Styles */
.btn-primary {
  background: linear-gradient(135deg, var(--sage-dark), var(--primary-sage));
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(168, 197, 160, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-sage), var(--sage-light));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 197, 160, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--lavender-dark), var(--primary-lavender));
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Header Styles */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sage-dark) !important;
}

.navbar-nav .nav-link {
  color: var(--dark-gray) !important;
  font-weight: 500;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--sage-dark) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--sage-light), var(--sky-light));
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 120%;
  height: 120%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23a8c5a0" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23c5a8d8" opacity="0.1"/></svg>');
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Section Spacing */
section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* About Section */
.about-section {
  background: var(--light-gray);
}

.about-feature {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, var(--peach-light), var(--rose-light));
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  border-radius: 15px;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin: 1rem 0;
}

/* Features Section */
.features-section {
  background: var(--white);
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-lavender), var(--lavender-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 5px 20px rgba(197, 168, 216, 0.3);
}

.feature-icon i {
  font-size: 2rem;
  color: var(--white);
}

/* Price Plan Section */
.priceplan-section {
  background: linear-gradient(135deg, var(--sky-light), var(--lavender-light));
}

.price-card {
  background: var(--white);
  border-radius: 25px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.price-card.featured {
  transform: scale(1.05);
  border: 3px solid var(--primary-sage);
}

.plan-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin: 1.5rem 0;
}

/* Team Section */
.team-section {
  background: var(--light-gray);
}

.team-member {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--primary-sage);
}

/* Reviews Section */
.reviews-section {
  background: linear-gradient(135deg, var(--rose-light), var(--peach-light));
}

.review-item {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin: 1rem;
  position: relative;
}

.review-item::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-lavender);
  font-family: var(--font-heading);
}

/* Core Info Section */
.coreinfo-section {
  background: var(--white);
}

.coreinfo-item {
  background: linear-gradient(135deg, var(--sage-light), var(--sky-light));
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--lavender-light), var(--sage-light));
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--sage-light);
  border-radius: 10px;
  padding: 12px 15px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(168, 197, 160, 0.25);
}

/* Blog Section */
.blog-section {
  background: var(--light-gray);
}

.blog-item {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

/* FAQ Section */
.faq-section {
  background: var(--white);
}

.faq-item {
  background: var(--light-gray);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--primary-sage);
  color: var(--white);
  padding: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--sage-dark);
}

.faq-answer {
  padding: 1.5rem;
  background: var(--white);
  display: none;
}

/* Gallery Section */
.gallery-section {
  background: linear-gradient(135deg, var(--peach-light), var(--sky-light));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 2rem;
}

footer h5 {
  color: var(--sage-light);
  margin-bottom: 1.5rem;
}

footer a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--sage-light);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  animation: fadeInUp 0.6s ease-out;
}

/* Swiper Customization */
.swiper-pagination-bullet {
  background: var(--primary-sage);
}

.swiper-pagination-bullet-active {
  background: var(--sage-dark);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-sage);
}

/* Utility Classes */
.text-sage { color: var(--primary-sage); }
.text-lavender { color: var(--primary-lavender); }
.text-peach { color: var(--primary-peach); }
.text-sky { color: var(--primary-sky); }
.text-rose { color: var(--primary-rose); }

.bg-sage { background-color: var(--primary-sage); }
.bg-lavender { background-color: var(--primary-lavender); }
.bg-peach { background-color: var(--primary-peach); }
.bg-sky { background-color: var(--primary-sky); }
.bg-rose { background-color: var(--primary-rose); }

/* Decorative Shapes */
.shape-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.1;
  z-index: -1;
}

.shape-blob-1 {
  width: 200px;
  height: 200px;
  background: var(--primary-sage);
  top: 10%;
  left: 10%;
  animation: float 8s ease-in-out infinite;
}

.shape-blob-2 {
  width: 150px;
  height: 150px;
  background: var(--primary-lavender);
  top: 60%;
  right: 10%;
  animation: float 6s ease-in-out infinite reverse;
}

.shape-blob-3 {
  width: 100px;
  height: 100px;
  background: var(--primary-peach);
  bottom: 20%;
  left: 30%;
  animation: float 7s ease-in-out infinite;
} 