* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    --gold: #b8955b;
    --gold-hover: rgba(204, 162, 166, 1);
    --border: rgba(146, 110, 75, 0.98);
    --dark-grey: rgb(63, 63, 63);
    --bg: rgba(255, 241, 228, 0.9);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: #000;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

h2 {
    font-size: 40px;
    line-height: 1.2;
}

h3 {
    font-size: 30px;
    line-height: 1.2;
}

h4 {
    font-size: 20px;
    line-height: 1.2;
}

.under_text_gold {
    color: var(--gold);
    line-height: 1.6;
}

.under_text_darkGrey {
    color: var(--dark-grey);
    line-height: 1.6;
}

/*IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII*/
/* Header Bereich */

header {
    min-height: 110px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background: var(--bg);
    z-index: 1000;
    padding: 10px 40px;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

header.shrink {
    padding: 4px 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

header #logo_div {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    transform-origin: left center;
}

header #logo_div img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

header.shrink #logo_div {
    transform: scale(0.78);
}

nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: black;
    transition: color 0.2s ease;
}

nav a:hover,
nav a.active {
    color: var(--gold-hover);
}

/*IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII*/
/* Hero Bereich */

#hero_section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 980px;
    position: relative;
    margin-top: -150px;
    padding: 0 20px;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(60%);
}

#hero_headline {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-family: "Great Vibes", cursive;
    color: rgba(245, 212, 180, 0.92);
}

#hero_text {
    margin-top: 100px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    color: white;
}

#hero-button {
    display: inline-block;
    margin-top: 30px;
    border: 2px solid white;
    border-radius: 20px;
    padding: 15px 50px;
    text-decoration: none;
    font-size: medium;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    transition: all 0.2s ease;
}

#hero-button:hover {
    background: white;
    color: black;
}

.text_under_hero-button {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    margin-top: 60px;
}

/*IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII*/
/* Intro */

#intro_grid {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
    padding: 0 40px;
}

/*IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII*/
/* Cards */

#cards_section {
    margin-top: 200px;
    padding: 0 40px;
}

#cards_text {
    color: var(--gold);
    text-align: center;
    margin-top: 12px;
}

#cards_cont {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.card {
    width: 350px;
    min-height: 470px;
    border: 2px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    background: white;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.card p {
    padding: 16px;
}

.card:hover {
    transform: translateY(-6px);
}

/*IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII*/
/* kontakt / booking */

.booking_cont {
    display: flex;
    justify-content: center;
    margin: 60px auto 0 auto;
    border: 2px solid var(--border);
    width: 100%;
    max-width: 1130px;
    min-height: 300px;
    box-shadow: var(--shadow);
    border-radius: 20px;
    padding: 40px 30px;
    box-sizing: border-box;
    background-color: white;
}

.booking_content {
    text-align: center;
}

.pers_text {
    color: var(--gold);
    line-height: 1.6;
    margin-top: 10px;
    margin-bottom: 30px;
}

.under_text {
    color: var(--dark-grey);
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 20px;
}

#contact_button {
    display: inline-block;
    border-radius: 20px;
    padding: 15px 50px;
    background-color: var(--gold);
    text-decoration: none;
    font-size: medium;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    transition: all 0.2s ease;
}

#contact_button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/*IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII*/
/* footer */

footer {
    border-top: 1px solid var(--border);
    margin-top: 80px;
    padding: 20px 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer_nav_left,
.footer_nav_right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer_center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

footer .footer_center #logo_div {
    width: 90px;
    height: 90px;
}

footer .footer_center #logo_div img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer_text {
    margin-top: 5px;
}

footer a {
    text-decoration: none;
    color: black;
    font-weight: 600;
}

footer a:hover {
    color: var(--gold-hover);
}

/*IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII*/
/* contact.html */

.contact_div {
    display: flex;
    justify-content: center;
    margin: 50px auto 0 auto;
    border: 2px solid var(--border);
    width: 100%;
    max-width: 800px;
    min-height: 220px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 30px 20px;
    box-sizing: border-box;
    background-color: white;
}

