/* Responsive CSS for Sports Coaching Center */

/* Mobile devices (576px and down) */
@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem !important;
  }
  
  .hero-subtitle {
    font-size: 1rem !important;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .service-card {
    margin-bottom: 1rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .navbar-brand {
    font-size: 1.2rem !important;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Disable animations on mobile for Swiper */
  .swiper-slide {
    transition: none !important;
  }
}

/* Tablet devices (768px and down) */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .about-feature {
    padding: 1.5rem 1rem;
  }
  
  .review-card {
    padding: 1.5rem;
  }
  
  .team-member {
    padding: 1rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  /* Disable Swiper autoplay and effects on mobile */
  .swiper {
    overflow: hidden;
  }
  
  .swiper-wrapper {
    transform: none !important;
  }
}

/* Large tablets and small desktops (992px and down) */
@media (max-width: 992px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .navbar-nav {
    text-align: center;
  }
  
  .navbar-nav .nav-link {
  font-size: 10px !important;
    margin: 0.2rem 0;
  }
}

/* Very small devices (320px and down) */
@media (max-width: 320px) {
  .hero-title {
    font-size: 1.8rem !important;
  }
  
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .service-card,
  .about-feature,
  .team-member {
    padding: 1rem;
  }
  
  .btn-primary {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Prefers reduced motion for all screen sizes */
@media (prefers-reduced-motion: reduce) {
  .swiper-slide {
    transition: none !important;
  }
  
  .swiper-wrapper {
    transform: none !important;
  }
  
  .swiper {
    overflow: visible;
  }
  
  .swiper-pagination {
    display: none;
  }
}
