/* Responsive CSS File for Cologne Book Club Template */

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero {
    height: 90vh;
  }
  
  .section-padding {
    padding: 80px 0;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .team-img {
    width: 180px;
    height: 180px;
  }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .hero {
    height: 80vh;
  }
  
  .section-padding {
    padding: 70px 0;
  }
  
  .section-title {
    margin-bottom: 50px;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .about-feature,
  .service-item,
  .feature-item,
  .price-card,
  .team-member,
  .coreinfo-item,
  .blog-card {
    margin-bottom: 25px;
  }
  
  .team-img {
    width: 160px;
    height: 160px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .price {
    font-size: 2.2rem;
  }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .hero {
    height: auto;
    padding: 100px 0;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .about-feature,
  .service-item,
  .feature-item,
  .price-card,
  .team-member,
  .coreinfo-item,
  .blog-card {
    margin-bottom: 20px;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .team-img {
    width: 150px;
    height: 150px;
  }
  
  .price {
    font-size: 2rem;
  }
  
  .contact-form {
    padding: 30px;
  }
  
  .review-item {
    margin: 10px;
    padding: 20px;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
  .hero {
    height: auto;
    padding: 80px 0;
  }
  
  .section-padding {
    padding: 50px 0;
  }
  
  .section-title {
    margin-bottom: 30px;
  }
  
  .section-title h2 {
    font-size: 1.6rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  .navbar-toggler {
    padding: 0.25rem 0.5rem;
  }
  
  .about-feature,
  .service-item,
  .feature-item,
  .price-card,
  .team-member,
  .coreinfo-item,
  .blog-card {
    margin-bottom: 15px;
  }
  
  .team-img {
    width: 140px;
    height: 140px;
  }
  
  .price {
    font-size: 1.8rem;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  .review-item {
    margin: 5px;
    padding: 15px;
  }
  
  .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .gallery-img {
    height: 200px;
  }
}

/* Animation and transitions for mobile */
@media (max-width: 768px) {
  .swiper-container.autoplay-disabled {
    --swiper-autoplay: false;
  }
  
  .animate-fadeInUp,
  .animate-fadeIn {
    animation: none;
  }
  
  .about-feature:hover,
  .service-item:hover,
  .price-card:hover,
  .blog-card:hover {
    transform: none;
  }
  
  .gallery-img:hover {
    transform: none;
  }
} 