:root {
    /* Farbpalette: Schlicht, Pastell, Warm */
    --bg-color: #FDFBF7;
    --text-main: #5C5248;
    --text-light: #8A7E73;

    /* Pastellfarben für Blobs & Akzente */
    --pastel-pink: #F7EAE8;
    --pastel-peach: #FCECE3;
    --pastel-green: #EAF0E4;
    --accent: #D48F82;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.container {
    position: relative;
    z-index: 10;
    padding: 4rem 1rem;
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-wrapper {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 2rem;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 24px 48px rgba(92, 82, 72, 0.04);
}

.icon-container {
    margin-bottom: 2rem;
    display: inline-block;
}

.flower-icon {
    width: 54px;
    height: 54px;
    filter: drop-shadow(0 4px 12px rgba(212, 143, 130, 0.2));
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

h2 {
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 2rem;
}

p {
    font-weight: 300;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.contact-text {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 400;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: 0.5rem;
}

.contact-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--accent);
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}


/* Abstrakte Hintergrundformen (Blobs) */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.8;
}

.blob-1 {
    width: 55vw;
    height: 55vw;
    max-width: 600px;
    max-height: 600px;
    background-color: var(--pastel-pink);
    top: -15%;
    left: -10%;
}

.blob-2 {
    width: 45vw;
    height: 45vw;
    max-width: 500px;
    max-height: 500px;
    background-color: var(--pastel-peach);
    bottom: -15%;
    right: -10%;
}

.blob-3 {
    width: 35vw;
    height: 35vw;
    max-width: 400px;
    max-height: 400px;
    background-color: var(--pastel-green);
    top: 20%;
    left: 55%;
}


/* Responsives Design */
@media (max-width: 768px) {
    .container {
        padding: 2rem 1rem;
    }
    .content-wrapper {
        padding: 2.5rem 1.5rem;
    }

    h1, .impressum-content h1, .datenschutz-content h1 {
        font-size: 2.2rem !important;
    }

    h2, .impressum-content h2, .datenschutz-content h2 {
        font-size: 1.3rem !important;
    }

    .datenschutz-content h3 {
        font-size: 1.1rem !important;
    }

    p, .impressum-content p, .datenschutz-content p, .datenschutz-content ul {
        font-size: 1rem !important;
        max-width: 100%;
    }

    .blob {
        filter: blur(60px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem 0.5rem;
        width: 95%;
    }
    .content-wrapper {
        padding: 1.5rem 1rem;
        border-radius: 1.5rem;
    }

    h1, .impressum-content h1, .datenschutz-content h1 {
        font-size: 1.8rem !important;
    }

    h2, .impressum-content h2, .datenschutz-content h2 {
        font-size: 1.1rem !important;
    }
    
    .contact-link, .back-link {
        padding: 0.5rem 0;
    }
}