/* Lato Font Loading */
@font-face {
    font-family: 'Lato';
    src: url('fonts/Lato-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('fonts/Lato-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', Arial, sans-serif;
    overflow: hidden;
    height: 100vh;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(57, 57, 57, 0.7);
    z-index: -1;
}

/* Main Container */
.container {
    max-width: 1536px;
    margin: 0 auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Logo */
.logo {
    position: absolute;
    top: 0;
    left: 0;
    background: #A2232B;
    display: inline-block;
    padding: 15px 30px;
}

.logo img {
    max-height: 120px;
    width: auto;
}

/* Language Buttons */
.language-buttons {
    display: flex;
    gap: 80px;
    align-items: center;
}

.language-option {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.language-btn {
    background-color: white;
font-size: 30px;
letter-spacing: 0px;
color: #A2232E;
    border: none;
    padding: 20px 40px;

    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 300px;
    text-align: center;
}

.language-btn:hover {
    background-color: #A2232E;
    color:#fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.language-btn:active {
    transform: translateY(0);
}

/* Language Text */
.language-text {
    color: white;
    font-size: 20px;
    margin-top: 25px;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {

    .language-buttons {
        flex-direction: column;
        gap: 30px;
    }

    .language-btn {
        min-width: 200px;
        padding: 18px 30px;
        font-size: 16px;
    }

    .logo {
        top: 0;
        left: 0;
    }

    .logo img {
        max-height: 80px;
    }
    
    .language-text {
        font-size: 14px;
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .language-btn {
        min-width: 180px;
        padding: 15px 25px;
        font-size: 15px;
    }
    
    .language-text {
        font-size: 12px;
        margin-top: 20px;
    }
    .language-option{
        margin: 20px 0;
    }
}