/* Responsive CSS for Mood-Based Playlist Curation Template */

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    padding: 3rem 0;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    padding: 2rem 0;
    min-height: 80vh;
  }
  
  .hero-section h1 {
    font-size: 1.75rem;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .navbar-brand {
    font-size: 1.1rem !important;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  .team-card img {
    height: 200px;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-section {
    padding: 1.5rem 0;
    min-height: 70vh;
  }
  
  .hero-section h1 {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .section-title {
    font-size: 1.25rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .navbar-brand {
    font-size: 1rem !important;
  }
  
  .service-card {
    margin-bottom: 1rem;
    padding: 1.5rem;
  }
  
  .service-price {
    font-size: 1.25rem;
  }
  
  .team-card img {
    height: 180px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  /* Disable autoplay and effects on mobile for Swiper */
  .swiper-container {
    --swiper-navigation-size: 24px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .swiper-pagination,
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }
  
  .section {
    padding: 1rem 0;
  }
  
  .card {
    box-shadow: none;
    border: 1px solid var(--gray-300);
  }
} 