/* Responsive Styles for Musician Gear Rental Template */

/* Tablet Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .service-item img,
  .gallery-item img {
    height: 180px;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .contact-form {
    padding: 2.5rem 2rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  p {
    font-size: 0.95rem;
  }
  
  /* Section spacing */
  section {
    padding: 3rem 0;
  }
  
  /* Hero section mobile adjustments */
  #hero {
    min-height: 70vh;
    text-align: center;
  }
  
  #hero .col-md-6 {
    margin-bottom: 2rem;
  }
  
  /* Remove decorative shapes on mobile for performance */
  #hero::before,
  #hero::after {
    display: none;
  }
  
  /* Cards and items mobile adjustments */
  .feature-item,
  .service-item,
  .price-plan-item,
  .team-member,
  .review-item,
  .case-study-item,
  .career-item,
  .coreinfo-item,
  .contact-info,
  .blog-item,
  .faq-item,
  .timeline-item {
    margin-bottom: 1.5rem;
  }
  
  .service-item img,
  .gallery-item img {
    height: 160px;
  }
  
  .team-photo {
    width: 80px;
    height: 80px;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .plan-price {
    font-size: 2.5rem;
  }
  
  /* Contact form mobile adjustments */
  .contact-form {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  /* Footer adjustments */
  footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-section {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  /* Button adjustments */
  .btn-primary {
    width: 100%;
    margin-top: 1rem;
  }
  
  /* Navbar mobile menu - use standard Bootstrap solution */
  .navbar-nav {
    text-align: center;
    padding: 1rem 0;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
}

/* Small Mobile Styles */
@media (max-width: 576px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.35rem;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .feature-item,
  .service-content,
  .price-plan-item,
  .team-member,
  .review-item,
  .case-study-item,
  .career-item,
  .coreinfo-item,
  .contact-info,
  .blog-content,
  .faq-item,
  .timeline-item {
    padding: 1.5rem 1rem;
  }
  
  .contact-form {
    padding: 1.5rem 1rem;
  }
  
  .service-item img,
  .gallery-item img {
    height: 140px;
  }
  
  .plan-price {
    font-size: 2rem;
  }
  
  .navbar-brand {
    font-size: 1.1rem !important;
  }
}

/* Disable animations on mobile for performance and accessibility */
@media (max-width: 768px) {
  /* Remove all hover effects and transforms */
  .feature-item:hover,
  .service-item:hover,
  .price-plan-item:hover,
  .team-member:hover,
  .coreinfo-item:hover,
  .blog-item:hover,
  .gallery-item:hover,
  .btn-primary:hover {
    transform: none;
  }
  
  /* Disable all animations */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  /* Remove box-shadow changes */
  .feature-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .feature-item,
  .service-item,
  .price-plan-item,
  .team-member,
  .review-item,
  .case-study-item,
  .career-item,
  .coreinfo-item,
  .contact-info,
  .blog-item,
  .faq-item,
  .timeline-item {
    border: 2px solid var(--dark-gray);
  }
  
  .btn-primary {
    border: 2px solid var(--white);
  }
  
  .form-control:focus {
    border-width: 3px;
  }
}

/* Print styles */
@media print {
  body {
    background: white !important;
    color: black !important;
  }
  
  .navbar,
  #gallery,
  footer {
    display: none;
  }
  
  section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  .btn,
  .form-control {
    display: none;
  }
}

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