/* Responsive Styles - Mobile First enhancements */

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }
    
    .movie-card {
        width: 160px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .header-right .btn {
        display: none;
    }
    
    .lang-switcher {
        display: none;
    }
    
    .hero-slider {
        height: 55vh;
        min-height: 360px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-desc {
        font-size: 0.95rem;
        -webkit-line-clamp: 2;
    }
    
    .hero-actions .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .movie-card {
        width: 140px;
    }
    
    .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 14px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .auth-card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 16px;
    }
    
    .logo-text {
        font-size: 1.15rem;
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    .hero-slider {
        height: 50vh;
        min-height: 320px;
    }
    
    .section {
        padding: 32px 0;
    }
    
    .section-header,
    .carousel-wrapper,
    .movies-grid,
    .page-header {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .movie-card {
        width: 130px;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* Touch friendly */
@media (hover: none) {
    .movie-card:hover {
        transform: none;
    }
    
    .card-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    }
    
    .card-play {
        transform: scale(0.9);
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}