/* Base CSS für alle Screens - 4 Hauptfarben aus Logo für Wow-Effekt */

/* Logo-Hauptfarben:
 * Primärfarbe (Dunkelblau): #000717 - Haupt-Hintergründe
 * Sekundärfarbe (Mittelblau): #022057 - Akzente und Karten
 * Tertiärfarbe (Dunkelblau): #004479 - Übergänge und Details
 * Akzentfarbe (Hellblau): #1981E2 - Buttons, Links und Highlights
 */

/* Globale Animationen */
@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(25, 129, 226, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(25, 129, 226, 0.6);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation Styles - Exakte Logo-Farbe */
.navbar {
    background-color: #00030C;
    padding: 0 20px;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    border-bottom: 1px solid rgba(25, 129, 226, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideInFromTop 0.8s ease-out;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.nav-brand:hover {
    transform: scale(1.05);
    animation: float 3s ease-in-out infinite;
}

.nav-logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    border: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    background: rgba(25, 129, 226, 0.1);
    border: 1px solid transparent;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.3s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: #1981E2;
    background: rgba(25, 129, 226, 0.2);
    border-color: rgba(25, 129, 226, 0.3);
}

/* Admin Dropdown Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-btn {
    background: #1981E2;
    color: #ffffff;
    border: none;
    padding: 16px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    /* Ensure equal top/bottom padding for perfect centering */
    min-height: 48px;
    line-height: 1;
    vertical-align: middle;
}

.nav-dropdown-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.3s ease;
}

.nav-dropdown-btn:hover::before {
    left: 100%;
}

.nav-dropdown-btn:hover {
    background: #004479;
    color: #ffffff; /* Ensure text remains white and readable */
}

.dropdown-icon {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.nav-dropdown-btn:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.nav-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 7, 23, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(25, 129, 226, 0.3);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(25, 129, 226, 0.2), transparent);
    transition: left 0.5s ease;
}

.dropdown-link:hover::before {
    left: 100%;
}

.dropdown-link:hover {
    background: linear-gradient(135deg, rgba(25, 129, 226, 0.2) 0%, rgba(0, 68, 121, 0.2) 100%);
    color: #1981E2;
    transform: translateX(5px);
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link .dropdown-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.dropdown-link:hover .dropdown-icon {
    transform: scale(1.2);
}

/* User Avatar Styles */
.nav-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.user-avatar:hover {
    transform: scale(1.1);
}

.avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #1981E2;
    object-fit: cover;
    transition: all 0.2s ease;
}

.avatar-img:hover {
    border-color: #004479;
}



/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #000717 0%, #022057 50%, #004479 100%);
    color: #ffffff;
    text-align: center;
    padding: 30px 20px;
    margin-top: auto;
    border-top: 1px solid rgba(25, 129, 226, 0.2);
    backdrop-filter: blur(10px);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 14px;
}

.footer-link {
    color: #1981E2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(25, 129, 226, 0.5);
}

/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #000717 0%, #022057 50%, #004479 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

main {
    flex: 1;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Professionelle Button-Styles gemäß Regeln */
.btn, .btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    min-height: 48px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    /* Regel 006: Gleichmäßiger Abstand oben/unten für perfekte Zentrierung */
    line-height: 1;
    vertical-align: middle;
    /* Regel 003: Text immer zentriert und groß geschrieben */
    text-transform: uppercase;
    font-weight: 700;
}

.btn::before, .btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.3s ease;
}

.btn:hover::before, .btn-primary:hover::before, .btn-secondary:hover::before {
    left: 100%;
}

