/* Responsive Styles for Red Carpet Productions */

/* Large Screens (up to 1200px) */
@media screen and (max-width: 1200px) {
    
    .container {
        width: 95%;
    }
    
    .slide .content h1 {
        font-size: 3rem;
    }
    
    .slide .content p {
        font-size: 1.3rem;
    }
    
    /* Brand logo slider responsive adjustments */
    .brand-logo {
        min-width: 150px;
        height: 110px;
    }
}


/* Medium Screens (up to 992px) */
@media screen and (max-width: 992px) {

    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .slide .content h1 {
        font-size: 2.5rem;
    }
    
    .slide .content p {
        font-size: 1.2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-image {
        width: 100%;
    }
    
    /* Brand logo slider responsive adjustments */
    .brand-logo {
        min-width: 140px;
        height: 100px;
        margin: 0 8px;
    }
    
    @keyframes scrollBrands {
        100% {
            transform: translateX(calc(-140px * 7.5));
        }
    }
    
    .models-grid, .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .buttons {
        bottom: 30px;
        right: 30px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Screens (up to 768px) */
@media screen and (max-width: 768px) {

    .navbar {
        padding: 15px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: var(--secondary-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 20px;
        transition: 0.4s;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0 0 20px 0;
        width: 100%;
    }
    
    .nav-menu li a {
        display: block;
        font-size: 1.1rem;
        padding: 10px 0;
    }
    
    .search-icon {
        position: static;
    }
    
    .search-form {
        position: relative;
        width: 100%;
        margin-top: 15px;
    }
    
    .login-btn {
        margin-top: 10px;
    }
    
    .login-btn a {
        display: block;
        text-align: center;
    }
    
    .slide .content h1 {
        font-size: 2rem;
    }
    
    .slide .content p {
        font-size: 1rem;
    }
    
    .slide .content .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .buttons button {
        width: 40px;
        height: 40px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Brand logo slider responsive adjustments for small screens */
    .brand-logo {
        min-width: 100px;
        height: 80px;
        margin: 0 4px;
        padding: 10px;
    }
    
    @keyframes scrollBrands {
        100% {
            transform: translateX(calc(-100px * 7.5));
        }
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Extra Small Screens (up to 576px) */
@media screen and (max-width: 576px) {
    .logo a {
        font-size: 1.5rem;
    }
    
    .slide .content h1 {
        font-size: 1.8rem;
    }
    
    .slide .content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .models-grid, .services-grid {
        grid-template-columns: 1fr;
    }
    
    .model-image {
        height: 300px;
    }
    
    .brand-logo {
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about, .services, .featured-models, .brands-section {
        padding: 70px 0;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-card .icon {
        font-size: 2.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .social-icons a {
        width: 35px;
        height: 35px;
    }
    
    .scroll-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}