:root {
    --background: left top / auto 100% no-repeat url('../images/background.jpg'), #309b42;
    --logo: transparent;
    --logo-height: 9rem;
    /*Set logo width as auto if .logo is <img>*/
    /*Strictly define logo width if .logo is <div>*/
    --logo-width: auto;
    --logo-margin: 7rem auto 0;
    --packshot: transparent;
    /*Set packshot height and width as auto if .packshot is <img>*/
    /*Strictly define packshot height and width if .packshot is <div>*/
    --packshot-height: auto;
    --packshot-width: auto;
    --packshot-margin: var(--logo-height) auto 0;
    --iframe-margin: 0rem auto 0;
    --iframe-color: none;
}

body {
    background: var(--background);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body .container-fluid .for-a-other-link {
    margin-top: 4rem;
}

body .container-fluid .content {
    max-width: 1600px;
    width: 90%;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    overflow: hidden;
}

body .container-fluid .logo-container {
    margin: var(--logo-margin);
}

body .container-fluid .logo-container .logo {
    background: var(--logo);
    background-repeat: no-repeat;
    background-size: cover;
    height: var(--logo-height);
    width: var(--logo-width);
    position: fixed;
    left: -5px;
}

#logo_desktop {
    display: block;
}

#logo_mobile {
    display: none;
}

body .container-fluid .packshot-container {
    margin: var(--packshot-margin);
}

body .container-fluid .packshot-container .packshot {
    background: var(--packshot);
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 800px;
    max-height: 80vh;
    height: var(--packshot-height);
    width: var(--packshot-width);
    position: fixed;
}

body .container-fluid .for-a-other-link a {
    color: #000000;
    font-size: 80%;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

body .container-fluid .container-iframe {
    background-color: var(--iframe-color);
    margin: var(--iframe-margin);
    border-radius: 10px;
}


.lang-switch {
    position: fixed;
    top: 7rem;
    right: 20px;
    display: flex;
    z-index: 999;
    flex-direction: column;
    gap: 8px;
}

.lang-switch button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.lang-switch button:hover {
    transform: translateX(-4px);
    background: #ffffff;
}

.lang-switch button.active {
    background: #309b42;
    color: #fff;
}

@media (max-width: 1080px) {
    body {
        background: top / 100% auto no-repeat url('../images/background_mobile.jpg'), #309b42;

        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    body .container-fluid .container-iframe {
        margin-top: 0;
        padding-top: 0;
        width: 95%;
        float: none;
    }

    body .container-fluid .logo-container {
        padding-bottom: 0;
        width: 100%;
        padding-right: 1rem;
        margin-bottom: 20px;
        text-align: center;
    }

    body .container-fluid .logo-container .logo {
        left: inherit;
        right: -15px;
        height: 6rem;
    }

    #logo_desktop {
        display: none;
    }

    #logo_mobile {
        display: block;
    }

    body .container-fluid .packshot-container {
        width: 100%;
        text-align: center;
        margin: auto;
    }

    body .container-fluid .packshot-container .packshot {
        background-size: cover;
        max-width: 80vw;
        height: auto;
        position: static;
        margin: auto;
    }

    body .container-fluid .content {
        max-width: 100%;
    }

    body .container-fluid .container-iframe {
        padding-right: inherit;
        padding-left: inherit;
        margin-top: 50vw;
    }

    .lang-switch {
        position: static;
        width: 100%;
        align-items: flex-end;
    }

    .lang-switch button {
        width: 5rem;
        pointer-events: auto;
    }

}