.btn:hover, .btn-primary:hover, .btn-secondary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Magic UI MCP - Professionelle Button-Designs */
.btn-primary {
    background: linear-gradient(135deg, #1981E2 0%, #004479 100%);
    color: #ffffff;
    border: 2px solid #1981E2;
    box-shadow: 0 4px 15px rgba(25, 129, 226, 0.3);
    /* Regel 001: Klarer Kontrast zwischen Hintergrund und Schriftfarbe */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #004479 0%, #022057 100%);
    border-color: #004479;
    color: #ffffff; /* Regel 007: Text bleibt lesbar im Hover */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 129, 226, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #022057 0%, #000717 100%);
    color: #ffffff;
    border: 2px solid #022057;
    box-shadow: 0 4px 15px rgba(2, 32, 87, 0.3);
    /* Regel 001: Klarer Kontrast zwischen Hintergrund und Schriftfarbe */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-secondary:hover::after {
    left: 100%;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #000717 0%, #004479 100%);
    border-color: #004479;
    color: #ffffff; /* Regel 007: Text bleibt lesbar im Hover */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 32, 87, 0.4);
}

/* Magic UI MCP - DELETE Buttons mit rotem Hintergrund */
.btn-delete {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #ffffff;
    border: 2px solid #dc3545;
    padding: 16px 24px;
    min-height: 48px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    /* Regel 001: Klarer Kontrast für DELETE Buttons */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    /* Regel 003: Text zentriert und groß geschrieben */
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.btn-delete::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-delete:hover::after {
    left: 100%;
}

.btn-delete:hover {
    background: linear-gradient(135deg, #c82333 0%, #a71e2a 100%);
    border-color: #c82333;
    color: #ffffff; /* Regel 007: Text bleibt lesbar im Hover */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

/* Magic UI MCP - Action Buttons für Tabellen */
.btn-edit, .btn-view {
    background: linear-gradient(135deg, #1981E2 0%, #004479 100%);
    color: #ffffff;
    border: 2px solid #1981E2;
    padding: 12px 16px;
    font-size: 12px;
    min-height: 40px;
    box-shadow: 0 3px 10px rgba(25, 129, 226, 0.3);
    /* Regel 006: Gleichmäßiger Abstand oben/unten */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    /* Regel 003: Text zentriert und groß geschrieben */
    text-transform: uppercase;
    font-weight: 700;
    /* Regel 001: Klarer Kontrast */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-edit::after, .btn-view::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-edit:hover::after, .btn-view:hover::after {
    left: 100%;
}

.btn-edit:hover, .btn-view:hover {
    background: linear-gradient(135deg, #004479 0%, #022057 100%);
    border-color: #004479;
    color: #ffffff; /* Regel 007: Text bleibt lesbar im Hover */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(25, 129, 226, 0.4);
}

/* Magic UI MCP - DELETE Buttons in Tabellen */
.btn-delete {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #ffffff;
    border: 2px solid #dc3545;
    padding: 12px 16px;
    font-size: 12px;
    min-height: 40px;
    box-shadow: 0 3px 10px rgba(220, 53, 69, 0.3);
    /* Regel 006: Gleichmäßiger Abstand oben/unten */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    /* Regel 003: Text zentriert und groß geschrieben */
    text-transform: uppercase;
    font-weight: 700;
    /* Regel 001: Klarer Kontrast */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-delete::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-delete:hover::after {
    left: 100%;
}

.btn-delete:hover {
    background: linear-gradient(135deg, #c82333 0%, #a71e2a 100%);
    border-color: #c82333;
    color: #ffffff; /* Regel 007: Text bleibt lesbar im Hover */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Magic UI MCP - Login/Logout Buttons - nur Text, keine Zeichen */
.login-btn, .logout-btn {
    background: linear-gradient(135deg, #1981E2 0%, #004479 100%);
    color: #ffffff;
    border: 2px solid #1981E2;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    box-shadow: 0 4px 15px rgba(25, 129, 226, 0.3);
    /* Regel 001: Klarer Kontrast */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    /* Regel 006: Gleichmäßiger Abstand */
    line-height: 1;
    position: relative;
    overflow: hidden;
}

.login-btn::after, .logout-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.login-btn:hover::after, .logout-btn:hover::after {
    left: 100%;
}

.login-btn:hover, .logout-btn:hover {
    background: linear-gradient(135deg, #004479 0%, #022057 100%);
    border-color: #004479;
    color: #ffffff; /* Regel 007: Text bleibt lesbar im Hover */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 129, 226, 0.4);
}

/* Link Styles */
a {
    color: #1981E2;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(25, 129, 226, 0.5);
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin: 20px 0;
    animation: fadeInUp 0.8s ease-out;
}

th {
    background: linear-gradient(135deg, #022057 0%, #004479 100%);
    color: #ffffff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(25, 129, 226, 0.3);
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #1981E2, #004479, #022057);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

th:hover::after {
    transform: scaleX(1);
}

td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

tr:hover {
    background: rgba(25, 129, 226, 0.1);
    transform: scale(1.01);
}

/* Tile Styles */
.tile {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(25, 129, 226, 0.1), transparent);
    transition: left 0.5s ease;
}

.tile:hover::before {
    left: 100%;
}

.tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(25, 129, 226, 0.3);
    border-color: rgba(25, 129, 226, 0.5);
}

.tile-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1981E2;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(25, 129, 226, 0.3);
    transition: all 0.3s ease;
}

.tile-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tile-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 10px 15px;
    }
    
    .nav-logo-img {
        height: 80px;
    }
    
    .avatar-img {
        width: 40px;
        height: 40px;
    }
    
    .tile {
        margin: 10px;
        padding: 20px;
    }
    
    .tile-number {
        font-size: 2.5rem;
    }
    
    .tile-title {
        font-size: 1rem;
    }
    
    .tile-description {
        font-size: 0.8rem;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .navbar {
        padding: 0 15px;
    }
    
    .nav-brand {
        flex-shrink: 0;
    }
    
    .nav-menu {
        gap: 10px;
    }
    
    .nav-user {
        gap: 10px;
    }
}

/* Loading States */
.btn.loading, .btn-primary.loading, .btn-secondary.loading {
    pointer-events: none;
    opacity: 0.7;
}

/* Enhanced Tile Hover Effects */
.tile:hover .tile-number {
    transform: scale(1.1);
    color: #ffffff;
}

/* Glass Container */
.glass-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Special Tile Effects */
.tile:nth-child(odd)::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(25, 129, 226, 0.1) 0%, transparent 70%);
    animation: float 4s ease-in-out infinite;
}

.tile:nth-child(even)::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 68, 121, 0.1) 0%, transparent 70%);
    animation: float 4s ease-in-out infinite reverse;
} 

/* Headline Styles - Optimierte Lesbarkeit mit hohem Kontrast */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 20px 0;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 
        0 3px 6px rgba(0, 0, 0, 0.9),
        0 6px 12px rgba(0, 0, 0, 0.6),
        0 9px 18px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.01em;
}

h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.8),
        0 3px 6px rgba(0, 0, 0, 0.4);
}

h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.4);
}

h6 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Spezielle Headline-Varianten für verschiedene Hintergründe */
.headline-light {
    color: #022057;
    text-shadow: 
        0 1px 2px rgba(255, 255, 255, 0.9),
        0 2px 4px rgba(255, 255, 255, 0.6),
        0 3px 6px rgba(255, 255, 255, 0.3);
}

.headline-accent {
    color: #1981E2;
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.9),
        0 2px 4px rgba(0, 0, 0, 0.6),
        0 3px 6px rgba(0, 0, 0, 0.3);
}

