/* Gymnastics and Yoga Template - Main CSS */
:root {
  /* Primary Color Palette - 5 colors + shades */
  --primary-purple: #6B46C1;
  --primary-purple-light: #8B5CF6;
  --primary-purple-dark: #553C9A;
  
  --secondary-teal: #14B8A6;
  --secondary-teal-light: #2DD4BF;
  --secondary-teal-dark: #0F766E;
  
  --accent-coral: #FB7185;
  --accent-coral-light: #FDA4AF;
  --accent-coral-dark: #E11D48;
  
  --neutral-sage: #6B7280;
  --neutral-sage-light: #9CA3AF;
  --neutral-sage-dark: #4B5563;
  
  --accent-gold: #F59E0B;
  --accent-gold-light: #FCD34D;
  --accent-gold-dark: #D97706;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-teal) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--accent-coral) 0%, var(--accent-gold) 100%);
  --gradient-accent: linear-gradient(135deg, var(--secondary-teal) 0%, var(--primary-purple) 100%);
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  --font-size-h1: 2rem;
  --font-size-h2: 1.75rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --font-brand: 1.125rem;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  
  /* Border Radius */
  --border-radius: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 1.5rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--neutral-sage-dark);
  background-color: #ffffff;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--neutral-sage-dark);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }

p {
  margin-bottom: var(--spacing-sm);
  font-size: var(--font-size-base);
}

/* Header Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: var(--font-brand) !important;
  font-weight: 700;
  color: var(--primary-purple) !important;
}

.navbar-nav .nav-link {
  font-size: 10px;
  font-weight: 500;
  color: var(--neutral-sage-dark) !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-purple) !important;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../FLE_images/fhfg_hero-bg.webp') center/cover;
  opacity: 0.2;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  color: white;
}

.hero h1 {
  color: white;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.hero p {
  font-size: var(--font-size-large);
  opacity: 0.9;
  margin-bottom: var(--spacing-lg);
}

/* Section Styles */
.section {
  padding: var(--spacing-xxl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-title {
  color: var(--primary-purple);
  margin-bottom: var(--spacing-sm);
}

.section-subtitle {
  color: var(--neutral-sage);
  font-size: var(--font-size-large);
  margin-bottom: var(--spacing-md);
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--neutral-sage-dark);
}

/* Card Styles */
.card {
  border: none;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-body {
  overflow-x: hidden;
  padding: var(--spacing-md);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.service-card {
  text-align: center;
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-xl);
  background: white;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-price {
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--accent-gold);
  margin: var(--spacing-sm) 0;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.team-member {
  text-align: center;
  padding: var(--spacing-md);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--spacing-md);
  border: 4px solid var(--primary-purple-light);
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--spacing-lg);
  background: white;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
}

.form-control {
  border: 2px solid #e5e7eb;
  border-radius: var(--border-radius);
  padding: var(--spacing-sm);
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(107, 70, 193, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: var(--spacing-sm) var(--spacing-lg);
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gradient-primary);
}

/* FAQ Section */
.faq-item {
  margin-bottom: var(--spacing-md);
  border: 1px solid #e5e7eb;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  background: var(--neutral-sage-light);
  padding: var(--spacing-md);
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-purple-light);
  color: white;
}

.faq-answer {
  padding: var(--spacing-md);
  background: white;
}

/* Footer */
.footer {
  background: var(--gradient-accent);
  color: white;
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
  margin-top: var(--spacing-xxl);
}

.footer h5 {
  color: white;
  margin-bottom: var(--spacing-md);
}

.footer p, .footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-light-custom {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.rounded-xl {
  border-radius: var(--border-radius-xl) !important;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: var(--spacing-sm) 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
} 