/* Video Section */
.video-container {
    position: relative;
    /* Allows scrolling */
    width: 100vw;
    height: 100vh;
    /* Video only covers the first section */
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.78vh;
    /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Button Controls */
.btnControls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mainBtn {
    background: transparent;
    border: 2px solid white;
    color: white;
    text-transform: uppercase;
}

/* Scrollable Content */
/* .content {
    text-align: center;
    padding: 50px 20px;
    background: white;

    color: black;
}
 */

.mute-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.3s ease;
}

.mute-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}
