/* Chess Coaching Website - Responsive Styles */

/* Tablet Styles */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-decorative {
    display: none;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .services-item {
    margin-bottom: 20px;
  }
  
  .team-photo {
    width: 150px;
    height: 150px;
  }
  
  .contact-form {
    padding: 30px;
  }
}

/* Mobile Styles */
@media (max-width: 767.98px) {
  :root {
    --h1-size: 1.8rem;
    --h2-size: 1.5rem;
    --h3-size: 1.2rem;
  }
  
  .hero-section {
    min-height: 70vh;
    padding: 20px 0;
  }
  
  .section-padding {
    padding: 40px 0;
  }
  
  .navbar-brand {
    font-size: 1.2rem !important;
  }
  
  .btn-primary,
  .btn-outline-primary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .services-item {
    padding: 20px;
    margin-bottom: 15px;
  }
  
  .services-price {
    font-size: 1.5rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .contact-form {
    padding: 20px;
    margin: 0 10px;
  }
  
  .testimonial-item {
    margin: 10px 5px;
    padding: 20px;
  }
  
  .price-plan {
    padding: 25px 20px;
    margin-bottom: 20px;
  }
  
  .price-plan.featured {
    transform: none;
  }
  
  .price-value {
    font-size: 2rem;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .timeline-item {
    padding-left: 40px;
  }
  
  .core-info-item {
    padding: 20px;
  }
  
  .career-item {
    padding: 20px;
  }
  
  .blog-content {
    padding: 20px;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }
  
  .footer {
    padding: 30px 0 15px;
    text-align: center;
  }
  
  /* Disable autoplay and effects for Swiper on mobile */
  .swiper-slide {
    transition: none !important;
  }
}

/* Small Mobile Styles */
@media (max-width: 575.98px) {
  .hero-section {
    min-height: 60vh;
  }
  
  .section-padding {
    padding: 30px 0;
  }
  
  .services-item,
  .price-plan,
  .testimonial-item {
    margin: 0 5px 15px 5px;
  }
  
  .contact-form {
    margin: 0 5px;
    padding: 15px;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .timeline-item {
    padding-left: 30px;
  }
  
  .timeline-item::before {
    width: 15px;
    height: 15px;
  }
  
  .timeline-item::after {
    left: 22px;
  }
}

/* Accessibility and Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .hero-decorative {
    animation: none;
  }
  
  .services-item:hover,
  .blog-item:hover,
  .price-plan:hover {
    transform: none;
  }
  
  .gallery-item:hover img {
    transform: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
  
  .swiper-slide {
    transition: none !important;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .swiper-pagination,
  .swiper-navigation {
    display: none !important;
  }
  
  .section-padding {
    padding: 20px 0;
  }
  
  .hero-section {
    min-height: auto;
    background: white !important;
    color: black !important;
  }
  
  .contact-form {
    background: white !important;
    color: black !important;
  }
} 