/* AI Podcast Titles - Responsive CSS */

/* Mobile First Approach */

/* Extra Small Devices (phones, 576px and down) */
@media (max-width: 575.98px) {
    .navbar-brand {
        font-size: 1.38rem;
    }
    
    .display-4 {
        font-size: 1.77rem;
    }
    
    .h4 {
        font-size: 1.13rem;
    }
    
    .lead {
        font-size: 1.05rem;
    }
    
    #hero {
        padding-top: 70px;
        min-height: auto;
    }
    
    .btn-lg {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
    
    .card-body {
        padding: 1rem;
    overflow-x: hidden;
}
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    .fa-3x {
        font-size: 2rem !important;
    }
    
    .fa-2x {
        font-size: 1.55rem !important;
    }
    
    /* Disable animations on mobile for performance */
    .card:hover {
        transform: none;
    }
    
    #gallery img:hover {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .display-4 {
        font-size: 2rem;
    }
    
    #hero {
        padding-top: 80px;
    }
    
    .fa-3x {
        font-size: 2.51rem !important;
    }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .display-4 {
        font-size: 2.31rem;
    }
    
    #hero {
        padding-top: 90px;
    }
    
    .card-img-top {
        height: 180px;
    }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .display-4 {
        font-size: 2.63rem;
    }
    
    .card-img-top {
        height: 200px;
    }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .display-4 {
        font-size: 2.79rem;
    }
    
    .card-img-top {
        height: 220px;
    }
}

/* Navigation Responsive */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        margin-top: 0.74rem;
        border-radius: 0.5rem;
        box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    }
    
    .nav-link {
        padding: 0.5rem 0;
        text-align: center;
    }
}

/* Hero Section Responsive */
@media (max-width: 767.98px) {
    #hero .col-lg-6:last-child {
        margin-top: 2rem;
    }
    
    #hero img {
        max-width: 80%;
        height: auto;
    }
}

/* Services Grid Responsive */
@media (max-width: 767.98px) {
    .col-lg-4.col-md-6 {
        margin-bottom: 1.64rem;
    }
}

/* Team Section Responsive */
@media (max-width: 575.98px) {
    .col-lg-2.col-md-4.col-sm-6 {
        margin-bottom: 2rem;
    }
    
    .rounded-circle {
        width: 100px !important;
        height: 100px !important;
    }
}

/* Process Section Responsive */
@media (max-width: 575.98px) {
    .col-lg-2.col-md-4.col-sm-6 {
        margin-bottom: 2rem;
    }
    
    .rounded-circle[style*="width: 60px"] {
        width: 50px !important;
        height: 50px !important;
    }
}

/* Gallery Responsive */
@media (max-width: 575.98px) {
    .col-lg-3.col-md-4.col-sm-6 {
        margin-bottom: 1rem;
    }
}

/* FAQ Section Responsive */
@media (max-width: 767.98px) {
    .col-lg-6 {
        margin-bottom: 1rem;
    }
}

/* Contact Form Responsive */
@media (max-width: 767.98px) {
    .col-md-6 {
        margin-bottom: 1rem;
    }
    
    .col-md-4 {
        margin-bottom: 1.68rem;
    }
}

/* Footer Responsive */
@media (max-width: 767.98px) {
    #footer .col-lg-4 {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    #footer .row.align-items-center .col-md-6 {
        text-align: center !important;
        margin-bottom: 1rem;
    }
    
    #footer .text-end {
        text-align: center !important;
    }
}

/* Utility Classes for Responsive */
@media (max-width: 767.98px) {
    .text-center-mobile {
        text-align: center !important;
    }
    
    .mb-mobile-3 {
        margin-bottom: 1rem !important;
    }
} 