/* Responsive Styles for Vintage Camera Shop */

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 575.98px) {
  .hero {
    min-height: 70vh;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .hero p {
    font-size: 0.9rem;
  }
  
  section {
    padding: 2rem 0;
  }
  
  .services-item,
  .priceplan-item {
    margin-bottom: 2rem;
  }
  
  .team-member img {
    width: 120px;
    height: 120px;
  }
  
  .contact-form {
    padding: 2rem 1rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .services-item,
  .priceplan-item {
    margin-bottom: 2rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero h1 {
    font-size: 2rem;
  }
}

/* Mobile-specific: Disable autoplay and effects for Swiper on devices <768px */
@media (max-width: 767.98px) {
  .swiper {
    --swiper-autoplay-delay: 0;
  }
  
  .swiper-slide {
    animation: none !important;
    transition: none !important;
  }
  
  /* Disable hover effects on mobile */
  .services-item:hover,
  .priceplan-item:hover,
  .blog-item:hover,
  .career-item:hover {
    transform: none;
  }
  
  .gallery img:hover {
    transform: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .contact-form {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    color: black !important;
    background: white !important;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: black !important;
  }
} 