
/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height:  100vh;
    overflow:  hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video Background */
.hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

/* Overlay for better text readability */
.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width:  100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index:  2;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform:  translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero__content {
        padding: 0 15px;
    }
    
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero__sound-toggle {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

/* Ensure video covers on mobile */
@media (max-width: 768px) {
    .hero__video {
        width: 100%;
        height:  100%;
    }
}