/* Einbindung der lokalen Schriften */
@font-face {
    font-family: 'ABCSocial';
    src: url('ABCSocial-Book.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ABCSocial';
    src: url('ABCSocial-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

/* Zentrale Farbdefinition */
:root {
    --bg-color: #FAFAFA;       /* Sanftes Off-White */
    --text-main: #3A403D;      /* Dunkles Schiefergrau */
    --accent: #9CAF88;         /* Akzentfarbe */
    --accent-hover: #84A98C;   /* Hover/Details (angepasst für bestehenden Code) */
    --text-muted: #717C76;     /* Abgeleitetes Grau für den Footer */
    
    /* Zwingend beibehaltene Systemfarben für bestehende Layout-Elemente */
    --card-bg: #ffffff;
    --danger: #ef4444;
    --danger-hover: #dc2626;
    --border: #e2e8f0;
}