/* === BAVARIA FRUIT LOGISTICS - DESIGN SYSTEM VARIABLES === */

/* Lokale Schriftarten laden */
@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

:root {
    /* Typografie */
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    /* Helle, warme Grundfarben (Sandstein & Leinen) */
    --bg-color: #F7F2EC;           /* Warmer Sandstein-Hintergrund */
    --surface-color: #FCFBF9;      /* Heller Leinen-Ton (Karten & Modals) */
    --surface-hover: #F2EBE2;      /* Sand-Hover-Effekt */
    
    /* Dunkle Rahmen & Header (Anthrazit) */
    --dark-anthracite: #3D4752;    /* Haupt-Anthrazit für Header & Sidebar */
    --dark-anthracite-hover: #2B323B;/* Dunklerer Ton für Aktiv-Zustände */
    --dark-border: #4A5561;         /* Subtiler Randschatten im Dunklen */

    /* Hauptakzent (Terrakotta-Rot) */
    --accent-red: #D95B43;         /* Primärfarbe für Buttons & Badges */
    --accent-red-hover: #C04A31;   /* Hover-Status für Primärbuttons */
    --accent-red-light: rgba(217, 91, 67, 0.12);

    /* Textfarben */
    --text-dark: #2B323B;          /* Anthrazit-Schwarz für Haupttexte */
    --text-medium: #6A747D;        /* Medium-Grau für Untertitel & Labels */
    --text-light: #9EA6B0;         /* Helles Grau für Platzhalter & Zeitstempel */
    --text-white: #FFFFFF;         /* Weiß auf dunklem Hintergrund */

    /* Rand & Trennlinien */
    --border-color: #EAE0D3;       /* Dezent sandfarbener Rand */
    --border-radius-sm: 6px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-circle: 50%;

    /* Status-Farben */
    --status-success: #2ECC71;     /* Grün (Geliefert / Bestätigt) */
    --status-warning: #F39C12;     /* Orange (In Bearbeitung) */
    --status-danger: #E74C3C;      /* Rot (Storniert / Kritisch) */
    --status-info: #3498DB;        /* Blau (In Zustellung) */

    /* Schatten & Tiefen */
    --shadow-sm: 0 2px 8px rgba(61, 71, 82, 0.05);
    --shadow-md: 0 6px 18px rgba(61, 71, 82, 0.08);
    --shadow-lg: 0 12px 30px rgba(61, 71, 82, 0.14);
    --shadow-mobile-nav: 0 -4px 20px rgba(0, 0, 0, 0.15);

    /* Z-Indizes */
    --z-header: 100;
    --z-sidebar: 90;
    --z-mobile-nav: 200;
    --z-dropdown: 300;
    --z-modal: 1000;
    --z-toast: 2000;

    /* Übergänge */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.4s ease;
}