/* Responsive CSS for Music Jingle Creation Template */

/* Mobile First Approach */
/* Extra Small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  /* NO ANIMATIONS ON MOBILE */
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  
  /* Hero Section Mobile */
  #hero {
    min-height: 80vh;
    padding: 2rem 0;
    text-align: center;
  }
  
  #hero h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  #hero p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  /* Hide decorative shapes on mobile */
  .hero-shape-1,
  .hero-shape-2 {
    display: none;
  }
  
  /* Section Padding Mobile */
  section {
    padding: 2.5rem 0;
  }
  
  /* Typography Mobile */
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  /* Navbar Mobile */
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  /* Service Cards Mobile */
  .service-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
  
  /* Team Members Mobile */
  .team-member img {
    width: 120px;
    height: 120px;
  }
  
  /* Contact Form Mobile */
  .contact-form {
    padding: 1.5rem;
    margin: 0 1rem;
  }
  
  /* Gallery Mobile */
  .gallery-item img {
    height: 200px;
  }
  
  /* Process Steps Mobile */
  .process-step {
    padding: 1.5rem 0.5rem;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* Footer Mobile */
  #footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  #footer .col-md-3 {
    margin-bottom: 2rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  #hero {
    min-height: 85vh;
  }
  
  #hero h1 {
    font-size: 1.9rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  .team-member img {
    width: 130px;
    height: 130px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  #hero h1 {
    font-size: 2.25rem;
  }
  
  .service-card {
    height: auto;
    min-height: 300px;
  }
  
  .team-member img {
    width: 140px;
    height: 140px;
  }
  
  .gallery-item img {
    height: 220px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  #hero h1 {
    font-size: 2.5rem;
  }
  
  .service-card {
    min-height: 350px;
  }
  
  .gallery-item img {
    height: 240px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  #hero h1 {
    font-size: 2.75rem;
  }
  
  .service-card {
    min-height: 380px;
  }
  
  .gallery-item img {
    height: 260px;
  }
  
  /* Container max width for very large screens */
  .container {
    max-width: 1140px;
  }
}

/* Print Styles */
@media print {
  #header,
  #footer {
    display: none;
  }
  
  section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  .service-card,
  .review-card,
  .faq-card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Ensure crisp rendering on high DPI displays */
  .service-card,
  .review-card,
  .faq-card {
    border-width: 0.5px;
  }
}

/* Landscape Orientation Adjustments */
@media (orientation: landscape) and (max-height: 600px) {
  #hero {
    min-height: 100vh;
  }
  
  section {
    padding: 2rem 0;
  }
}

/* Dark Mode Support (if user has dark mode preference) */

/* Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  /* Already handled in main.css, but reinforcing here */
  .service-card:hover,
  .gallery-item:hover img {
    transform: none;
  }
}

/* Focus Styles for Accessibility */
@media (min-width: 768px) {
  .btn:focus,
  .form-control:focus,
  .navbar-nav .nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
  }
} 

body {
    overflow-x: hidden;
}

.hero-content {
    padding-top: 175px;
}