/* Responsive Design for Bookbinding Workshop */

/* Tablet Styles */
@media (max-width: 768px) {
  
  /* Disable Swiper autoplay and effects on mobile */
  .swiper-container {
    --swiper-autoplay-delay: 0;
  }
  
  .swiper-container .swiper-wrapper {
    transform: none !important;
  }
  
  /* Typography adjustments */
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.125rem; }
  
  /* Hero section adjustments */
  .hero-section {
    min-height: 70vh;
    text-align: center;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  /* Section padding */
  .section {
    padding: 3rem 0;
  }
  
  /* Cards adjustments */
  .card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  /* Contact form */
  .contact-form {
    padding: 2rem;
  }
  
  /* Gallery grid */
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  /* Navbar adjustments */
  .navbar-brand {
    font-size: 1rem;
  }
  
  /* Footer adjustments */
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  /* Team and service cards */
  .team-image,
  .service-image {
    height: 180px;
  }
  
  /* Process items */
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
}

/* Mobile Styles */
@media (max-width: 480px) {
  
  /* Further reduce typography */
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.125rem; }
  h3 { font-size: 1rem; }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  /* Section padding */
  .section {
    padding: 2rem 0;
  }
  
  /* Cards */
  .card {
    padding: 1rem;
  }
  
  /* Contact form */
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  /* Footer */
  .footer {
    padding: 1.5rem 0 1rem;
  }
  
  /* Team and service images */
  .team-image,
  .service-image {
    height: 150px;
  }
  
  /* Review slides */
  .review-slide {
    padding: 2rem 1rem;
  }
  
  /* Process numbers */
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
  }
  
  /* Timeline adjustments */
  .timeline-item {
    margin-left: 1rem;
    padding-left: 2rem;
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .contact-form,
  .btn {
    display: none !important;
  }
  
  .section {
    page-break-inside: avoid;
    padding: 1rem 0;
  }
  
  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  }
} 