body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.container {
    display: flex;
    height: 100vh;
    width: 100vw;
    position: relative;
}

.left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: translateZ(0);
    user-select: none;
    pointer-events: none;
}

.right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .right {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(0 0 0 / 60%);
        z-index: 2;
    }
}

.logo {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
}

.logo-img-mobile {
    display: none;
}

.lang-buttons {
    display: flex;
    gap: 10px;
}

.lang-btn {
    padding: 15px 30px;
    font-size: 11px;
    border: 1px solid #bfa16a;
    background: #bfa16a;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    outline: none;
}

.lang-btn.secondary {
    background: #fff;
    color: #bfa16a;
}

.lang-btn:hover {
    opacity: 0.8;
}

/* Mobile styles */
@media (max-width: 768px) {
    .logo-img {
        display: none;
    }

    .logo-img-mobile {
        display: block;
    }

    .lang-buttons {
        flex-direction: row;
        gap: 15px;
    }

    .lang-btn {
        padding: 15px 30px;
        font-size: 11px;
        border: 1px solid #bfa16a;
        background: #bfa16a;
        color: #fff;
    }

    .lang-btn.secondary {
        background: transparent;
        color: #fff;
        border-color: #bfa16a;
    }

    .lang-btn:hover {
        background: #bfa16a;
        color: #fff;
    }
}
