/* Responsive CSS for Cinema Template */

/* Large screens */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .container-xl {
    max-width: 1200px;
  }
}

/* Medium screens (tablets) */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-section {
    min-height: 80vh;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  section {
    padding: 3rem 0;
  }
}

/* Small screens (mobile) */
@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-section {
    min-height: 70vh;
    text-align: center;
  }
  
  .navbar-brand {
    font-size: 1.25rem !important;
  }
  
  .service-card,
  .feature-card,
  .price-card {
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* Disable Swiper autoplay and effects on mobile */
  .swiper {
    --swiper-navigation-size: 24px;
  }
  
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .core-info-grid {
    grid-template-columns: 1fr;
  }
}

/* Extra small screens */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .service-price,
  .price-amount {
    font-size: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .team-member {
    padding: 1.5rem;
  }
  
  .review-card {
    padding: 1.5rem;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }
  
  .timeline-item {
    padding-left: 2rem;
  }
  
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .swiper {
    --swiper-transition-duration: 0ms;
  }
  
  .swiper-slide {
    transition: none !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .service-card,
  .feature-card,
  .price-card,
  .team-member,
  .review-card,
  .contact-form {
    border: 2px solid var(--cinema-charcoal);
  }
  
  .btn-primary {
    border: 2px solid var(--cinema-charcoal);
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .contact-form,
  .swiper-pagination,
  .swiper-navigation {
    display: none !important;
  }
  
  body {
  overflow-x: hidden;
    font-size: 12pt;
    line-height: 1.4;
    color: black;
    background: white;
  }
  
  section {
    page-break-inside: avoid;
    padding: 1rem 0;
  }
}

