/* Responsive Styles */

/* Tablets and smaller desktops */
@media (max-width: 1024px) {
    .hero-section h2 {
        font-size: 2.2rem;
    }
    
    .steps-container {
        flex-wrap: wrap;
    }
    
    .step {
        flex: 0 0 50%;
        margin-bottom: 40px;
    }
}

/* Tablets and large mobile */
@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
    
    .menu-toggle {
        display: block;
        z-index: 10;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 9;
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .social-icons {
        display: none;
    }
    
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-section h2 {
        font-size: 2rem;
    }
    
    .footer-columns {
        flex-direction: column;
    }
    
    .footer-column {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* Mobile devices */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .hero-section h2 {
        font-size: 1.7rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .step {
        flex: 0 0 100%;
    }
    
    .btn-primary {
        width: 100%;
        margin-top: 10px;
    }
    
    .video-container {
        padding-top: 60%; /* Slightly adjust aspect ratio for mobile */
    }
    
    .quality-selector {
        width: 100%;
        justify-content: center;
    }
    
    .floating-label-group label {
        font-size: 14px;
    }
}

/* Very small devices */
@media (max-width: 320px) {
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .hero-section h2 {
        font-size: 1.5rem;
    }
    
    .floating-label-group input {
        height: 50px;
        padding-top: 15px;
    }
}

/* Height-based media queries for very tall or very short screens */
@media (max-height: 600px) {
    .hero-section {
        padding: 40px 0 30px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Print styles */
@media print {
    .site-header, .site-footer, .video-player-section {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .container {
        width: 100%;
        max-width: none;
    }
} 