/* Neuer moderner Footer im Stil der Navbar (warme Natur-Töne) */
.footer-gradient {
    background: linear-gradient(90deg, #6ab04c 0%, #8cc152 100%);
    color: #2d3d1f;
    border-radius: 0 0 32px 32px;
    width: 100vw;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    padding-top: 56px;
    padding-bottom: 32px;
    margin-top: 56px;
    position: relative;
    overflow: hidden;
}
 
.footer-gradient::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, #2d3d1f 0%, #4a7c59 80%);
    z-index: 0;
    border-radius: 50%;
    opacity: 0.18;
    filter: blur(2px);
}
 
.footer-gradient::after {
    content: "";
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, #2d3d1f 0%, #4a7c59 80%);
    z-index: 0;
    border-radius: 50%;
    opacity: 0.13;
    filter: blur(2px);
}
 
.footer-title {
    font-size: 2.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #a2bc8b;
    text-shadow: 0 2px 16px #4a6136, 0 0 8px #4a7c59;
    margin-bottom: 8px;
}
 
.footer-desc {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: #2d3d1f;
    opacity: 0.95;
}
 
.footer-small {
    font-size: 1rem;
    color: #2d3d1f;
    opacity: 0.85;
}
 
.footer-link {
    color: #2d3d1f;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
    font-size: 1.08rem;
    letter-spacing: 0.2px;
    display: inline-block;
    padding: 2px 0;
    border-bottom: 1px solid transparent;
}
.footer-link:hover {
    color: #4a7c59;
    border-bottom: 1px solid #4a7c59;
    text-decoration: none;
}
 
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
 
.footer-social {
    color: #2d3d1f;
    font-size: 1.7rem;
    margin-right: 18px;
    transition: color 0.2s, transform 0.2s;
    vertical-align: middle;
    text-shadow: 0 2px 8px #4a7c5933;
}
.footer-social:hover {
    color: #4a7c59;
    transform: scale(1.18) rotate(-5deg);
}
 
.footer-divider {
    border-top: 1.5px solid #4a7c59;
    margin: 36px 0 0 0;
    opacity: 0.7;
}
 
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    margin-bottom: 10px;
    font-size: 1.08rem;
    color: #2d3d1f;
    display: flex;
    align-items: center;
}
.footer-contact i {
    margin-right: 10px;
    color: #2d3d1f;
    font-size: 1.1em;
}
 
@media (max-width: 900px) {
    .footer-gradient .row {
        flex-direction: column;
        gap: 32px;
    }
    .footer-gradient .col-md-6,
    .footer-gradient .col-md-4,
    .footer-gradient .col-md-3,
    .footer-gradient .col-md-5 {
        width: 100%;
        max-width: 100%;
    }
    .footer-title {
        font-size: 1.5rem;
    }
    .footer-desc {
        font-size: 1rem;
    }
}
 
/*
██████████████████████████████████████████████████████████████████████████████
█                                                                            █
█                        NAVIGATION (NAVBAR)                                █
█                        Für alle Seiten                                    █
█                                                                            █
██████████████████████████████████████████████████████████████████████████████
*/
 
