/* ========================================
   GYMNASTICS & YOGA RETREAT - MAIN STYLES
   ======================================== */

/* Color Palette Variables */
:root {
  --primary-sage: #8FBC8F;
  --primary-lavender: #B19CD9;
  --primary-peach: #FFCBA4;
  --primary-coral: #FF7F7F;
  --primary-mint: #98E4D6;
  
  /* Light shades */
  --sage-light: #A8D1A8;
  --lavender-light: #C7B3EC;
  --peach-light: #FFD7B7;
  --coral-light: #FF9999;
  --mint-light: #ADEFDE;
  
  /* Dark shades */
  --sage-dark: #76A976;
  --lavender-dark: #9883C6;
  --peach-dark: #E6B491;
  --coral-dark: #E66C6C;
  --mint-dark: #85D1C3;
  
  /* Neutral colors */
  --text-dark: #2C3E50;
  --text-light: #6C757D;
  --bg-light: #F8F9FA;
  --white: #FFFFFF;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    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: 0.5em;
}

h1 {
  font-size: 2.2rem;
  color: var(--text-dark);
}

h2 {
  font-size: 2rem;
  color: var(--text-dark);
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.3rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.text-primary { color: var(--primary-sage) !important; }
.text-secondary { color: var(--primary-lavender) !important; }

/* Header & Navigation */
.navbar {
  background: linear-gradient(135deg, var(--white) 0%, var(--sage-light) 100%);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  padding: 0.8rem 0;
}

.navbar-brand {
  font-size: 1.3rem !important;
  font-weight: 700;
  color: var(--text-dark) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-dark) !important;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-coral) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--mint-light) 50%, var(--peach-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../FLE_images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Buttons */
.btn {
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-sage), var(--sage-dark));
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--sage-dark), var(--primary-sage));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.2rem;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--primary-coral);
  margin-bottom: 2rem;
}

.section-desc {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, var(--white) 0%, var(--lavender-light) 100%);
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--bg-light);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(143, 188, 143, 0.25);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #34495E 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

.footer p, .footer a {
  color: #BDC3C7;
  text-decoration: none;
}

.footer a:hover {
  color: var(--primary-coral);
}

.footer-bottom {
  border-top: 1px solid #4A5568;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
}

/* FAQ Section */
.faq-section {
  background: var(--white);
}

.faq-item {
  background: var(--bg-light);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--primary-sage);
  color: var(--white);
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--sage-dark);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--text-light);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery Section */
.gallery-section {
  background: var(--bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

/* Space page */
#space {
  min-height: 70vh;
  background: linear-gradient(135deg, var(--mint-light), var(--sage-light));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin: 2rem 0;
}

/* Swiper Customization */
.swiper-pagination-bullet {
  background: var(--primary-sage);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-sage);
}

/* Team Section Styles */
.team-section {
  background: linear-gradient(135deg, var(--peach-light) 0%, var(--coral-light) 100%);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 5px solid var(--white);
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.team-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-coral);
  font-weight: 500;
}

/* Reviews Section Styles */
.reviews-section {
  background: var(--white);
}

.review-item {
  background: linear-gradient(135deg, var(--mint-light), var(--sage-light));
  padding: 2rem;
  border-radius: 20px;
  margin: 1rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.review-text {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-coral);
}

/* About Section Styles */
.about-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

/* Service Card Enhancements */
.service-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.3rem 0;
  color: var(--text-light);
}

.service-features li::before {
  content: '✓';
  color: var(--primary-sage);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
} 