/* ==========================================================================
   MECHTHILD HAWIG – WWW.TIEDEX.DE
   ========================================================================== */

:root {
    --color-background: #f7f5f0;
    --color-text: #66695e;
    --color-gold: #bf9143;
    --color-gold-soft: rgba(191, 145, 67, 0.42);
    --color-shadow: rgba(91, 99, 75, 0.15);
    --content-width: 1120px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    background: var(--color-background);
    color: var(--color-text);
    font-family: Georgia, "Times New Roman", serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.landingpage {
    min-height: 100vh;
    overflow: hidden;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.5rem 2rem 5rem;
    overflow: hidden;
    isolation: isolate;
    background: url("../images/botanical-shadows.jpg") center center / cover no-repeat;
}

.hero__inner {
    position: relative;
    z-index: 5;
    width: min(100%, var(--content-width));
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ---------- Logo ---------- */

.logo {
    display: block;
    width: min(45vw, 540px);
    height: auto;
    margin: 0 auto 2.1rem;
    filter: drop-shadow(0 10px 25px rgba(93, 82, 56, 0.035));
}

/* ---------- Kontakt ---------- */

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.15rem;
    text-align: center;
}

.contact__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    color: var(--color-text);
}

.contact__icon {
    flex: 0 0 auto;
    width: 1.55rem;
    height: 1.55rem;
    color: var(--color-gold);
}

.contact address,
.contact p,
.contact a {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.45;
    font-style: normal;
    letter-spacing: 0.025em;
}

.contact a {
    transition: color 180ms ease;
}

.contact a:hover,
.contact a:focus-visible {
    color: var(--color-gold);
}

.contact__divider {
    position: relative;
    width: 150px;
    height: 1px;
    background: var(--color-gold-soft);
}

.contact__divider span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-gold);
    transform: translate(-50%, -50%);
}

/* ---------- Kräftigeres Wellenmotiv ---------- */

.wave {
    position: absolute;
    z-index: 2;
    left: -10rem;
    bottom: -11rem;
    width: calc(100% + 20rem);
    height: 25rem;
    pointer-events: none;
    opacity: 0.72;
}

.wave span {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 1.2px;
    border-radius: 50%;
    background: var(--color-gold-soft);
}

/* Wellen mit leicht unterschiedlicher Kurve */
.wave span:nth-child(1)  { top: 3rem;  transform: rotate(-5deg); }
.wave span:nth-child(2)  { top: 4rem;  transform: rotate(-4.5deg); }
.wave span:nth-child(3)  { top: 5rem;  transform: rotate(-4deg); }
.wave span:nth-child(4)  { top: 6rem;  transform: rotate(-3.5deg); }
.wave span:nth-child(5)  { top: 7rem;  transform: rotate(-3deg); }
.wave span:nth-child(6)  { top: 8rem;  transform: rotate(-2.5deg); }
.wave span:nth-child(7)  { top: 9rem;  transform: rotate(-2deg); }
.wave span:nth-child(8)  { top: 10rem; transform: rotate(-1deg); }
.wave span:nth-child(9)  { top: 11rem; transform: rotate(0deg); }
.wave span:nth-child(10) { top: 12rem; transform: rotate(1deg); }
.wave span:nth-child(11) { top: 13rem; transform: rotate(2deg); }
.wave span:nth-child(12) { top: 14rem; transform: rotate(2.5deg); }
.wave span:nth-child(13) { top: 15rem; transform: rotate(3deg); }
.wave span:nth-child(14) { top: 16rem; transform: rotate(3.5deg); }
.wave span:nth-child(15) { top: 17rem; transform: rotate(4deg); }
.wave span:nth-child(16) { top: 18rem; transform: rotate(4.5deg); }
.wave span:nth-child(17) { top: 19rem; transform: rotate(5deg); }
.wave span:nth-child(18) { top: 20rem; transform: rotate(5.5deg); }

/* ---------- Responsive ---------- */

@media (max-width: 700px) {

    .hero {
        min-height: 100svh;
        padding: 2.5rem 1.25rem 4rem;
        background-image: url("../images/botanical-shadows-mobile.jpg");
        background-position: center center;
        background-size: cover;
    }

    .logo {
        width: min(80vw, 400px);
        margin-bottom: 2rem;
    }

    .contact {
        gap: 1rem;
    }

    .contact__item {
        gap: 0.7rem;
    }

    .contact address,
    .contact p,
    .contact a {
        font-size: 0.98rem;
    }

    .contact__icon {
        width: 1.35rem;
        height: 1.35rem;
    }

    .contact__divider {
        width: 110px;
    }

    .wave {
        left: -18rem;
        bottom: -12rem;
        width: calc(100% + 36rem);
        transform: scale(0.72);
        opacity: 0.55;
    }
}
