/* Globale Stile & Farbdefinitionen */
:root {
    --brand-green: #1b5135; /* Das dunkle Grün aus dem Logo/Hintergrund */
    --status-green: #68b043;
    --status-yellow: #f1be23;
    --status-red: #e52421;
    --status-black: #000000;
    --status-alt: #0000ff;
    --text-dark: #1b5135; 
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1500px;
    width: 100%;
}

/* --- HEADER BEREICH --- */
.site-header {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

/* Behelfs-Logo, falls kein Bild genutzt wird */
.logo-mock {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-green);
}
.logo-icon { font-size: 35px; }
.logo-text { font-size: 20px; line-height: 1.1; }

.divider {
    width: 1px;
    height: 60px;
    background-color: #ccc;
    margin: 0 30px;
}

.title-area h1 {
    font-size: 38px;
    color: var(--brand-green);
    font-weight: bold;
    line-height: 1.1;
}

.title-area h2 {
    font-size: 20px;
    color: #000;
    font-weight: normal;
    margin-top: 5px;
}

/* --- HAUPTBEREICH: WOCHENTAGE --- */
.day-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.day-card {
    border: 3px solid #000000;
    border-radius: 20px;
    padding: 25px 15px;
    text-align: center;
    background: #fff;
}

.day-card h3 {
    font-size: 26px;
    color: var(--brand-green);
    margin-bottom: 20px;
    font-weight: bold;
}

/* Status-Kreise */
.icon-circle {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 45px;
    font-weight: bold;
    user-select: none;
}

/* Farbvarianten für die Kreise */
.status-green  { background-color: var(--status-green); }
.status-yellow { background-color: var(--status-yellow); }
.status-red    { background-color: var(--status-red); font-size: 40px; }
.status-black  { background-color: var(--status-black); }
.status-alt    { background-color: var(--status-alt); }

/* Feinjustierung für die Symbole im Kreis */
.status-green { padding-bottom: 5px; }
.status-yellow { padding-bottom: 8px; }

/* --- FOOTER BEREICH: LEGENDE & INFOBOX --- */
.footer-container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 25px;
}

.info-card {
    background-color: var(--brand-green);
    border-radius: 15px;
    color: #ffffff;
    padding: 25px 30px;
}

/* Legende Links */
.legend-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 500;
}

/* Kleinere Kreise für die Legende */
.icon-circle.sm {
    width: 32px;
    height: 32px;
    font-size: 16px;
}
.icon-circle.sm.status-yellow { padding-bottom: 4px; }
.icon-circle.sm.status-green { padding-bottom: 2px; }

/* Infobox Rechts */
.notice-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.notice-header {
    margin-bottom: 15px;
}

.calendar-icon {
    font-size: 35px;
    background: white;
    padding: 5px;
    border-radius: 8px;
    display: inline-block;
    line-height: 1;
}

.notice-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.notice-card p {
    font-size: 17px;
    line-height: 1.3;
    opacity: 0.9;
}

/* Responsive Anpassung für kleinere Bildschirme (Tablets/Smartphones) */
@media (max-width: 768px) {
    .day-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .site-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .divider {
        display: none;
    }
}