@font-face {
    font-family: "Rubik";
    src: url("../Fonts/Body (In Regular)/Rubik/Rubik-VariableFont_wght.ttf") format("truetype");
    font-style: normal;
    font-weight: 300 900;
    font-display: swap;
}


/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: "Rubik", sans-serif;
    overflow-x: hidden;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    width: 100%;
    min-height: 100vh;
    min-height: 100svh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 70px 40px 150px;

    background:
        linear-gradient(180deg,
            #79374a 0%,
            #8D326B 10%,
            #B3264D 15%,
            #D11927 49%,
            #D9151B 70%);

    overflow: hidden;
}


/* KÖRNUNG */

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    pointer-events: none;

    opacity: 0.3;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.65'/%3E%3C/svg%3E");

    mask-image:
        linear-gradient(to bottom,
            #000 0%,
            rgba(0, 0, 0, 0.8) 10%,
            rgba(0, 0, 0, 0.25) 35%,
            transparent 70%);

    -webkit-mask-image:
        linear-gradient(to bottom,
            #000 0%,
            rgba(0, 0, 0, 0.8) 10%,
            rgba(0, 0, 0, 0.25) 35%,
            transparent 70%);
}


/* =========================================================
   CONTENT
   ========================================================= */

.content {
    position: relative;
    z-index: 5;

    width: min(900px, 80%);

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo {
    display: block;

    width: clamp(220px, 19vw, 310px);
    height: auto;

    margin-bottom: 0px;
}


/* =========================================================
   TEXT PNG
   ========================================================= */

.hero-text {
    display: block;
    width: 100%;
    max-width: 820px;

    overflow: hidden;

    margin-bottom: 55px;
}

.hero-text img {
    display: block;
    width: 100%;
    height: auto;

    clip-path: inset(0 0 15% 0);
    margin-bottom: -10%;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 24px;

    width: 100%;
}

.btn {
    min-height: 40px;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    gap: 12px;

    padding: 9px 20px;

    border-radius: 999px;

    font-family: "Rubik", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;

    color: #ffffff;
    text-decoration: none;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.btn.btn-primary:hover {
    background-color: #D9151B;
    color: #ffffff;
}

.btn.btn-secondary:hover {
    background-color: #ffffff;
    color: #2452a4;
}

.btn-primary {
    background: #2452a4;
    border: 3px solid #2452a4;
}

.btn-secondary {
    background: transparent;
    border: 3px solid #ffffff;
}

.arrow {
    display: inline-block;

    font-size: 1.2em;
    line-height: 1;
}


/* =========================================================
   HEART
   ========================================================= */

.heart {
    position: absolute;
    z-index: 4;

    top: 8%;
    left: 6%;

    width: 345px;
    height: auto;
}


/* =========================================================
   MASKOTTCHEN
   ========================================================= */

.maskottchen {
    position: absolute;
    z-index: 4;

    right: 15px;
    bottom: -55px;

    width: clamp(190px, 18vw, 300px);
    height: auto;
}


/* =========================================================
   WEISSER BEREICH UNTEN
   ========================================================= */

.bottom-shape {
    position: absolute;
    z-index: 1;

    left: -5%;
    bottom: -95px;

    width: 110%;
    height: 170px;

    background: #ffffff;

    transform: rotate(1.4deg);
    transform-origin: center;

    pointer-events: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .hero {
        padding: 70px 30px 140px;
    }

    .content {
        width: min(800px, 86%);
    }

    .logo {
        width: 230px;

        margin-bottom: 60px;
    }

    .hero-text {
        max-width: 720px;

        margin-bottom: 50px;
    }

    /* Herz */

    .heart {
        top: 7%;
        left: -30px;

        width: 250px;
    }

    .maskottchen {
        width: 220px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .hero {
        min-height: 100svh;

        align-items: flex-start;

        padding:
            65px 22px 130px;
    }

    .content {
        width: 100%;
    }


    /* Logo */

    .logo {
        width: clamp(175px, 48vw, 220px);

        margin-bottom: 50px;
    }


    /* Text PNG */

    .hero-text {
        width: min(100%, 600px);
        margin-bottom: 55px;
    }


    /* Buttons */

    .buttons {
        flex-direction: column;

        gap: 20px;
    }

    .btn {
        width: min(320px, 85%);
        min-width: 0;

        min-height: 62px;

        font-size: 1.2rem;
    }


    /* Herz */

    .heart {
        top: 7%;
        left: -50px;

        width: 150px;
    }


    /* Maskottchen */

    .maskottchen {
        right: 15px;
        bottom: -55px;

        width: clamp(160px, 45vw, 220px);
    }


    /* Weiß unten */

    .bottom-shape {
        left: -5%;
        bottom: -75px;

        width: 110%;
        height: 125px;

        transform: rotate(1.7deg);
    }

}


/* =========================================================
   KLEINE SMARTPHONES
   ========================================================= */

@media (max-width: 420px) {

    .hero {
        padding:
            55px 18px 115px;
    }

    .logo {
        width: 170px;

        margin-bottom: 65px;
    }

    .hero-text {
        margin-bottom: 45px;
    }

    .buttons {
        gap: 18px;
    }

    .btn {
        width: min(290px, 90%);
        min-height: 58px;

        padding: 13px 24px;

        font-size: 1.05rem;
    }

    .heart {
        top: 6%;
        left: -50px;

        width: 150px;
    }

    .maskottchen {
        right: 15px;
        bottom: -55px;

        width: 165px;
    }

}