
* {
    font-family: 'Inter';
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

html {
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    overflow-x: hidden;
    background-color: #fefefe;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 20px 20px 0px 20px;
    overflow-x: hidden;
}

.hero h1 {
    font-weight: 600;
    font-size: clamp(32px, 5vw, 48px);
    padding: 0 20px 0 20px;
    text-align: center;
}

.hero-accent {
    color: rgba(255, 149, 202, 1);
    font-family: 'Pacifico';
    font-weight: 400;
}

.hero p {
    text-align: center;
    padding: 0 20px 0 20px;
}

.hero a {
    text-align: center;
}

.hero a img {
    width: 125px;
}

.hero .img-container {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 600px;
    margin-top: 10px;
}

.hero .img-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, (100% - 40px)); /* Breite des Rechtecks anpassen */
    height: 65%; /* Höhe des Rechtecks anpassen */
    background: linear-gradient(to bottom, rgba(255, 149, 202, 0.5) 0%, rgba(255, 149, 202, 0.25) 100%);
    border-radius: 30px;
    z-index: -1;
}

.hero .img-container img {
    display: block;
    width: auto;
    object-fit: contain;
    max-width: 100%;
    height: 100%;
}

.features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0px 20px 0px 20px;
    max-width: 900px;
}

.features .heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.features .heading h2 {
    font-size: 35px;
}

.features .heading hr {
    width: 80px;
    box-sizing: border-box;
    border: 0 none transparent;
    border-top: 3px solid rgba(255, 149, 202, 0.5);
    border-radius: 10px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.feature-reverse {
    flex-direction: row-reverse;
}

.feature .mockup {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 480px;
    background: linear-gradient(to bottom, rgba(var(--color-rgb), 1), rgba(var(--color-rgb), 0.4));
    border-radius: 30px;
    padding: 2%;
}

.feature .mockup img {
    height: 100%;
    width: auto;
}

.feature .text {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
}

.feature .text h3 {
    font-size: 22px;
    font-weight: 600;
}

.feature .text hr {
    width: 80px;
    box-sizing: border-box;
    border: 0 none transparent;
    border-top: 3px solid rgba(var(--color-rgb), 1);
    border-radius: 10px;
    margin-bottom: 5px;
}

.feature .text p {
    line-height: 1.4;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 0px 20px 20px 20px;
}

footer .links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

footer .links a {
    color: black;
}


@media only screen and (max-width: 450px) {

    .hero .img-container {
        height: 500px;
    }

}

@media only screen and (max-width: 400px) {

    .hero h1 {
        font-size: clamp(30px, 5vw, 48px);
    }

    .hero .img-container {
        height: 400px;
    }

}


@media only screen and (max-width: 600px) {

    .feature {
        flex-direction: column;
        gap: 20px;
    }

    .feature .mockup {
        width: 100%;
        padding: 0 0 0 0;
        margin: 0 2.5% 0 2.5%;
    }

}


