@import url('https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&display=swap');


/* =========================================
   GRUNDLAGEN
========================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Gloria Hallelujah", cursive;
    color: #67696b;
    background: #ffffff;
    line-height: 1.5;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

a {
    color: inherit;
}


/* =========================================
   TOPBAR
========================================= */

.topbar {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    font-size: 13px;
}

.topbar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.contact-info,
.social-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.topbar a {
    text-decoration: none;
}

.topbar a:hover {
    color: #ba3c58;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    background-color: #c299ab;
}

.header-inner {
    min-height: 105px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    display: block;
    line-height: 0;
    flex: 0 0 auto;
}

.logo img {
    display: block;
    width: auto;
    height: 60px;
}


/* =========================================
   NAVIGATION
========================================= */

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px 22px;
}

.main-nav a {
    position: relative;
    padding: 10px 0;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #67696b;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: #ba3c58;
}


/* =========================================
   HERO
   Original Smart Slider: 1200 × 585 px
========================================= */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url("../images/slider2/istock-485819586_homepage_einstiegsseite.jpg");
    background-position: 52% 0;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Im Original war der Slider-Layer transparent. */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

/* =========================================
   HERO-TEXT
========================================= */

.hero-title {
    display: inline-block;
    margin: 0 0 28px;
    padding: 18px;
    background: #c397b0;
    color: #67696b;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 5px;
    line-height: 1.2;
}

.hero-question {
    max-width: 638px;
    margin: 0 0 30px;
    padding: 15px;
    background: rgba(195, 151, 176, 1);
    border: 1px solid #c397b0;
    border-radius: 5px;
    color: #67696b;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
}


/* =========================================
   HERO-AKTIONEN
========================================= */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.hero-button {
    display: inline-block;
    background: #c397b0;
    color: #67696b;
    text-decoration: none;
    line-height: 1.5;
    text-align: center;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.hero-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

/* Original: 156.25%, 10px/30px, 1px letter spacing */
.hero-button-large {
    padding: 10px 30px;
    border: 1px double #c397b0;
    border-radius: 5px;
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Original: 181.25%, bold, 10px/30px */
.hero-button-medium {
    padding: 10px 30px;
    border: 1px solid #c397b0;
    border-radius: 5px;
    font-size: 29px;
    font-weight: 700;
}

/* Original: 100%, bold, 10px/30px */
.hero-button-review {
    padding: 10px 30px;
    border: 1px solid #c397b0;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
}


/* =========================================
   WEITBLICK
========================================= */

.weitblick {
    display: inline-block;
    margin-top: 35px;
    padding: 10px;
    background: #ba3c58;
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
}

.weitblick:hover {
    filter: brightness(0.95);
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    padding: 15px 0;
    color: #6b6969;
    text-align: center;
    font-size: 14px;
}

.site-footer p {
    margin: 0;
}


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

@media (max-width: 1199px) and (min-width: 701px) {

    .hero,
    .hero-content {
        min-height: 500px;
    }

    .hero-title {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .hero-question {
        font-size: 14px;
    }

    .hero-button-large {
        font-size: 17.5px;
    }

    .hero-button-medium {
        font-size: 20px;
    }

    .hero-button-review {
        font-size: 11px;
    }

    .weitblick {
        font-size: 12.5px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .container {
        width: min(100% - 30px, 1200px);
    }

    .topbar-inner {
        flex-direction: column;
        padding: 12px 0;
        gap: 8px;
    }

    .contact-info,
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 15px;
    }

    .header-inner {
        flex-direction: column;
        padding: 25px 0;
        gap: 18px;
    }

    .main-nav {
        justify-content: center;
        gap: 8px 16px;
    }

    .main-nav a {
        font-size: 13px;
    }

    .hero,
    .hero-content {
        min-height: 480px;
    }

    .hero-content {
        padding: 45px 10px;
    }

    .hero-title {
        margin-bottom: 20px;
        padding: 12px;
        font-size: 17px;
        letter-spacing: 2px;
    }

    .hero-question {
        max-width: 100%;
        margin-bottom: 22px;
        padding: 12px;
        font-size: 12px;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-button-large {
        padding: 8px 20px;
        font-size: 15px;
    }

    .hero-button-medium {
        padding: 8px 20px;
        font-size: 17px;
    }

    .hero-button-review {
        padding: 8px 20px;
        font-size: 12px;
    }

    .weitblick {
        margin-top: 24px;
        padding: 8px;
        font-size: 13px;
    }
}
