/* ------------------------------------------- */
/* ----------------- General ----------------- */
html {
    color: var(--clr-white);
    background-image: url('/public/images/background.jpg');
    background-size: cover;
}

body {
    margin: 0;
    padding: 0 7.5rem;
}


/* ------------------------------------------ */
/* ----------------- Styles ----------------- */


/* ----------------- Header ----------------- */
header {
    margin: 0;
    padding: 7.5rem 0 9.3rem 0;
}

header .links {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 6rem;
}

header .links a {
    color: var(--clr-white);
    text-decoration: underline;
}

header .links .item {
    font-size: 1.5rem;
}



/* ----------------- Body ----------------- */

.main {
    position: relative;
}


.stickers {
    position: absolute;
    top: -8.2rem;
    left: 19.2rem;
}

.stickers .item {
    position: absolute;
    width: 6.4rem;
    height: 6.4rem;
}

.stickers .item.gambrinus {
    top: 0;
    left: 4rem;
    background-image: url("/public/images/image-gambrinus.png");
}

.stickers .item.kozel {
    top: 2.9rem;
    left: 0;
    background-image: url("/public/images/image-kozel.png");
}

.stickers .item.radegast {
    top: 5.1rem;
    left: 3.6rem;
    background-image: url("/public/images/image-radegast.png");
}


.content {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 10.9rem;
}

.content .left {
    position: relative;
    margin-left: 5rem;
    width: 36.4rem;
    height: 73.3rem;
    overflow-y: visible;
}

.content .ribon {
    position: absolute;
    top: -116rem;
    left: 50%;
    transform: translateX(-50%);
    height: 200rem;
    width: 3.5rem;
    background-image: url("/public/images/image-ribon.png");
    background-size: 100% auto;
}

.content .mobileImage {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url("/public/images/image-preview.png");
}

.content .right {
    width: 90rem;
    text-align: left;
}

.content .right h1 {
    margin: 0 0 3rem 0;
    font-family: 'Anton', sans-serif;
    font-size: 4.5rem;
    font-weight: 400;
}

.content .right .text {
    color: var(--clr-text);
    font-size: 2rem;
    line-height: 2.5rem;
}