/* Navbar Schrift-Design */
.navbar {
    font-family: 'Poppins', Arial, sans-serif;
    background: #f0f4ec;
}
.navbar-brand,
.navbar-nav .nav-link {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 600;
    color: #2d3d1f !important;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    background: none;
    border-radius: 0;
    box-shadow: none;
    transition: color 0.18s, background 0.18s, box-shadow 0.18s, transform 0.18s;
}
.navbar-brand {
    font-size: 2.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    transition: color 0.18s, text-shadow 0.18s, transform 0.18s, background 0.18s;
    background: none;
    background-clip: border-box;
    background: linear-gradient(135deg, #6ab04c 0%, #8cc152 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.navbar-brand:hover,
.navbar-brand:focus {
    text-shadow: 0 2px 16px rgba(106, 176, 76, 0.6), 0 0 8px rgba(140, 193, 82, 0.5);
    transform: scale(1.08) rotate(-2deg);
}
 
@keyframes shimmer-title {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
 
/* Moderner Hovereffekt für Navbar-Links */
.navbar-nav .nav-link {
    position: relative;
    overflow: visible;
    z-index: 1;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    color: #2d3d1f;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}
.navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6ab04c, #8cc152);
    transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #2d3d1f !important;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transform: translateY(0);
}
.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link:focus::before {
    width: 100%;
}
 
/* Mehr Abstand zwischen den Navbar-Links */
.navbar-nav {
    gap: 2.5rem;
}
 
/* Responsive Design */
@media (max-width: 600px) {
    .container {
        padding: 16px 0;
    }
    .container.main-content {
        padding: 16px 4px;
        width: 100vw;
    }
    table, th, td {
        font-size: 0.95rem;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    nav ul li {
        margin: 8px 0;
    }
}
    nav ul li {
        margin: 8px 0;
    }
/*
██████████████████████████████████████████████████████████████████████████████
█                    MODERN MINIMAL DESIGN SYSTEM                            █
██████████████████████████████████████████████████████████████████████████████
*/

/* === ROOT VARIABLES === */
:root {
    /* Colors */
    --primary: #6ab04c;
    --primary-dark: #4a7c59;
    --primary-light: #8cc152;
    --secondary: #2d3d1f;
    --accent: #f59e0b;
    --background: #fafaf9;
    --surface: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #6c757d;
    --border: #e5e7eb;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

/* === GLOBAL STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* === SMOOTH SCROLLING === */
html {
    scroll-behavior: smooth;
}

/* === GLASSMORPHISM EFFECT === */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* === GRADIENT TEXT === */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === ANIMATED BACKGROUND === */
.animated-bg {
    position: relative;
    overflow: hidden;
}

.animated-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(106, 176, 76, 0.03) 50%,
        transparent 70%
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }
    100% {
        transform: translateX(100%) translateY(100%);
    }
}

/* === FLOATING PARTICLES === */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    animation: float 20s infinite;
}

.particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 40%; left: 60%; animation-delay: 2s; }
.particle:nth-child(3) { top: 70%; left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { top: 50%; left: 80%; animation-delay: 1s; }
.particle:nth-child(5) { top: 10%; left: 50%; animation-delay: 3s; }

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* === MODERN CARDS === */
.modern-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.modern-card:hover::before {
    transform: scaleX(1);
}

/* === MODERN BUTTONS === */
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.875rem 2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(106, 176, 76, 0.3);
}

.btn-modern:hover::before {
    width: 300px;
    height: 300px;
}

.btn-modern:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* === MODERN INPUTS === */
.input-modern {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    transition: all var(--transition-base);
    background: var(--surface);
}

.input-modern:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(106, 176, 76, 0.1);
}

.input-group {
    position: relative;
    margin-bottom: var(--spacing-md);
}

.input-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.input-group i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

/* === LOADING SPINNER === */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(106, 176, 76, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* === PROGRESS BAR === */
.progress-modern {
    height: 8px;
    background: #e5e7eb;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 2s infinite;
}

/* === BADGES === */
.badge-modern {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === TOOLTIPS === */
.tooltip-modern {
    position: relative;
    cursor: help;
}

.tooltip-modern::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    padding: 0.5rem 1rem;
    background: var(--secondary);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    transition: all var(--transition-base);
    pointer-events: none;
}

.tooltip-modern::after {
    content: '';
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--secondary);
    opacity: 0;
    transition: all var(--transition-base);
}

.tooltip-modern:hover::before,
.tooltip-modern:hover::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

/* === ALERTS === */
.alert-modern {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: var(--spacing-md);
    border-left: 4px solid;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.alert-success {
    background: #d1fae5;
    border-color: #059669;
    color: #065f46;
}

.alert-error {
    background: #fee2e2;
    border-color: #dc2626;
    color: #991b1b;
}

.alert-info {
    background: #dbeafe;
    border-color: #3b82f6;
    color: #1e40af;
}

/* === SKELETON LOADING === */
.skeleton {
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: var(--radius-sm);
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* === HOVER EFFECTS === */
.hover-lift {
    transition: transform var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-4px);
}

.hover-scale {
    transition: transform var(--transition-base);
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-glow {
    transition: box-shadow var(--transition-base);
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(106, 176, 76, 0.5);
}

/* === GRID SYSTEM === */
.grid-modern {
    display: grid;
    gap: var(--spacing-lg);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* === SECTION DIVIDER === */
.section-divider-modern {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary),
        transparent
    );
    margin: var(--spacing-xl) 0;
}

/* === FEATURE ICONS === */
.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    color: white;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-base);
}

.icon-box:hover {
    transform: rotate(5deg) scale(1.1);
}

/* === RESPONSIVE UTILITIES === */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
    }
    
    body {
        font-size: 14px;
    }
}

/* === PRINT STYLES === */
@media print {
    .no-print {
        display: none !important;
    }
}

/* === ACCESSIBILITY === */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus visible for keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* === TEXT ELEMENTS === */
strong, b {
    font-weight: 700;
    border-bottom: 2px solid #6ab04c;
    padding-bottom: 2px;
    color: #2d3d1f;
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

.p-1 { padding: var(--spacing-xs); }
.p-2 { padding: var(--spacing-sm); }
.p-3 { padding: var(--spacing-md); }
.p-4 { padding: var(--spacing-lg); }

/* === SCROLLBAR KOMPLETT AUSBLENDEN (wenn gewünscht) === */
/* Für Webkit Browser (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

/* Für Firefox */
* {
    scrollbar-width: none;
}

/* Für IE/Edge (alt) */
body {
    -ms-overflow-style: none;
}





















