/* Sports Coaching Center - Main CSS */

/* Color Palette Variables */
:root {
  --primary-orange: #ff6b35;
  --primary-green: #2d5016;
  --primary-blue: #1e3d59;
  --primary-red: #d32f2f;
  --primary-gold: #ffc107;
  
  /* Light shades */
  --light-orange: #ffb19a;
  --light-green: #7fb069;
  --light-blue: #5f7a95;
  --light-red: #e57373;
  --light-gold: #fff176;
  
  /* Dark shades */
  --dark-orange: #e55722;
  --dark-green: #1a2f0d;
  --dark-blue: #0f1e2d;
  --dark-red: #b71c1c;
  --dark-gold: #ff8f00;
  
  /* Base */
  --text-dark: #2c3e50;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #343a40;
}

/* 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: 14px;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Prefers Reduced Motion */
@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 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
h2 { font-size: 1.75rem; font-weight: 600; margin-bottom: 0.8rem; }
h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.6rem; }
h4 { font-size: 1.25rem; font-weight: 500; margin-bottom: 0.5rem; }
h5 { font-size: 1.1rem; font-weight: 500; margin-bottom: 0.4rem; }
h6 { font-size: 1rem; font-weight: 500; margin-bottom: 0.3rem; }

p { margin-bottom: 1rem; font-size: 14px; }

/* Header */
.navbar {
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  padding: 0.8rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light) !important;
}

.navbar-nav .nav-link {
  font-size: 10px !important;
  color: var(--text-light) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-gold) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  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('../images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-light);
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--primary-gold), var(--light-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* Section Styling */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--primary-green);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-gold));
}

/* About Features */
.about-feature {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--bg-light), #ffffff);
  box-shadow: 0 5px 15px 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-orange);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, var(--bg-light), #ffffff);
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  border-top: 4px solid var(--primary-orange);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-green);
  margin: 1rem 0;
}

/* Features Section */
.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

/* Team Section */
.team-member {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px 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 1rem;
  border: 4px solid var(--primary-gold);
}

/* Reviews Section */
.review-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  position: relative;
}

.review-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-orange);
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: serif;
}

.review-stars {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-section {
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--text-light);
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* FAQ Section */
.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
  color: white;
  border-radius: 10px;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
}

.faq-answer {
  padding: 1.5rem;
  display: none;
  background: var(--bg-light);
  color: var(--text-dark);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb-section {
  background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
  padding: 2rem 0;
  text-align: center;
}

.breadcrumb-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid white;
}

/* Price Plan Section */
.price-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-gold));
}

.price-card:hover {
  transform: translateY(-8px);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-green);
  margin: 1rem 0;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.price-card ul li:last-child {
  border-bottom: none;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Career Cards */
.career-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
  border-left: 4px solid var(--primary-blue);
}

.career-card:hover {
  transform: translateY(-5px);
}

.career-card span {
  display: inline-block;
  background: var(--light-blue);
  color: var(--primary-blue);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 1rem;
}

/* Swiper Customization */
.swiper {
  padding-bottom: 40px;
}

.swiper-pagination-bullet {
  background: var(--primary-orange);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary-orange);
}
