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

@font-face {
    font-family: 'Museo';
    src: url('fonts/MUSEO700-REGULAR.OTF') format('opentype');
    font-weight: 700;
    font-display: swap;
}

body,
select {
    font-family: 'Museo', serif;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 90px;
    padding: 0 20px;
}

.logo-link img {
    height: 42px;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-select {
    font-size: 1em;
    padding: 5px;
    border: 1px solid #fff;
    border-radius: 4px;
    background-color: transparent;
    color: #fff;
    outline: none;
    cursor: pointer;
}

.language-select.dark {
    color: #212121;
    border-color: #212121;
}

.burger-button {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 30px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 2em;
    cursor: pointer;
}

.burger-button.dark {
    color: #212121;
}

.burger-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .95);
    transition: transform .3s ease-in-out;
    transform: translateX(100%);
}

.burger-menu.active {
    transform: translateX(0);
}

.burger-menu .links {
    display: flex;
    flex-direction: column;
}

.burger-menu a {
    margin: 10px 0;
    color: #212121;
    text-align: center;
    text-decoration: none;
    font-size: 3em;
}

.container {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 100vh;
}

.section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    overflow: hidden;
    padding: 22vh 10px 10px;
}

.section-az {
    background: linear-gradient(180deg, #ffb50e 0%, #f47a37 100%);
}

.section-ru {
    background: linear-gradient(180deg, #08a8cf 0%, #22c86f 100%);
}

.scene-card {
    display: block;
    width: min(88%, 1120px);
    max-height: 54vh;
    margin-bottom: auto;
    object-fit: contain;
    border: 6px solid #f8efc4;
    border-radius: 6px;
    box-shadow: 0 16px 22px rgba(0, 0, 0, .24);
}

.content {
    width: 100%;
    color: #fff;
    text-align: center;
}

.desc-wrapper {
    margin-bottom: 30px;
}

.title {
    text-transform: uppercase;
    font-size: 42px;
    line-height: 1em;
}

.section-link {
    display: block;
    margin: 10px;
    padding: 20px;
    border: none;
    background-color: #fff;
    color: #212121;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: 14px;
}

@media (min-width: 1024px) {
    .container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
    }
}

@media (max-width: 1023px) {
    header {
        height: 60px;
        padding: 0 10px;
    }

    .logo-link img {
        height: 32px;
    }

    .container {
        grid-auto-rows: 50vh;
    }

    .section {
        padding: 68px 10px 10px;
    }

    .scene-card {
        width: min(82vw, 330px);
        max-height: 24vh;
        border-width: 4px;
    }

    .burger-menu a {
        font-size: 2em;
    }

    .desc-wrapper {
        margin-bottom: 10px;
    }

    .title {
        font-size: 36px;
    }

    .section-link {
        padding: 18px;
    }
}
