/* Pottery Workshop - Responsive CSS */

/* Mobile First Approach */
@media (max-width: 767.98px) {
  /* Disable Swiper autoplay and effects on mobile */
  .reviews-swiper .swiper-button-next,
  .reviews-swiper .swiper-button-prev {
    display: none;
  }
  
  .reviews-swiper {
    padding: 1rem 0;
    margin: 1rem 0;
  }
  
  .reviews-swiper .swiper-slide {
    padding: 2rem 1rem;
    margin: 0 10px;
    min-height: 150px;
  }
  
  .review-text {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .review-author {
    font-size: 1rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  .service-card,
  .price-card {
    margin-bottom: 2rem;
  }
  
  .team-photo {
    width: 150px;
    height: 150px;
  }
  
  .timeline-item {
    flex-direction: column;
    text-align: center;
  }
  
  .timeline-content {
    margin-left: 0;
    margin-top: 1rem;
  }
  
  .contact-form {
    padding: 2rem 1rem;
  }
  
  section {
    padding: 2rem 0;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .team-photo {
    width: 180px;
    height: 180px;
  }
}

/* Desktop */
@media (min-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .team-photo {
    width: 200px;
    height: 200px;
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .hero,
  .footer {
    display: none;
  }
  
  body {
  overflow-x: hidden;
    font-size: 12pt;
    line-height: 1.4;
  }
  
  .section-title {
    font-size: 18pt;
  }
} 