/* B2B Podcast Agency Template - Responsive Styles */

/* Tablet Styles */
@media (max-width: 991.98px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-decorative {
    width: 150px;
    height: 150px;
    top: 10%;
    right: 5%;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
  
  .service-card,
  .price-card {
    margin-bottom: 3rem;
  }
  
  .team-photo {
    width: 150px;
    height: 150px;
  }
}

/* Mobile Styles */
@media (max-width: 767.98px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  .navbar-brand { font-size: 1.1rem; }
  
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .hero-decorative {
    display: none;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .about-feature,
  .service-card,
  .feature-card,
  .price-card,
  .review-card,
  .casestudy-card,
  .process-step,
  .timeline-item,
  .career-item,
  .coreinfo-item,
  .blog-card,
  .faq-item {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .price-card .price {
    font-size: 2.5rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .contact-form,
  .contact-info {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer .col-md-3,
  .footer .col-md-4 {
    margin-bottom: 2rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 575.98px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-section {
    min-height: 60vh;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .about-feature,
  .service-card,
  .feature-card,
  .price-card,
  .review-card,
  .casestudy-card,
  .process-step,
  .timeline-item,
  .career-item,
  .coreinfo-item,
  .blog-card,
  .faq-item {
    padding: 1rem;
  }
  
  .contact-form,
  .contact-info {
    padding: 1.5rem;
  }
  
  .price-card .price {
    font-size: 2rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .process-number {
    width: 30px;
    height: 30px;
    font-size: 0.875rem;
  }
}

/* No animations on mobile - Performance optimization */
@media (max-width: 767.98px) {
  .service-card:hover,
  .price-card:hover,
  .about-feature:hover,
  .blog-card:hover,
  .gallery-item:hover img {
    transform: none;
  }
  
  /* Disable Sal.js animations on mobile */
  [data-sal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .service-card,
  .price-card,
  .about-feature,
  .feature-card,
  .review-card,
  .casestudy-card,
  .process-step,
  .timeline-item,
  .career-item,
  .coreinfo-item,
  .blog-card,
  .faq-item,
  .contact-form,
  .gallery-item {
    border-width: 3px;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .contact-form,
  .hero-decorative {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .section-padding {
    padding: 1rem 0;
  }
  
  .service-card,
  .price-card,
  .about-feature,
  .feature-card,
  .review-card,
  .casestudy-card,
  .process-step,
  .timeline-item,
  .career-item,
  .coreinfo-item,
  .blog-card,
  .faq-item {
    border: 1px solid black;
    background: white;
    page-break-inside: avoid;
  }
}

.hero-section h1 {
    padding-top: 100px;
}