/* Folklore Podcast Template - Responsive CSS */

/* Mobile First Approach */
@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem !important;
  }
  
  .hero-subtitle {
    font-size: 1rem !important;
  }
  
  .section-title {
    font-size: 1.8rem !important;
  }
  
  .section-subtitle {
    font-size: 1rem !important;
  }
  
  .navbar-brand {
    font-size: 1.3rem !important;
  }
  
  .card {
    margin-bottom: 1rem;
  }
  
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .team-member img {
    width: 120px;
    height: 120px;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .price-amount {
    font-size: 1.5rem;
  }
  
  .process-step {
    padding: 1.5rem;
  }
  
  .timeline-item {
    padding-left: 2rem;
  }
  
  /* Disable Swiper autoplay and effects on mobile */
  .swiper-container {
    --swiper-autoplay-delay: 0;
    padding-bottom: 40px;
  }
  
  .swiper-slide {
    transition: none !important;
  }
  
  .swiper-effect-fade {
    --swiper-effect-fade: none;
  }
  
  .swiper-pagination {
    bottom: 5px !important;
  }
  
  .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    margin: 0 3px !important;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    width: 35px !important;
    height: 35px !important;
    margin-top: -17.5px !important;
  }
  
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 16px !important;
  }
}

/* Small tablets */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 2.2rem !important;
  }
  
  .section-title {
    font-size: 1.9rem !important;
  }
  
  .gallery-item img {
    height: 220px;
  }
}

/* Medium tablets */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.95rem;
  }
  
  .team-member img {
    width: 140px;
    height: 140px;
  }
  
  .gallery-item img {
    height: 230px;
  }
}

/* Large tablets and small desktops */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-title {
    font-size: 2.3rem;
  }
  
  .gallery-item img {
    height: 240px;
  }
}

/* Large desktops */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .gallery-item img {
    height: 250px;
  }
  
  .container-fluid {
    max-width: 1400px;
  }
}

/* Extra large screens */
@media (min-width: 1400px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .contact-form {
    padding: 4rem;
  }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 600px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .hero-title {
    font-size: 2rem !important;
  }
  
  .hero-subtitle {
    font-size: 1rem !important;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .gallery-item img,
  .team-member img,
  .card-img-top {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .swiper-pagination,
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto !important;
    page-break-inside: avoid;
  }
  
  .card {
    page-break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  .section-title {
    font-size: 18pt;
  }
  
  .section-subtitle {
    font-size: 14pt;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .card,
  .btn,
  .gallery-item img,
  .swiper-slide {
    transition: none !important;
    transform: none !important;
  }
  
  .hero-section::before {
    animation: none !important;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 0;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .card {
    border: 2px solid var(--dark-primary);
  }
  
  .btn-submit {
    border: 2px solid var(--white);
  }
  
  .form-control {
    border-width: 3px;
  }
}

/* Dark theme preference support (even though we exclude dark mode styles) */
@media (prefers-color-scheme: dark) {
  /* Keep light theme but adjust for better contrast */
  .hero-section::before {
    background: rgba(44, 62, 80, 0.9);
  }
  
  .card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }
} 