.content .right .brandLinks {
    display: flex;
    margin-top: 3.6rem;
    width: fit-content;
    background-color: rgba(256, 256, 256, 0.15);
    font-family: 'Anton', sans-serif;
    font-size: 1.7rem;
    border-radius: 2.2rem;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.content .right .brandLinks .header {
    margin: 0 2.7rem;
    white-space: nowrap;
}

.content .right .brandLinks .item {
    margin: 1rem 0.8rem 1rem 0;
    padding: 1.1rem 2.1rem;
    width: 14.9rem;
    background-image: url("/public/images/icon-arrow-right.svg");
    background-size: 2.4rem;
    background-position-x: 11.3rem;
    border-radius: 1.4rem;
}

.content .right .brandLinks .item .icon {
    width: 0;
    height: 0;
}

.content .right .brandLinks .item.gambrinus {
    background-color: var(--clr-gambrinus);
}

.content .right .brandLinks .item.radegast {
    background-color: var(--clr-radegast);
}

.content .right .brandLinks .item.kozel {
    margin-right: 1.2rem;
    background-color: var(--clr-kozel);
}

.content .right .brandLinks .item.gambrinus .icon {
    background-image: url("/public/images/logo-gambrinus.svg");
}

.content .right .brandLinks .item.radegast .icon {
    background-image: url("/public/images/logo-radegast.svg");
}

.content .right .brandLinks .item.kozel .icon {
    background-image: url("/public/images/logo-kozel.svg");
}

.content .right .note {
    margin-top: 2.2rem;
    color: var(--clr-text);
    font-size: 1.2rem;
}

.content .right .socialLinks {
    display: flex;
    margin-top: 3.9rem;
    width: fit-content;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 2.6rem;
}

.content .right .socialLinks .item {
    width: 16.2rem;
    height: 4.7rem;
}

.content .right .socialLinks .item.apple {
    background-image: url("/public/images/icon-appstore.svg");
}

.content .right .socialLinks .item.android {
    background-image: url("/public/images/icon-google.svg");
}


/* ----------------- Footer ----------------- */
footer {
    margin: 0;
    padding: 9.4rem 0 7.5rem 0;
}

footer .credits {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

footer .credits .item {
    font-size: 1.5rem;
}

footer .credits .item .year {
    color: #3A3A3A
}

footer .credits .item .company {
    color: #717171
}


/* ----------------------------------------- */
/* ----------------- Media ----------------- */

/* ----------------- Tablet ----------------- */
@media only screen and (max-width: 1400px) {
    body {
        padding: 0 8rem;
    }


    /* -- Header -- */
    header {
        padding: 8rem 0 10rem 0;
    }

    header .links {
        gap: 6rem;
    }

    header .links .item {
        font-size: 1.5rem;
    }


    /*-- Body -- */
    .content {
        gap: 5rem;
    }

    .content .left {
        width: 32.5rem;
        height: 65.4rem;
    }

    .content .ribon {
        top: -120rem;
    }

    .content .right {
        width: 46.1rem;
    }

    .content .right h1 {
        margin: 0 0 2.7rem 0;
        font-size: 4rem;
    }

    .content .right .text {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .content .right .brandLinks {
        margin-top: 3.5rem;
        font-size: 1.2rem;
        border-radius: 1.5rem;
    }

    .content .right .brandLinks .header {
        margin: 0 1.5rem;
    }

    .content .right .brandLinks .item {
        margin: 0.7rem 0.6rem 0.7rem 0;
        padding: 0.6rem 1.2rem;
        width: 11rem;
        background-size: 1.6rem;
        background-position-x: 8.4rem;
        border-radius: 1.1rem;
    }

    .content .right .brandLinks .item.kozel {
        margin-right: 0.7rem;
    }

    .content .right .note {
        margin-top: 2.4rem;
        font-size: 1.2rem;
        line-height: 2rem;
    }

    .content .right .socialLinks {
        margin-top: 3rem;
        gap: 2.6rem;
    }

    .content .right .socialLinks .item {
        width: 16.2rem;
        height: 4.7rem;
    }


    /* -- Footer -- */
    footer {
        padding: 10rem 0 8rem 0;
    }

    footer .credits .item {
        font-size: 1.5rem;
    }
}


/* ----------------- Mobile ----------------- */
@media only screen and (max-width: 650px) {
    body {
        margin: 0;
        padding: 0 4rem;
    }


    /* -- Header -- */
    header {
        padding: 4rem 0 8rem 0;
    }

    header .links {
        justify-content: flex-start;
        gap: 4rem;
    }

    header .links a {
        color: #979797;
    }

    header .links .item {
        font-size: 1.5rem;
    }



    /* -- Body -- */

    .main {

    }

    .content {
        gap: 0;
    }

    .content .left {
        display: none !important;
    }

    .content .right {
        width: 100%;
    }

    .content .right h1 {
        margin: 0 0 3rem 0;
        font-size: 4rem;
        line-height: 5.4rem;
    }

    .content .right .text {
        font-size: 1.7rem;
        line-height: 2rem;
    }

    .content .right .brandLinks {
        display: flex;
        margin-top: 3rem;
        width: 100%;
        background-color: transparent;
        font-size: 2rem;
        border-radius: 0;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: stretch;
    }

    .content .right .brandLinks > * {
        width: 100%;
    }

    .content .right .brandLinks .header {
        margin: 0 0 1.8rem 0;
        white-space: nowrap;
    }

    .content .right .brandLinks .item {
        display: flex;
        margin: 0.6rem 0;
        padding: 0.6rem 0.8rem;
        width: 100%;
        background-size: 2.4rem;
        background-position-x: 27rem;
        border-radius: 1.4rem;
        flex-wrap: nowrap;
        align-items: center;
        gap: 1.2rem;
        line-height: 2.5rem;
    }

    .content .right .brandLinks .item .icon {
        width: 3.6rem;
        height: 3.6rem;
    }

    .content .right .note {
        margin-top: 2.2rem;
        font-size: 1.2rem;
        line-height: 2.0rem;
    }

    .content .right .socialLinks {
        margin-top: 6.7rem;
        width: 100%;
        justify-content: space-between;
        gap: 0;
    }

    .content .right .socialLinks .item {
        width: 14.2rem;
        height: 4.1rem;
    }

    .content .right .socialLinks .item.apple {
        background-image: url("/public/images/icon-appstore.svg");
    }

    .content .right .socialLinks .item.android {
        background-image: url("/public/images/icon-google.svg");
    }


    /* -- Footer -- */
    footer {
        padding: 8rem 0 4rem 0;
    }

    footer .credits {
        justify-content: center;
    }

    footer .credits .item {
        font-size: 1.5rem;
    }
}


/* --------------------------------------------- */
/* ----------------- Documents ----------------- */
.document {
    font-size: 2rem;
}

.document .h1 {
    font-size: 3.5rem;
    text-decoration: underline;
    font-weight: bold;
}

.document a {
    text-decoration: underline;
}


.topNavigator {
    position: absolute;
    top: -11.1rem;
    margin: 0 0 0 0;
    text-align: left;
}

.topNavigator .mainPage {
    font-size: 1.5rem;
    text-decoration: underline;
}

.bottomNavigator {
    margin-top: 9.4rem;
}

.bottomNavigator .mainPage {
    font-size: 2.5rem;
    text-decoration: underline;
}


@media only screen and (max-width: 1024px) {
    .document {
        font-size: 1.5rem;
    }

    .document .h1 {
        font-size: 3rem;
    }

    .topNavigator {
        top: -11.8rem;
    }

    .bottomNavigator {
        margin-top: 10rem;
    }

    .bottomNavigator .mainPage {
        font-size: 2rem;
        text-decoration: underline;
    }
}

@media only screen and (max-width: 650px) {
    .document {
        font-size: 1.7rem;
    }

    .document .h1 {
        font-size: 3rem;
    }

    .topNavigator {
        top: -5rem;
    }

    .topNavigator .mainPage {
        color: #979797;
    }

    .bottomNavigator {
        margin-top: 8rem;
    }

    .bottomNavigator .mainPage {
        font-size: 2.2rem;
        text-decoration: underline;
    }
}


/* ---------------------------------------- */
/* ----------------- TEMP ----------------- */

.temp {
    margin-left: auto;
    margin-right: auto;
    width: 70%;
}

.temp h1 {
    font-size: 6.5rem;
    font-family: 'acumin-pro-extra-condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.temp h2 {
    font-size: 3rem;
    font-family: sans-serif;
    font-weight: 500;
}

@media only screen and (max-width: 1024px) {
    .temp h1 {
        font-size: 6rem;
    }

    .temp h2 {
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 650px) {
    .temp {
        width: 100%;
    }

    .temp h1 {
        font-size: 4rem;
    }

    .temp h2 {
        font-size: 1.7rem;
    }
}
