/* --- SCHRIFTEN & BASIS --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Caveat:wght@700&display=swap');

:root {
    --purple: #A3298E;
    --blue: #2E5BFF;
    --teal: #1DB299;
    --dark: #2d1a2b;
    --light-cream: #fff9fb;
    --purple-light: #f3e5f1;
    --blue-light: #eef2ff;
    --teal-light: #effaf8;
    --gradient: linear-gradient(135deg, var(--purple) 0%, var(--blue) 50%, var(--teal) 100%);
    --white: #ffffff;
}

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

body { 
    font-family: 'Montserrat', sans-serif; 
    line-height: 1.6; 
    color: var(--dark); 
    background-color: var(--light-cream);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main { flex: 1; } /* Drückt den Footer nach unten */

/* --- HEADER & NAVIGATION (FIX: Keine Verrutschen mehr) --- */
header { 
    background: var(--white);
    padding: 10px 0;
    border-bottom: 4px solid;
    border-image: var(--gradient) 1;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Logo & Social-Links bekommen flex: 1, damit die Mitte (Nav) exakt zentriert bleibt */
.logo-link {
    flex: 1;
    display: flex;
    align-items: center;
}

.logo-img { height: 70px; width: auto; transition: 0.3s; }

nav { 
    flex: 2; /* Mitte nimmt mehr Platz ein */
    display: flex;
    justify-content: center;
    gap: 25px;
}

nav a { 
    text-decoration: none; 
    color: var(--purple); 
    font-weight: 700; 
    font-size: 0.85rem; 
    text-transform: uppercase;
    transition: 0.3s;
    white-space: nowrap;
}

nav a:hover { color: var(--blue); }

.social-links {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.social-links a {
    color: var(--purple);
    font-size: 1.4rem;
    transition: 0.3s;
    text-decoration: none;
}

.social-links a:hover { transform: scale(1.1); }
.fa-facebook:hover { color: #1877F2; }
.fa-instagram:hover { color: #E4405F; }

/* --- HERO BEREICH --- */
.hero { 
    padding: 100px 20px; 
    text-align: center; 
    background: var(--gradient);
    color: var(--white);
    border-radius: 0 0 50px 50px;
    box-shadow: 0 10px 30px rgba(163, 41, 142, 0.2);
}

.hero h1 { 
    font-family: 'Caveat', cursive; 
    font-size: 5rem; 
    color: var(--white); 
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,0.9);
}

.cta-button { 
    display: inline-block; 
    padding: 18px 40px; 
    background: var(--white);
    color: var(--purple); 
    text-decoration: none; 
    border-radius: 50px; 
    font-weight: 800; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
    transition: 0.3s;
}

.cta-button:hover { transform: scale(1.05); background: var(--light-cream); }

/* --- SEKTIONEN & GRID --- */
section { padding: 80px 20px; }
.section-purple { background-color: var(--purple-light); }
.section-blue { background-color: var(--blue-light); }
.section-teal { background-color: var(--teal-light); }

.content-container { max-width: 1100px; margin: 0 auto; }

.grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
    margin-top: 40px; 
}

.card { 
    padding: 40px; 
    border-radius: 25px; 
    background: var(--white); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.05); 
    transition: 0.3s;
    border: 2px solid transparent;
}

.card h3 { margin-bottom: 15px; font-weight: 700; color: var(--purple); }
.card-purple:hover { border-color: var(--purple); transform: translateY(-5px); }
.card-blue:hover { border-color: var(--blue); transform: translateY(-5px); }
.card-teal:hover { border-color: var(--teal); transform: translateY(-5px); }

/* --- GOOGLE MAPS --- */
.map-container {
    width: 100%;
    height: 400px;
    margin-top: 30px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 5px solid var(--white);
}

.map-container iframe { width: 100%; height: 100%; border: none; }

/* --- FOOTER --- */
footer {
    background: #2d1a2b;
    color: #ffffff;
    padding: 60px 0 20px 0;
    border-top: 10px solid var(--teal);
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
}

.footer-section h4 {
    color: var(--teal);
    text-transform: uppercase;
    font-size: 0.95rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-weight: 700;
}

.footer-section p, .footer-section a {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: 0.3s;
    display: block;
    margin-bottom: 12px;
}

.footer-section a:hover { color: #ffffff; transform: translateX(5px); }

.footer-social { display: flex; gap: 20px; margin-top: 10px; }
.footer-social a { font-size: 2rem; color: #ffffff; display: inline-block; margin-bottom: 0; }
.footer-social a:hover { transform: scale(1.2) translateY(-5px); color: var(--teal); }

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Instagram Sektion Styling */
.insta-section {
    background-color: #fcfcfc;
    padding: 100px 20px;
    text-align: center;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.section-header h2 {
    font-family: 'Caveat', cursive;
    font-size: 3.5rem;
    color: var(--purple);
    margin-bottom: 10px;
    line-height: 1;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
}

/* Der Container, der das Widget bändigt */
.insta-wrapper {
    max-width: 1200px; /* Begrenzt die Breite, damit es nicht "erschlägt" */
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05); /* Sanfter Schatten */
    border: 1px solid rgba(163, 41, 142, 0.1); /* Hauchdünner lila Rand */
    overflow: hidden;
}

/* Falls das Widget einen Footer hat, den wir etwas dezenter wollen */
.insta-wrapper iframe {
    border-radius: 15px;
}

/* --- RESPONSIV --- */
@media (max-width: 900px) {
    .nav-container { flex-direction: column; gap: 15px; }
    .logo-link, nav, .social-links { justify-content: center; text-align: center; }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 3.5rem; }
}

@media (max-width: 600px) {
    .footer-container { grid-template-columns: 1fr; }
}
