/* ==================================================
   YUME – HERO
   ================================================== */

.yume-hero {
    width: 100%;
    background: var(--yume-white);
    padding: 85px 0;
}

.yume-hero__inner {
    width: min(calc(100% - 40px), var(--yume-container));
    margin-inline: auto;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;

    gap: 70px;
}


/* ==================================================
   TEXTOVÁ ČÁST
   ================================================== */

.yume-hero__content {
    width: 100%;
    max-width: 680px;
}

.yume-hero__title {
    max-width: 650px;

    margin: 0 0 22px;

    color: #1E3D16;

    font-family: var(--yume-heading-font) !important;

    font-size: 39px;
    font-weight: 600;
    line-height: 1.1;

    letter-spacing: -0.025em;

    text-transform: none !important;
}


/* ==================================================
   TEXT POD NADPISEM
   ================================================== */

.yume-hero__text {
    max-width: 540px;

    margin: 0 0 28px;

    color: #1E3D16;

    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
}


/* ==================================================
   TLAČÍTKO
   ================================================== */

.yume-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 240px;
    min-height: 44px;

    padding: 12px 30px;

    border: 2px solid #F8A7D8;
    border-radius: 999px;

    background: #F8A7D8;
    color: #FFFFFF;

    font-family: var(--yume-font);

    font-size: 14px;
    font-weight: 700;
    line-height: 1;

    text-align: center;
    text-decoration: none;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.yume-hero__button:hover {
    background: #EE1E9E;
    border-color: #EE1E9E;
    color: #FFFFFF;

    transform: translateY(-2px);
}


/* ==================================================
   PRODUKTOVÝ VIZUÁL
   ================================================== */

.yume-hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.yume-hero__image {
    width: 100%;
    max-width: 465px;

    height: auto;

    object-fit: contain;
}


/* ==================================================
   TABLET
   ================================================== */

@media (max-width: 991px) {

    .yume-hero {
        padding: 65px 0;
    }

    .yume-hero__inner {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 45px;
    }

    .yume-hero__content {
        max-width: 600px;
    }

    .yume-hero__title {
        max-width: 600px;

        font-size: 37px;
        line-height: 1.1;
    }

    .yume-hero__text {
        max-width: 480px;

        font-size: 15px;
    }

    .yume-hero__image {
        max-width: 380px;
    }
}


/* ==================================================
   MOBIL
   ================================================== */

@media (max-width: 767px) {

    .yume-hero {
        padding: 52px 0 60px;
    }

    .yume-hero__inner {
        width: min(
            calc(100% - 30px),
            var(--yume-container)
        );

        grid-template-columns: 1fr;

        gap: 35px;

        text-align: center;
    }

    .yume-hero__content {
        max-width: 100%;
    }

    .yume-hero__title {
        max-width: 560px;

        margin-inline: auto;
        margin-bottom: 18px;

        font-size: 32px;
        line-height: 1.1;
    }

    .yume-hero__text {
        max-width: 500px;

        margin-inline: auto;
        margin-bottom: 24px;

        font-size: 15px;
        line-height: 1.6;
    }

    .yume-hero__button {
        min-width: 210px;
    }

    .yume-hero__image {
        max-width: 310px;

        margin-inline: auto;
    }
}