/* Responsive CSS for Musical Instruments Template */

/* Extra Small devices (portrait phones) */
@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 1.1rem !important;
  }
  
  .navbar-nav {
    text-align: center;
    padding: 1rem 0;
  }
  
  .hero-section {
    min-height: 80vh;
    padding: 3rem 0;
  }
  
  h1 {
    font-size: 1.6rem;
  }
  
  h2 {
    font-size: 1.4rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .service-card,
  .price-card,
  .team-card,
  .feature-card {
    margin-bottom: 1.5rem;
  }
  
  .price-card.featured {
    transform: none;
    border-color: var(--primary-coral);
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .contact-form,
  .contact-info {
    margin-bottom: 2rem;
  }
  
  .footer {
    text-align: center;
    padding: 2rem 0 1rem;
  }
  
  /* Disable hover effects on mobile */
  .service-card:hover,
  .price-card:hover,
  .team-card:hover,
  .feature-card:hover,
  .case-card:hover,
  .career-card:hover,
  .info-card:hover,
  .blog-card:hover,
  .gallery-item:hover {
    transform: none;
  }
}

/* Small devices (landscape phones) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 85vh;
  }
  
  .navbar-toggler {
    border: 2px solid var(--primary-purple);
  }
  
  .service-card,
  .price-card {
    margin-bottom: 2rem;
  }
}

/* Medium devices (tablets) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .hero-content {
    padding-right: 2rem;
    padding-top: 275px;
}
  
  .service-image {
    height: 180px;
  }
  
  .team-photo {
    width: 110px;
    height: 110px;
  }
  
  .gallery-image {
    height: 220px;
  }
}

/* Large devices (desktops) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-section {
    min-height: 95vh;
  }
  
  .service-image {
    height: 190px;
  }
  
  .gallery-image {
    height: 240px;
  }
}

/* Extra large devices (large desktops) */
@media (min-width: 1200px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .container {
    max-width: 1200px;
  }
  
  .service-image {
    height: 200px;
  }
  
  .gallery-image {
    height: 250px;
  }
}

/* Height-based media queries for better mobile experience */
@media (max-height: 600px) and (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .gallery-section,
  .contact-section {
    display: none;
  }
  
  .hero-section {
    min-height: auto;
    background: none;
    color: black;
  }
  
  .hero-section::before {
    display: none;
  }
  
  .section-padding {
    padding: 1rem 0;
  }
  
  h1, h2, h3 {
    color: black;
  }
  
  .service-card,
  .price-card,
  .team-card,
  .feature-card,
  .review-card,
  .case-card,
  .timeline-item,
  .career-card,
  .info-card,
  .blog-card,
  .faq-card {
    border: 1px solid #ccc;
    box-shadow: none;
    background: white;
  }
}

/* Dark mode support (if user prefers) */

/* High contrast mode */
@media (prefers-contrast: high) {
  .service-card,
  .price-card,
  .team-card,
  .feature-card,
  .review-card,
  .case-card,
  .career-card,
  .info-card,
  .blog-card,
  .faq-card {
    border: 2px solid var(--text-dark);
  }
  
  .btn-primary {
    border: 2px solid var(--text-dark);
  }
  
  .form-control:focus {
    border-color: var(--text-dark);
  }
} 