/* Mobile Menu Icon Animation */
#mobile-menu-btn {
    position: relative;
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

#mobile-menu-btn .line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: transform 1s ease, opacity 1s ease;
}

#mobile-menu-btn .line-1 {
    top: 6px;
}

#mobile-menu-btn .line-2 {
    top: 15px;
}

#mobile-menu-btn .line-3 {
    top: 24px;
}

#mobile-menu-btn.open .line-1 {
    transform: translateY(9px) rotate(45deg);
}

#mobile-menu-btn.open .line-2 {
    opacity: 0;
}

#mobile-menu-btn.open .line-3 {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section Responsiveness */
@media (max-width: 768px) {
    #home .hero-video-container {
        width: 100% !important;
    }

    #home .w-3\/5 {
        width: 100% !important;
        background: rgba(0, 0, 0, 0.5) !important; /* Add a semi-transparent overlay */
    }
}

/* Horizontal Overflow Fix */
body, #navbar {
    overflow-x: hidden;
}