.contact_inner_div {
    text-align: center;
}

.icon-gold {
    color: var(--gold);
    margin-right: 10px;
    font-size: 20px;
}

.icon-div {
    margin: 0 auto;
    border-bottom: 2px solid var(--border);
    border-left: 2px solid var(--border);
    border-right: 2px solid var(--border);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    width: 100%;
    max-width: 800px;
    min-height: 220px;
    display: block;
    padding: 20px 25px 30px 25px;
    box-sizing: border-box;
    background-color: white;
}

.icon_phone,
.icon_envelope,
.icon_dot,
.icon_instagram {
    padding-top: 20px;
    word-break: break-word;
}

.upper_text {
    color: var(--gold);
    line-height: 1.6;
    padding-top: 10px;
    padding-bottom: 10px;
}

/*IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII*/
/* about.html */

.head_div {
    margin-top: 100px;
    padding: 0 20px;
}

.div_about {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    padding: 0 40px;
}

.about_me_upper_text_gold {
    text-align: center;
    color: var(--gold);
    line-height: 1.6;
    padding-top: 100px;
}

.about_me_midle_text_gold {
    text-align: center;
    font-size: 50px;
    line-height: 1.2;
    padding-top: 30px;
}

.about_me_under_text_darkGrey {
    text-align: center;
    color: var(--dark-grey);
    line-height: 1.6;
    padding-top: 30px;
    padding-bottom: 180px;
}

.div_Baby {
    width: 300px;
    height: 500px;
    border-radius: 20px;
    border: 2px solid var(--border);
    overflow: hidden;
    flex-shrink: 0;
}

