/* Responsive Styles for Studio Lighting Gear Rental */

/* Mobile-first responsive breakpoints */
@media (max-width: 575.98px) {
  /* Typography adjustments for mobile */
  :root {
    --h1-size: 1.875rem;
    --h2-size: 1.5rem;
    --h3-size: 1.25rem;
    --navbar-brand-size: 1.25rem;
  }
  
  /* Hero section mobile optimization */
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-shape {
    display: none; /* Hide decorative shapes on mobile */
  }
  
  /* Service cards mobile layout */
  .service-card {
    margin-bottom: 2rem;
  }
  
  .service-card .card-img-top {
    height: 180px;
  }
  
  /* Team cards mobile optimization */
  .team-card .card-img-top {
    height: 220px;
  }
  
  /* Contact form mobile padding */
  .contact-form {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  /* Section padding reduction */
  .section {
    padding: 3rem 0;
  }
  
  .section-sm {
    padding: 2rem 0;
  }
  
  /* Gallery mobile optimization */
  .gallery-image {
    margin-bottom: 1rem;
  }
  
  /* Price cards mobile */
  .price-card.featured {
    transform: none;
    margin-bottom: 2rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 85vh;
  }
  
  .service-card .card-img-top {
    height: 200px;
  }
  
  .team-card .card-img-top {
    height: 250px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .service-card .card-img-top {
    height: 210px;
  }
  
  .team-card .card-img-top {
    height: 260px;
  }
  
  .hero-shape {
    opacity: 0.05; /* Reduced opacity on tablets */
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section {
    min-height: 100vh;
  }
  
  /* Full hero shapes visibility */
  .hero-shape {
    opacity: 0.1;
  }
}

/* Mobile-specific animation restrictions */
@media (max-width: 991.98px) {
  /* Disable animations on mobile as per requirements */
  .service-card:hover,
  .price-card:hover,
  .gallery-image:hover {
    transform: none;
  }
  
  .service-card,
  .price-card,
  .gallery-image {
    transition: none;
  }
}

/* High contrast mode adjustments */
@media (prefers-contrast: high) {
  .service-card,
  .team-card,
  .review-card,
  .price-card,
  .faq-card {
    border: 2px solid var(--primary-charcoal);
  }
  
  .hero-shape {
    display: none;
  }
  
  .form-control {
    border: 3px solid var(--primary-charcoal);
  }
}

/* Dark mode considerations */

/* Print styles */
@media print {
  .hero-shape,
  .gallery-image:hover,
  .service-card:hover,
  .price-card:hover {
    transform: none;
    box-shadow: none;
  }
  
  .section {
    padding: 1rem 0;
  }
  
  .footer {
    background: white;
    color: black;
  }
}

/* Landscape orientation mobile adjustments */
@media (max-width: 991.98px) and (orientation: landscape) {
  .hero-section {
    min-height: 70vh;
  }
  
  .section {
    padding: 2rem 0;
  }
}

/* Focus management for accessibility */
@media (any-hover: none) {
  .service-card:focus,
  .price-card:focus,
  .gallery-image:focus {
    outline: 3px solid var(--primary-gold);
    outline-offset: 2px;
  }
} 

.hero-content {
    padding-top: 175px;
}