/* Responsive CSS for Slowness Workshop Website */

/* Mobile-first responsive design */

/* Extra Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem !important;
  }
  
  .section-title {
    font-size: 1.5rem !important;
  }
  
  .services-card, .team-card, .blog-card {
    margin-bottom: 1.25rem;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .navbar-brand {
    font-size: 1rem !important;
  }
  
  /* Disable autoplay/effects on mobile for Swiper */
  .swiper-container {
    --swiper-autoplay-enabled: false;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 2.5rem !important;
  }
  
  .section {
    padding: 3rem 0;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 3rem !important;
  }
  
  .services-card {
    margin-bottom: 2.10rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-title {
    font-size: 3.5rem !important;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Disable animations and effects on mobile devices */
@media (max-width: 768px) {
  .swiper-container .swiper-slide {
    transition: none !important;
  }
  
  .services-card:hover,
  .team-card:hover,
  .blog-card:hover {
    transform: none !important;
  }
  
  .gallery-item:hover img {
    transform: none !important;
  }
}
