@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');

/* --- Globale Variablen & Reset --- */
:root {
    --bg-color: #FAF8F5;
    --text-main: #292524;
    --text-light: #57534e;
    
    --theme-green: #10b981; 
    --theme-green-dark: #059669; 
    --theme-purple: #af5e9c;
    --theme-purple-dark: #8c4b7d; 
    
    --white: #ffffff;
    --border-color: #e7e5e4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
}
main { flex-grow: 1; }
a { text-decoration: none; color: inherit; }

/* --- Typografie --- */
h1, h2, h3 { font-family: Georgia, serif; font-weight: normal; }
.text-center { text-align: center; }
.uppercase-tracking { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.85rem; }

/* --- Layout & Container --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }

/* --- Header & Navigation --- */
.site-header { 
    background: var(--white); 
    border-bottom: 1px solid var(--border-color); 
    position: sticky; 
    top: 0; 
    z-index: 40; 
    padding: 20px 0; 
}
.header-container { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}
.site-logo { 
    max-width: 125px; 
    height: auto; 
    margin-bottom: 15px; 
}
.nav-links { 
    display: flex; 
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    font-family: 'Poppins', sans-serif; 
    font-size: 1rem;
    font-weight: 500; 
    letter-spacing: 0.05em; 
}
.nav-links a { transition: opacity 0.3s ease; }
.nav-links a:nth-child(odd) { color: var(--theme-green); }
.nav-links a:nth-child(even) { color: var(--theme-purple); }
.nav-links a:hover { opacity: 0.6; }

/* --- Buttons --- */
.btn { display: inline-block; padding: 10px 20px; border-radius: 50px; font-weight: bold; transition: background 0.3s, color 0.3s; cursor: pointer; border: none; }
.btn-primary { background: var(--theme-purple); color: var(--white); }
.btn-primary:hover { background: var(--theme-purple-dark); }
.btn-outline { border: 1px solid var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--theme-green-dark); }
.btn-outline-dark { border: 1px solid #57534e; color: #d6d3d1; background: transparent; }
.btn-outline-dark:hover { background: #57534e; color: var(--white); }
.btn-small { padding: 10px 20px; font-size: 0.75rem; }

/* --- Hero Layout --- */
.hero {
    background-image: url('img/moos.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 20px; 
    position: relative;
}
.hero::before { 
    content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; 
    background: rgba(1, 106, 31, 0.486); z-index: 1; 
}
.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    gap: 30px;
    max-width: 900px; 
    margin: 0 auto; 
    position: relative;
    z-index: 2;
}
.hero-img-wrapper { flex-shrink: 0; }
.hero-image {
    width: 220px;
    height: 220px;
    object-fit: cover;
    object-position: center 25%;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.2);
}
.hero-content { text-align: center; max-width: 550px; }
.hero-subtitle { color: var(--theme-purple); font-size: 0.85rem; font-weight: bold; }
.hero-title { font-size: 2.4rem; margin: 10px 0; line-height: 1.2; }
.hero-description { font-size: 1rem; margin-bottom: 25px; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

@media (min-width: 768px) {
    .hero-inner { flex-direction: row; align-items: center; gap: 50px; }
    .hero-content { text-align: left; }
    .hero-title, .hero-description { text-align: left; }
    .hero-buttons { justify-content: flex-start; }
}

/* --- Trio Section --- */
.trio-section { max-width: 1100px; margin: 0 auto; padding: 60px 20px; }
.trio-grid { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px; }
.trio-img-wrapper { width: 100%; max-width: 320px; flex-shrink: 0; }
.trio-img { width: 100%; height: 220px; object-fit: cover; border-radius: 20px; box-shadow: 0 10px 25px rgba(0,0,0,0.12); }
.trio-text { width: 100%; text-align: center; padding: 0 10px; }
.trio-title { color: var(--theme-green-dark); font-size: 1.6rem; font-family: Georgia, serif; line-height: 1.25; margin-bottom: 12px; }
.trio-desc { color: var(--text-light); font-size: 0.9rem; line-height: 1.5; }

@media (min-width: 768px) {
    .trio-grid { flex-direction: row; flex-wrap: nowrap; }
    .trio-img-wrapper { width: 30%; }
    .trio-text { width: 40%; }
}

/* --- Intro & Profil --- */
.intro-section { padding: 80px 20px; max-width: 950px; margin: 0 auto; }
.intro-section h2 { color: var(--theme-green-dark); font-size: 2rem; margin-bottom: 20px; }
.intro-text h3 { color: var(--theme-purple); font-size: 1.2rem; margin: 25px 0 10px 0; }
.intro-text p.mt-15 { margin-top: 15px; }

.intro-signature { margin-top: 40px; color: var(--theme-green-dark); }
.signature-title { color: var(--text-light); display: inline-block; margin-top: 5px; }
.intro-profile-img { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; border: 4px solid var(--white); box-shadow: 0 4px 15px rgba(0,0,0,0.08); display: block; margin: 0 auto 15px auto; }

/* --- Cards --- */
.cards-section { background: #f5f5f4; padding: 60px 20px; }
.card { background: var(--white); padding: 30px; border-radius: 10px; border: 1px solid var(--border-color); text-align: center; }
.card h3 { color: var(--theme-green-dark); margin-bottom: 15px; font-size: 1.25rem; }
.card p { color: var(--text-light); margin-bottom: 20px; font-size: 0.95rem; }
.card-link { color: var(--theme-purple); font-weight: bold; }

/* --- Footer --- */
.site-footer { background: var(--theme-green-dark); color: #d6d3d1; padding: 50px 0 20px 0; font-size: 0.9rem; text-align: center; }
.site-footer h3 { color: var(--white); margin-bottom: 15px; }
.footer-grid { margin-bottom: 40px; }
.copyright { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 0.8rem; }

/* --- Cookie Banner --- */
.cookie-banner-container {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background-color: #1c1917;
    color: #ffffff;
    padding: 15px 20px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    z-index: 50;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
    gap: 15px;
}
.cookie-banner-container p { font-size: 0.85rem; text-align: center; }
.cookie-banner-container a { color: var(--theme-purple); text-decoration: underline; }
.cookie-banner-container a:hover { color: var(--theme-purple-dark); }
.cookie-buttons { display: flex; gap: 10px; }
.cookie-btn {
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
    padding: 8px 20px; border-radius: 50px; font-weight: bold;
    cursor: pointer; transition: background 0.3s, color 0.3s; border: none;
}
.cookie-btn-accept { background-color: var(--theme-purple); color: var(--white); }
.cookie-btn-accept:hover { background-color: var(--theme-purple-dark); }
.cookie-btn-reject { background-color: transparent; border: 1px solid #78716c; color: #d6d3d1; }
.cookie-btn-reject:hover { background-color: #292524; color: var(--white); }

@media (min-width: 600px) {
    .cookie-banner-container { flex-direction: row; }
    .cookie-banner-container p { text-align: left; }
}

/* --- Mobile Responsiveness Allg. --- */
@media (max-width: 768px) {
    .nav-links { gap: 15px; font-size: 1rem; flex-direction: column; align-items: center; }
    .grid-3 { grid-template-columns: 1fr; }
    .site-footer { padding: 40px 20px 20px 20px; }
    .footer-grid > div { margin-bottom: 30px; }
}