/* ===== GLOBALE VARIABLEN ===== */
:root {
    /* Farben */
    --primary: #217e81;
    --primary-dark: #105f64;
    --secondary-color: #f8764e;
    --primary-color: rgb(25, 116, 111);
    --accent-color: rgb(9, 113, 121);
    --text: #1e293b;
    --text-light: #64748b;
    --text-color: #333;
    --background: #ffffff;
    --light-bg: rgb(255, 255, 255);
    --white: #ffffff;
    --gray-light: #ffffff;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --linku: rgb(26, 103, 105);
    --linku-one: rgb(255, 255, 255);
    --linku-two: rgb(255, 236, 223);
    --linku-three: rgb(240, 254, 255);
    --linku-four: rgb(197, 255, 252);
    
    /* Schatten */

    --font-primary: 'Compose';
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    --header-shadow: 0 2px 1px rgba(0,0,0,0.4);
    --dropdown-shadow: 0 8px 16px rgba(0,0,0,0.4);
    --menu-shadow: -2px 0 10px rgba(0,0,0,0.5);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    /* Abstände */
    --space-xs: 0.3rem;
    --space-sm: 0.5rem;
    --space-md: 0.8rem;
    --space-lg: 1rem;
    --space-xl: 1.5rem;
    --space-xxl: 2rem;
    
    /* Schriftgrößen */
    --text-xs: 0.9rem;
    --text-sm: 0.95rem;
    --text-md: 1rem;
    --text-lg: 1.1rem;
    --text-xl: 1.2rem;
    --text-xxl: 1.3rem;
    --text-xxxl: 1.4rem;
    --text-jumbo: 1.5rem;
    
    /* Radien */
    --radius-sm: 4px;
    --radius-md: 8px;
    
    /* Transparenzen */
    --hover-opacity: 0.9;
    --linku-transparent-15: rgba(255,255,255,0.15);
    --linku-transparent-10: rgba(255,255,255,0.1);
    --linku-transparent-85: rgba(255, 255, 255, 0.85);
    --linku-transparent-70: rgba(255, 255, 255, 0.7);
    --black-transparent-5: rgba(0,0,0,0.05);
    --black-transparent-10: rgba(0,0,0,0.1);
    --black-transparent-20: rgba(0,0,0,0.2);
    --black-transparent-42: rgba(0, 0, 0, 0.42);
    --black-transparent-50: rgba(0,0,0,0.5);
    
    /* Dimensionen */
    --header-height: 50px;
    --content-max-height: calc(100vh - 180px);
    --mobile-menu-width: 280px;
    --dropdown-min-width: 120px;
    --icon-size-sm: 0.9rem;
    --icon-size-md: 1rem;
    --icon-size-lg: 1.2rem;
    --icon-size-xl: 1.4rem;
    
    /* Zeiten */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* ===== BASIS-STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




body {
    font-family: var(--font-primary);
    color: var(--text);
    background-color: var(--background);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}




/* Modal Stile */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
}