.Baby {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.Baby_text {
    width: 700px;
    max-width: 100%;
}

.about_me_above_text {
    color: var(--gold);
    line-height: 1.6;
    padding-top: 0;
}

.about_me_h2 {
    font-size: 50px;
    line-height: 1.2;
    padding-top: 60px;
}

.about_me_under_text {
    color: var(--dark-grey);
    line-height: 1.6;
    padding-top: 60px;
}

.stand_for {
    margin-top: 50px;
    padding: 0 20px;
}

.stand_for_grid {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 50px;
    padding: 0 40px;
    flex-wrap: wrap;
}

.midle,
.right,
.left {
    width: 300px;
    min-height: 150px;
    border-radius: 20px;
    border: 2px solid var(--border);
    text-align: center;
    box-shadow: var(--shadow);
    background: white;
    padding: 20px;
}

.left h4,
.midle h4,
.right h4 {
    padding-top: 0;
}

.div_left_text,
.div_midle_text,
.div_right_text {
    color: var(--dark-grey);
    line-height: 1.6;
    padding-top: 20px;
}

/*IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII*/
/* impressum.html */

.div_impr {
    text-align: center;
    margin-top: 50px;
    padding: 0 20px;
}

.platz {
    height: 200px;
}

/* =========================
   Responsive Design Mobile
   ========================= */

@media (max-width: 768px) {
    h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    h3 {
        font-size: 24px;
        line-height: 1.2;
    }

    h4 {
        font-size: 19px;
        line-height: 1.2;
    }

    p {
        font-size: 15px;
        line-height: 1.7;
    }

    header {
        height: auto;
        min-height: 95px;
        flex-direction: column;
        justify-content: center;
        padding: 8px 16px 14px 16px;
    }

    header.shrink {
        min-height: 80px;
        height: auto;
    }

    header #logo_div {
        width: 90px;
        height: 90px;
    }

    nav {
        position: static;
        left: auto;
        transform: none;
        width: 100%;
        margin-top: 6px;
    }

    nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 16px;
    }

    nav a {
        font-size: 14px;
    }

    #hero_section {
        min-height: 92vh;
        height: auto;
        margin-top: 0;
        padding: 120px 18px 50px 18px;
    }

    #hero_headline {
        font-size: clamp(1.4rem, 7vw, 2rem);
        padding: 0 8px;
    }

    #hero_text {
        margin-top: 22px;
        font-size: 15px;
        padding: 0 6px;
        max-width: 320px;
    }

    #hero-button {
        margin-top: 24px;
        padding: 12px 26px;
        font-size: 15px;
    }

    #intro_grid {
        margin-top: 55px;
        flex-direction: column;
        gap: 22px;
        padding: 0 18px;
        text-align: center;
    }

    #cards_section {
        margin-top: 80px;
        padding: 0 18px;
    }

    .cards_section_headline {
        text-align: center;
    }

    #cards_text {
        margin-top: 10px;
        text-align: center;
    }

    #cards_cont {
        flex-direction: column;
        align-items: center;
        gap: 22px;
        margin-top: 28px;
    }

    .card {
        width: 100%;
        max-width: 320px;
        border-radius: 18px;
    }

    .card img {
        width: 100%;
        aspect-ratio: 3 / 4;
        height: auto;
    }

    .card p {
        padding: 14px 12px 18px 12px;
        font-size: 15px;
    }

    .booking_cont {
        width: calc(100% - 32px);
        min-height: auto;
        margin: 50px auto 0 auto;
        padding: 26px 16px;
        border-radius: 18px;
    }

    .booking_content h2 {
        font-size: 28px;
    }

    .pers_text {
        margin-bottom: 18px;
    }

    .under_text {
        margin-top: 16px;
        margin-bottom: 18px;
    }

    #contact_button {
        padding: 12px 26px;
        font-size: 15px;
    }

    .head_div {
        margin-top: 50px;
        padding: 0 18px;
    }

    .about_me_upper_text_gold {
        padding-top: 30px;
    }

    .about_me_midle_text_gold,
    .about_me_h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .about_me_under_text_darkGrey {
        padding: 18px 10px 60px 10px;
    }

    .div_about {
        margin-top: 45px;
        flex-direction: column;
        gap: 28px;
        padding: 0 18px;
    }

    .div_Baby {
        width: 100%;
        max-width: 280px;
        aspect-ratio: 3 / 5;
        height: auto;
        border-radius: 18px;
    }

    .Baby {
        border-radius: 18px;
    }

    .Baby_text {
        width: 100%;
        text-align: center;
    }

    .about_me_h2,
    .about_me_under_text {
        padding-top: 24px;
    }

    .stand_for {
        margin-top: 40px;
        padding: 0 18px;
    }

    .stand_for_grid {
        margin-top: 35px;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 0 18px;
    }

    .left,
    .midle,
    .right {
        width: 100%;
        max-width: 320px;
        min-height: auto;
        padding: 18px 16px;
        border-radius: 18px;
    }

    .div_left_text,
    .div_midle_text,
    .div_right_text {
        padding-top: 14px;
    }

    .contact_div,
    .icon-div {
        width: calc(100% - 32px);
    }

    .contact_div {
        min-height: auto;
        padding: 24px 16px;
        border-top-left-radius: 18px;
        border-top-right-radius: 18px;
        margin-top: 40px;
    }

    .icon-div {
        min-height: auto;
        padding: 12px 16px 22px 16px;
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
    }

    .icon_phone,
    .icon_envelope,
    .icon_dot,
    .icon_instagram {
        padding-top: 16px;
        font-size: 15px;
        line-height: 1.6;
    }

    .div_impr {
        margin-top: 40px;
        padding: 0 18px;
    }

    footer {
        padding: 26px 18px;
        margin-top: 60px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .footer_nav_left,
    .footer_nav_right {
        align-items: center;
        gap: 12px;
    }

    footer .footer_center #logo_div {
        width: 80px;
        height: 80px;
    }

    .footer_text h3 {
        font-size: 24px;
    }

    .platz {
        height: 60px;
    }
}