/* Full-screen Background Video */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:  rgb(30, 38, 61, 0.8);
    z-index: 1;
}

/* Language Selection */
.language-selection {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.language-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 25px;
    width: 300px;
    background-color:  rgb(30, 38, 61, 0.6);
    border: none;
    border-radius: 18px;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
a {
    text-decoration: none;
    color: inherit; /* Inherit color from the button */
}
.language-button:hover {
    transform: scale(1.05);
    background-color:   rgb(30, 38, 61);
    
}
.language-flag {
    width: 40px;
    height: auto;
    border-radius: 3px; /* optional rounded corners */
    margin-right: 20px;
}

.language-text {
    width: 60%;
    text-align: left;
    color: #8fe1b0;
    
}
.arrow {
    width: 20%;
    text-align: center;
    font-size: 22px;
    color: #8fe1b0;
    
}


/* Responsive Design */
@media (max-width: 768px) {
    .language-selection {
        gap: 15px;
    }
    .language-button {
        width: 100%;
        padding: 12px 20px;
    }
    .language-abbreviation {
        font-size: 12px;
    }
    .language-text {
        font-size: 20px;
    }
    .arrow {
        font-size: 18px;
        margin-left: 32px;
    }
   
}