.headline-warning {
    color: #dc3545;
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.9),
        0 2px 4px rgba(0, 0, 0, 0.6),
        0 3px 6px rgba(0, 0, 0, 0.3);
}

/* Responsive Headlines - Optimiert für mobile Lesbarkeit */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        font-weight: 800;
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.9),
            0 4px 8px rgba(0, 0, 0, 0.5);
    }
    
    h2 {
        font-size: 1.75rem;
        font-weight: 700;
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.8),
            0 3px 6px rgba(0, 0, 0, 0.4);
    }
    
    h3 {
        font-size: 1.375rem;
        font-weight: 700;
        text-shadow: 
            0 1px 3px rgba(0, 0, 0, 0.8),
            0 2px 4px rgba(0, 0, 0, 0.4);
    }
    
    h4 {
        font-size: 1.125rem;
        font-weight: 700;
        text-shadow: 
            0 1px 2px rgba(0, 0, 0, 0.8),
            0 2px 4px rgba(0, 0, 0, 0.4);
    }
    
    h5 {
        font-size: 1rem;
        font-weight: 700;
        text-shadow: 
            0 1px 2px rgba(0, 0, 0, 0.8),
            0 2px 4px rgba(0, 0, 0, 0.4);
    }
    
    h6 {
        font-size: 0.875rem;
        font-weight: 700;
        text-shadow: 
            0 1px 2px rgba(0, 0, 0, 0.8),
            0 2px 4px rgba(0, 0, 0, 0.4);
    }
} 