@import url('styles.css');

/* Farbvariablen – temporär, werden nach Posterfarben justiert */
:root {
    --primary-color: #2f4f4f; /* dunkel-grünlich-grau */
    --secondary-color: #e7ddd1; /* warmes Beige */
    --accent-color: #6f8f7b; /* gedämpftes Salbeigrün */
    --text-color: #2b2b2b;
    --background-color: #faf8f5;
}

body {
    color: var(--text-color);
    background: var(--background-color);
}

header.hero {
    background: url('img/andria0.jpeg') center/cover no-repeat;
    color: #fff;
    padding: 3rem 0 2rem 0;
    box-shadow: 0 2px 24px rgba(0,0,0,0.06);
    border-radius: 0 0 32px 32px;
    text-align: center;
    position: relative;
}

.page-header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    color: #fff !important;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-decoration: none;
}

.instagram-link { color: #fff !important; text-decoration: none; display: flex; align-items: center; gap: .5rem; }

.hero-content h1 {
    font-size: 3.6rem;
    margin-bottom: 1rem;
    font-family: 'WindSong', cursive; /* Standardschrift verschnörkelt */
    font-weight: 500;
    color: #1f2a2a; /* dunkler für bessere Lesbarkeit */
    text-shadow: 0 2px 10px rgba(0,0,0,0.25);
    line-height: 0.9;
}

/* Überlappender Titel: Radical Rest + Poster */
.hero-title { 
    display: inline-block; 
    position: relative; 
}
.hero-title .title-line { 
    display: block; 
}
.hero-title .title-main { 
    letter-spacing: 0.5px; 
    font-family: 'Playfair Display', serif; /* "Radical Rest" in Playfair */
    font-weight: 700;
}
.hero-title .title-overlap { 
    position: relative;
    top: -0.1rem; /* dezenter Überlapp */
    margin-top: -0.4rem;
    color: #2a3a3a;
    font-weight: 600;
}

/* (entfernt) GDPR-spezifische Styles nicht benötigt */

@media (max-width: 900px) {
    .hero-title .title-overlap {
        top: -0.3rem;
        margin-top: -0.2rem;
    }
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #2a3a3a; /* etwas heller als h1, dennoch dunkel */
    text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.hero-overlay-card {
    background: rgba(255,255,255,0.94);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 2.2rem 2rem 2rem 2rem;
    max-width: 700px;
    width: 100%;
    text-align: center;
    color: var(--text-color);
    backdrop-filter: blur(1px);
    margin: 2rem auto 0 auto;
}

.cta-button.primary {
    background-color: var(--accent-color);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    margin-top: 1rem;
    text-decoration: none;
    display: inline-block;
}

.cta-button.primary:hover { background-color: var(--secondary-color); color: var(--primary-color); }

.benefits { background: var(--background-color); }

/* Instagram-Section Hintergrund wie Footer */
.instagram-feed { background: var(--primary-color); }
.instagram-feed h2, .instagram-feed p { color: #fff; }

/* CTA-Hintergrund an About-Section anpassen */
.cta-section { background: var(--secondary-color); }

/* About-Section an CTA-Section angleichen */
.about { background: var(--secondary-color); }
.about-content h2 { color: #1f2a2a; }
.about-content p { color: #2a3a3a; }

.benefit-card { background:#fff; border-radius:10px; box-shadow:0 2px 16px rgba(0,0,0,0.06); }

@media (max-width: 900px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content h2 { font-size: 1.1rem; }
}

