:root {
    /* COLORS: Off-White & British Racing Green */
    --bg-color: #f8f8f4;
    --text-color: #004225; 

    --font-serif: "Times New Roman", Times, Baskerville, Georgia, serif;
    --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Zentrale Bühne */
.center-stage {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.brand-container {
    text-align: center;
}

.brand-logo {
    width: 100px;        /* Größe des Logos - bei Bedarf anpassen (z.B. 60px oder 100px) */
    height: auto;       /* Verhältnis beibehalten */
    margin-bottom: 25px; /* Abstand zum Text "Friedrich Partners" */
    display: block;
    margin-left: auto;   /* Zentrierung erzwingen */
    margin-right: auto;
    
    /* Trick: Falls der Hintergrund des Bildes nicht exakt zur Website passt, 
       blendet dies den weißen Hintergrund des Bildes sanft aus: */
    mix-blend-mode: multiply; 
}

h1 {
    font-family: var(--font-serif);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.slogan {
    font-family: var(--font-sans);
    font-size: clamp(12px, 2vw, 14px);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
    opacity: 0.8;
}

/* Footer */
footer {
    padding: 30px;
    text-align: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    color: var(--text-color);
}

footer a {
    color: var(--text-color);
    text-decoration: none;
    transition: opacity 0.3s;
}

footer a:hover { opacity: 0.6; }

.separator { margin: 0 8px; opacity: 0.4; }

/* COOKIE BANNER (Updated Layout) */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px; /* Feste Breite für eine saubere Box */
    background: var(--text-color); /* Grün */
    color: var(--bg-color);       /* Off-White */
    padding: 20px;
    font-size: 11px;
    line-height: 1.4;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.cookie-buttons {
    display: flex;
    justify-content: space-between; /* Buttons verteilen */
    align-items: center;
}

#cookie-banner a {
    color: var(--bg-color);
    text-decoration: underline;
    opacity: 0.8;
}

#cookie-banner button {
    background: var(--bg-color); /* Off-White Button */
    color: var(--text-color);    /* Grüner Text */
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: bold;
}

/* Mobile Optimierung */
@media (max-width: 600px) {
    footer {
        padding-bottom: 40px;
        font-size: 10px;
    }
    
    #cookie-banner {
        width: auto;
        left: 20px; /* Auf Mobile Links und Rechts Abstand */
        right: 20px; 
        bottom: 20px;
    }
}
