/* Tablet and Smaller */
@media screen and (max-width: 992px) {
    .nav-links {
        gap: 20px;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        padding-top: 100px;
        padding-left: 30px;
        gap: 25px;
        transition: 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .hero-video-container {
        aspect-ratio: 9 / 16;
        /* Vertical format for mobile to prevent severe cropping */
        max-height: 70vh;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--text-light);
        font-size: 1.2rem;
        text-shadow: none;
    }

    .sticky-footer a {
        font-size: 1rem;
        padding: 12px 5px;
    }

    .section-padding {
        padding: 50px 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .logo img {
        height: 45px;
    }

    .header.scrolled .logo img {
        height: 40px;
    }

    .sticky-footer a {
        font-size: 0.95rem;
        flex-direction: column;
        padding: 8px 5px;
        gap: 5px;
    }

    .sticky-footer a i {
        font-size: 1.2rem;
    }
}