:root {
    --main-title-h2-margin-top: 0.5rem;
    --info-margin-bottom: 1rem;
}

.container {
    padding-top: 0;
}

.hero {
    position: relative;
    width: 100dvw;
    margin: 0 calc(-50dvw + 50%);
    top: calc(-1*var(--banner-height));
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.language-buttons {
    visibility: hidden;
}

.main-title {
    position: relative;
    top: calc(1/2 * (var(--main-title-h2-margin-top) + (var(--hero-h2-font-size) * var(--hero-h2-line-height)) + var(--info-margin-bottom)));
}

.main-title h2 {
    margin-top: var(--main-title-h2-margin-top);
}

section {
    position: relative;
    width: 100dvw;
    height: 75dvh;
    margin-left: calc(-50dvw + 50%);
    margin-right: calc(-50dvw + 50%);
    padding: 2rem 8rem;
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.main-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 2rem;
    gap: 0 2rem;
    height: calc(var(--hero-h2-font-size) * var(--hero-h2-line-height));
    margin-bottom: var(--info-margin-bottom);
}

.info-box {
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    flex: 1;
}

.info-label {
    margin-bottom: 0.25rem;
    font-size: 1.8em;
}

.info-value {
    font-size: 1.8em;
}

.section-image {
    flex: 1;
    height: 100%;
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

section:is(:nth-child(odd)) .section-image {
    order: 1;
}

.section-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}

section a {
    font-size: 1.2em;
}

.section-content > h2 {
    font-size: 3.5em;
    margin-bottom: 0.5em;
}
.section-content > h3 {
    font-size: 2.5em;
}

#maps-preview {
    width: 80%;
    margin-bottom: 1em;
}

.emoji {
    width: 1.1em;
    height: 1.1em;
}

/* Mobiles */
@media (max-width: 992px) {
    :root {
        --info-margin-bottom: 2rem;
    }

    .hero {
        position: relative;
        width: 100dvw;
        margin: 0 calc(-50dvw + 50%);
        top: 0;
        top: calc(-1*var(--banner-height));
        min-height: 100dvh;
    }

    section {
        flex-direction: column;
        padding: 1rem 6rem;
        margin-top: 3rem;
        gap: 1rem;
        height: auto;
    }

    section:is(:nth-child(odd)) .section-image {
        order: 0;
    }

    section a {
        font-size: 1.2em;
    }

    .section-content > h2 {
        font-size: 2.5em;
        margin-bottom: 0.2em;
    }
    .section-content > h3 {
        font-size: 1.8em;
    }
    
    .section-image {
        max-height: 50dvh;
    }
    .section-image img {
        max-height: 50dvh;
        max-width: 50dvw;
    }
}