/* ============================================
   RESPONSIVE.CSS - עיצוב רספונסיבי ואנימציות
   ============================================ */

/* ========== TABLET BREAKPOINT ========== */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.25rem;
    }
    

    
    .hero h1 {
        font-size: clamp(3rem, 8vw, 5rem);
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
}

/* ========== MOBILE BREAKPOINT ========== */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Hero Mobile */

    
    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .hero-feature {
        padding: 1.25rem;
    }
    
    /* CTA Buttons Mobile */
    .cta-group,
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .netflix-btn-primary,
    .netflix-btn-secondary {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Sections Mobile */
    .section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
}

/* ========== SMALL MOBILE BREAKPOINT ========== */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    .desktop-only {
        display: none;
    }
    

    
    .hero h1 {
        font-size: clamp(2rem, 7vw, 3rem);
        line-height: 1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-badge {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .netflix-btn-primary,
    .netflix-btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
}

/* ========== LARGE SCREEN OPTIMIZATIONS ========== */
@media (min-width: 1440px) {
    .container {
        max-width: 1600px;
    }
    .mobile-only {
        display: none;
    }
    
    .hero h1 {
        font-size: clamp(5rem, 8vw, 8rem);
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: clamp(2.5rem, 4vw, 4rem);
    }
}

/* ========== ULTRA-WIDE SCREEN OPTIMIZATIONS ========== */
@media (min-width: 1920px) {
    .container {
        max-width: 1800px;
    }
}

/* ========== LANDSCAPE MOBILE OPTIMIZATIONS ========== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 3rem 0 2rem;
        min-height: 80vh;
    }
    
    .hero h1 {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }
    
    .hero-features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        margin: 1.5rem 0;
    }
}

/* ========== ACCESSIBILITY & REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero h1::after {
        animation: none;
    }
    
    .hero-badge {
        animation: none;
    }
    
    .events-animation {
        animation: none;
    }
    
    body::after {
        animation: none;
    }
}

/* ========== HIGH CONTRAST MODE ========== */
@media (prefers-contrast: high) {
    :root {
        --border-glass: rgba(255, 255, 255, 0.4);
        --border-glass-strong: rgba(255, 255, 255, 0.6);
        --surface-glass: rgba(255, 255, 255, 0.15);
        --surface-glass-hover: rgba(255, 255, 255, 0.25);
    }
    
    .nav-container,
    .glass-card,
    .pricing-card,
    .content-card {
        border-width: 2px;
    }
}

/* ========== PRINT STYLES ========== */