/* Responsive CSS for Podcast Guest Matchmaking Service */

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .section-padding {
    padding: 5rem 0;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .hero-desc {
    font-size: 1.25rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 80vh;
    padding: 3rem 0;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-desc {
    font-size: 1.1rem;
  }
  
  .feature-card, .service-card, .team-card {
    margin-bottom: 2rem;
  }
  
  .price-card.featured {
    transform: none;
    margin-bottom: 2rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .process-number {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

/* DISABLE ALL ANIMATIONS ON MOBILE RESOLUTIONS */
@media (max-width: 767.98px) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  .feature-card:hover, .service-card:hover, .team-card:hover,
  .casestudy-card:hover, .career-card:hover, .coreinfo-card:hover,
  .price-card:hover, .gallery-item:hover, .blog-card:hover,
  .btn-primary:hover, .price-card.featured {
    transform: none !important;
    box-shadow: none !important;
  }
  
  .price-card.featured {
    transform: none !important;
    margin-bottom: 2rem;
  }
  
  .social-link:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  
  .hero-section::before {
    display: none !important; /* Hide decorative element */
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
    text-align: center;
  }
  
  .hero-section::before {
    display: none; /* Hide decorative element on smaller screens */
  }
  
  .section-padding {
    padding: 2.5rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-desc {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .feature-card, .service-card, .team-card, .review-card,
  .casestudy-card, .career-card, .coreinfo-card {
    margin-bottom: 1.5rem;
  }
  
  .price-card {
    margin-bottom: 1.5rem;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .team-photo {
    width: 90px;
    height: 90px;
  }
  
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .blog-card {
    margin-bottom: 1.5rem;
  }
  
  .gallery-item {
    margin-bottom: 1.5rem;
  }
  
  .gallery-image {
    height: 200px;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  /* NO ANIMATIONS ON MOBILE */
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  
  .hero-section {
    min-height: 60vh;
    padding: 1.5rem 0;
    text-align: center;
    background: var(--secondary-light); /* Simplified background */
  }
  
  .hero-section::before {
    display: none; /* Hide decorative element */
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
  
  .section-desc {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
  
  /* Navbar adjustments */
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .navbar-nav .nav-link {
    font-size: 0.95rem;
    margin: 0 0.25rem;
  }
  
  /* Card adjustments */
  .feature-card, .service-card, .team-card, .review-card,
  .casestudy-card, .career-card, .coreinfo-card, .price-card {
    padding: 1.5rem;
    margin-bottom: 1.25rem;
  }
  
  .feature-card:hover, .service-card:hover, .team-card:hover,
  .casestudy-card:hover, .career-card:hover, .coreinfo-card:hover,
  .price-card:hover {
    transform: none; /* No hover effects on mobile */
  }
  
  .service-image {
    height: 150px;
  }
  
  .service-price {
    font-size: 1.25rem;
  }
  
  .price-card.featured {
    transform: none;
    border: 2px solid var(--primary-color);
  }
  
  .price-card .price {
    font-size: 2rem;
  }
  
  .team-photo {
    width: 80px;
    height: 80px;
    border-width: 3px;
  }
  
  .process-item {
    padding: 1.5rem;
    margin-bottom: 1.25rem;
  }
  
  .process-number {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .timeline-item {
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    border-left-width: 3px;
  }
  
  /* Contact form adjustments */
  .contact-form {
    padding: 1.25rem;
  }
  
  .contact-form .form-control {
    padding: 0.625rem;
    font-size: 0.95rem;
  }
  
  .btn-primary {
    padding: 0.625rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .btn-primary:hover {
    transform: none; /* No hover effects on mobile */
  }
  
  .contact-info {
    margin-top: 2rem;
  }
  
  .contact-info h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .contact-info p {
    font-size: 0.9rem;
  }
  
  /* Blog adjustments */
  .blog-card {
    margin-bottom: 1.25rem;
  }
  
  .blog-image {
    height: 150px;
  }
  
  .blog-content {
    padding: 1.25rem;
  }
  
  .blog-title {
    font-size: 1.1rem;
  }
  
  .blog-excerpt {
    font-size: 0.9rem;
  }
  
  /* FAQ adjustments */
  .faq-card {
    padding: 1.5rem;
    margin-bottom: 1.25rem;
  }
  
  .faq-question {
    font-size: 1rem;
  }
  
  .faq-answer {
    font-size: 0.9rem;
  }
  
  /* Gallery adjustments */
  .gallery-item {
    margin-bottom: 1.25rem;
  }
  
  .gallery-item:hover {
    transform: none; /* No hover effects on mobile */
  }
  
  .gallery-image {
    height: 180px;
  }
  
  /* Footer adjustments */
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .footer p, .footer a {
    font-size: 0.9rem;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  h4 {
    font-size: 1.1rem;
  }
  
  p {
    font-size: 0.9rem;
  }
}

/* Extra extra small devices (very small phones, less than 375px) */
@media (max-width: 374.98px) {
  .hero-title {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 1.25rem;
  }
  
  .hero-subtitle, .section-subtitle {
    font-size: 0.9rem;
  }
  
  .hero-desc, .section-desc {
    font-size: 0.85rem;
  }
  
  .feature-card, .service-card, .team-card, .review-card,
  .casestudy-card, .career-card, .coreinfo-card, .price-card,
  .process-item, .timeline-item, .faq-card {
    padding: 1.25rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .blog-content {
    padding: 1rem;
  }
  
  .team-photo {
    width: 70px;
    height: 70px;
  }
  
  .process-number {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
  
  .service-image, .blog-image {
    height: 120px;
  }
  
  .gallery-image {
    height: 150px;
  }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 767.98px) and (orientation: landscape) {
  .hero-section {
    min-height: 70vh;
  }
  
  .section-padding {
    padding: 1.5rem 0;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.25rem;
  }
}

/* Print styles */
@media print {
  .navbar, .footer, .contact-section, .gallery-section {
    display: none;
  }
  
  .hero-section, .section-padding {
    padding: 1rem 0;
  }
  
  .feature-card, .service-card, .team-card, .review-card,
  .casestudy-card, .career-card, .coreinfo-card, .price-card {
    box-shadow: none;
    border: 1px solid var(--border-color);
    break-inside: avoid;
  }
  
  .hero-section {
    background: none;
    color: var(--text-dark);
  }
  
  .contact-section {
    background: none;
    color: var(--text-dark);
  }
}

/* Accessibility improvements - always disable animations for users preferring reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  .hero-section::before {
    display: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #1b16ff;
    --secondary-color: #190399;
    --text-dark: #000000;
    --text-light: #302d2d;
    --border-color: #000000;
  }
  
  .feature-card, .service-card, .team-card, .review-card,
  .casestudy-card, .career-card, .coreinfo-card, .price-card,
  .process-item, .timeline-item, .faq-card, .blog-card {
    border-width: 2px;
  }
}

/* Dark mode support */

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