/* Voice Actor Portfolio - Responsive CSS */

/* Extra Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .hero-section h1 {
        font-size: 4rem;
    }
    
    .hero-section h2 {
        font-size: 2rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (max-width: 1199.98px) {
    .hero-section h1 {
        font-size: 3.5rem;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .hero-section h2 {
        font-size: 1.5rem;
    }
    
    .navbar-nav {
        text-align: center;
        padding-top: 1rem;
    }
    
    .timeline {
        padding-left: 1rem;
    }
    
    .timeline::before {
        left: 8px;
    }
    
    .timeline-item::before {
        left: 0px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 767.98px) {
    .hero-section {
        padding: 2rem 0;
        min-height: 70vh;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section h2 {
        font-size: 1.25rem;
    }
    
    .navbar-brand {
        font-size: 1.1rem !important;
    }
    
    .feature-card, .service-card, .price-card, .team-member,
    .review-card, .case-study-card, .blog-card, .career-card, .info-card {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .price-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .team-member img {
        width: 80px;
        height: 80px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline {
        padding-left: 0.5rem;
    }
    
    .timeline-item {
        padding-left: 1.5rem;
    }
    
    /* Disable Swiper autoplay and effects on mobile */
    .swiper {
        overflow: visible;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section h2 {
        font-size: 1.1rem;
    }
    
    .hero-section p {
        font-size: 0.9rem;
    }
    
    .feature-card, .service-card, .price-card, .team-member,
    .review-card, .case-study-card, .blog-card, .career-card, .info-card {
        padding: 1rem;
    }
    
    .team-member img {
        width: 60px;
        height: 60px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .breadcrumb-icon {
        width: 16px;
        height: 16px;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .accordion-button {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
    
    /* Conservative font sizes */
    h1 { font-size: 1.8rem !important; }
    h2 { font-size: 1.5rem !important; }
    h3 { font-size: 1.3rem !important; }
    h4 { font-size: 1.1rem !important; }
    h5 { font-size: 1rem !important; }
    p { font-size: 0.9rem !important; }
}

/* Print styles */
@media print {
    .navbar, .breadcrumb-nav, footer {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
}
