/* 
* Dutch Cycling & Car Tours - Responsive CSS
* Created for a website template featuring combined bike and car tours in the Netherlands
*/

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .section-header h3 {
    font-size: 2.2rem;
  }
  
  .service-item img,
  .blog-img img {
    height: 180px;
  }
  
  .member-img img {
    height: 280px;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .hero {
    padding-top: 80px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero h2 {
    font-size: 1.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .section-header {
    margin-bottom: 2.5rem;
  }
  
  .section-header h3 {
    font-size: 2rem;
  }
  
  .page-section {
    padding: 4rem 0;
  }
  
  .service-item,
  .price-plan-item,
  .team-member,
  .blog-item,
  .feature-card,
  .destination-card,
  .route-item,
  .heritage-item,
  .tulip-card,
  .highlight-card,
  .theme-card,
  .season-card,
  .equipment-item,
  .fleet-item {
    margin-bottom: 30px;
  }
  
  .price-plan-item.featured {
    transform: scale(1);
  }
  
  .price-plan-item.featured:hover {
    transform: translateY(-10px);
  }
  
  .contact-info {
    margin-top: 3rem;
  }
  
  footer {
    padding: 4rem 0 2rem;
  }
  
  footer .col-lg-4:not(:last-child) {
    margin-bottom: 2rem;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  :root {
    --section-spacing: 4rem;
  }
  
  .header {
    padding: 1rem 0;
  }
  
  .breadcrumb-container {
    margin-top: 70px;
  }
  
  .hero {
    padding-top: 70px;
    min-height: auto;
    padding-bottom: 4rem;
  }
  
  .hero-image {
    margin-top: 3rem;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .section-header h2 {
    font-size: 0.9rem;
  }
  
  .section-header h3 {
    font-size: 1.8rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .about-feature,
  .feature-item,
  .info-item {
    padding: 1.5rem;
  }
  
  .service-item img,
  .blog-img img,
  .feature-card img,
  .destination-card img,
  .route-item img,
  .heritage-item img,
  .tulip-card img,
  .highlight-card img,
  .theme-card img,
  .season-card img,
  .equipment-item img,
  .fleet-item img {
    height: 200px;
  }
  
  .price-plan-item {
    padding: 2rem 1.5rem;
  }
  
  .member-img img {
    height: 250px;
  }
  
  .swiper-container {
    padding-bottom: 2.5rem;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }

  #space {
    min-height: 300px;
    margin: 3rem 0;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  :root {
    --section-spacing: 3rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero h2 {
    font-size: 1.3rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-header h3 {
    font-size: 1.5rem;
  }
  
  .service-item h4,
  .price-plan-item h4,
  .feature-item h4,
  .member-info h4,
  .info-item h4,
  .blog-content h4,
  .feature-card h4,
  .destination-card h4,
  .route-item h4,
  .heritage-item h4,
  .tulip-card h4,
  .highlight-card h4,
  .theme-card h4,
  .season-card h4,
  .equipment-item h4,
  .fleet-item h4 {
    font-size: 1.2rem;
  }
  
  .price-plan-item .price {
    font-size: 2rem;
  }
  
  .review-content p {
    font-size: 0.95rem;
  }
  
  .accordion-button {
    padding: 1.2rem;
    font-size: 1rem;
  }
  
  .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  footer h3 {
    font-size: 1.3rem;
  }
  
  #space {
    min-height: 200px;
    margin: 2rem 0;
  }

  /* Reduce animations on mobile for performance */
  @media (prefers-reduced-motion), (max-width: 767.98px) {
    .about-feature:hover,
    .service-item:hover,
    .feature-item:hover,
    .price-plan-item:hover,
    .team-member:hover,
    .info-item:hover,
    .blog-item:hover,
    .gallery-item:hover,
    .feature-card:hover,
    .destination-card:hover,
    .route-item:hover,
    .heritage-item:hover,
    .tulip-card:hover,
    .highlight-card:hover,
    .theme-card:hover,
    .season-card:hover,
    .equipment-item:hover,
    .fleet-item:hover {
      transform: none;
    }
    
    .team-member:hover .member-img img,
    .blog-item:hover .blog-img img,
    .gallery-item:hover img,
    .feature-card:hover img,
    .destination-card:hover img,
    .route-item:hover img,
    .heritage-item:hover img,
    .tulip-card:hover img,
    .highlight-card:hover img,
    .theme-card:hover img,
    .season-card:hover img,
    .equipment-item:hover img,
    .fleet-item:hover img {
      transform: none;
    }
  }
} 