/* Keine externen Fonts importieren, System-Fonts werden verwendet */

/* Nice Design System */
:root {
    --primary-color: #007AFF;
    --secondary-color: #5856D6;
    --success-color: #34C759;
    --warning-color: #FF9F0A;
    --error-color: #FF3B30;
    --background-color: #000000;
    --surface-color: #1C1C1E;
    --surface-secondary: #2C2C2E;
    --text-primary: #FFFFFF;
    --text-secondary: #8E8E93;
    --text-tertiary: #636366;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-color-strong: rgba(255, 255, 255, 0.2);
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.2);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.3);
    --blur-bg: rgba(28, 28, 30, 0.8);
    --blur-border: rgba(255, 255, 255, 0.15);
    --border-radius: 16px;
    --border-radius-small: 8px;
    --border-radius-large: 24px;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-spring: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Light Mode */
[data-theme="light"] {
    --background-color: #F2F2F7;
    --surface-color: #FFFFFF;
    --surface-secondary: #F2F2F7;
    --text-primary: #1D1D1F;
    --text-secondary: #86868B;
    --text-tertiary: #C7C7CC;
    --border-color: rgba(0, 0, 0, 0.1);
    --border-color-strong: rgba(0, 0, 0, 0.2);
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.12);
    --blur-bg: rgba(255, 255, 255, 0.8);
    --blur-border: rgba(0, 0, 0, 0.1);
}

/* Grundlegende Stile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    background: var(--background-color);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 80px;
}

header {
    background: var(--blur-bg);
    border-bottom: 1px solid var(--blur-border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
    box-shadow: 0 1px 0 var(--border-color);
}

nav {
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    min-height: 52px;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    text-decoration: none;
    transition: var(--transition-spring);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.logo-img {
    height: 40px;
    width: 40px;
    transition: var(--transition-smooth);
    border-radius: 8px;
    object-fit: contain;
}

.logo:hover .logo-img {
    transform: rotate(5deg) scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 122, 255, 0.3));
}

/* Navigation Container */
.nav-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Navigation Menu mit Theme Toggle */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Theme Toggle Button - neben der Navigation */
.theme-toggle {
    background: var(--border-color);
    border: 1px solid var(--border-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    opacity: 0.8;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.theme-toggle:hover {
    opacity: 1;
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.theme-toggle:hover .theme-icon {
    transform: scale(1.1);
}

.theme-icon {
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    filter: grayscale(0);
}

[data-theme="light"] .theme-toggle:hover .theme-icon {
    transform: rotate(180deg) scale(1.1);
}

[data-theme="dark"] .theme-toggle:hover .theme-icon {
    transform: rotate(-20deg) scale(1.1);
}

.nav-menu li a {
    color: var(--text-primary);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--border-radius-small);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu li a span {
    font-size: 1.1em;
    opacity: 0.8;
}

.nav-menu li a:hover {
    background: rgba(0, 122, 255, 0.1);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.nav-menu li a.active {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-medium);
}

.nav-menu li a.active span {
    opacity: 1;
}

/* Burger Menu - Verbessertes Design */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1002;
    transition: var(--transition-smooth);
    border-radius: var(--border-radius-small);
    position: relative;
}

.burger:hover {
    background: rgba(0, 122, 255, 0.1);
}

.burger span {
    display: block;
    height: 2.5px;
    width: 100%;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
    position: relative;
    transform-origin: center;
}

.burger span:nth-child(1) {
    margin-bottom: 5px;
}

.burger span:nth-child(2) {
    margin-bottom: 5px;
}

.burger.active {
    background: rgba(0, 122, 255, 0.1);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
    background: var(--primary-color);
}

.burger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
    background: var(--primary-color);
}

/* Responsive Design - Verbessertes Burger Menu */
@media (max-width: 768px) {
    .nav-container {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .burger {
        display: flex;
        order: 2; /* Burger kommt nach Theme-Toggle */
    }
    
    .theme-toggle {
        order: 1; /* Theme-Toggle kommt vor Burger */
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: var(--surface-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: var(--transition-smooth);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        border-left: 1px solid var(--border-color);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        list-style: none;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .nav-menu li a {
        font-size: 1.375rem;
        font-weight: 500;
        padding: 20px 32px;
        border-radius: var(--border-radius);
        width: 250px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        transition: var(--transition-bounce);
        background: rgba(0, 122, 255, 0.05);
        border: 1px solid rgba(0, 122, 255, 0.1);
        text-decoration: none;
        color: var(--text-primary);
    }

    .nav-menu li a:hover {
        transform: scale(1.05);
        background: rgba(0, 122, 255, 0.1);
        box-shadow: var(--shadow-medium);
        border-color: var(--primary-color);
    }

    .nav-menu li a.active {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
        transform: scale(1.02);
    }

    .nav-menu li a span {
        font-size: 1.2rem;
    }
    
    /* Mobile Navigation Overlay */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
    
    /* Header anpassen für Mobile */
    header {
        padding: 15px 20px;
    }
    
    nav {
        flex-wrap: nowrap;
    }
    
    .logo {
        font-size: 1.2rem;
        flex: 1;
    }
    
    .logo-img {
        width: 28px;
        height: 28px;
    }
}

/* Zusätzliches responsives Design für sehr kleine Bildschirme */
@media (max-width: 600px) {
    .nav-menu {
        width: 100%;
        max-width: 100%;
    }
    
    .nav-menu li a {
        width: 90%;
        font-size: 1.2rem;
        padding: 18px 24px;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .logo-img {
        width: 24px;
        height: 24px;
    }
    
    .theme-toggle {
        width: 32px;
        height: 32px;
        padding: 6px;
    }
    
    .burger {
        width: 24px;
        height: 24px;
    }
    
    .burger span {
        height: 2px;
    }
}

/* Fix für Body Overflow beim geöffneten Menü */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

main {
    max-width: 1000px;
    margin: 32px auto;
    padding: 0 24px;
}

.hero {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Venue Info Badge */
.venue-info {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.venue-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    animation: venue-pulse 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes venue-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    }
}

.hero {
    text-align: center;
    box-shadow: var(--shadow-medium);
    margin-bottom: 80px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.hero:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), #0056CC);
    color: white;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-spring);
    box-shadow: var(--shadow-medium);
    letter-spacing: -0.01em;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    background: linear-gradient(135deg, #0056CC, var(--secondary-color));
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--surface-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-light);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-weight: 400;
}

.about {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 48px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    text-align: center;
}

.about:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.about p {
    max-width: 800px;
    margin: 0 auto;
}

/* Unified Heading System */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    text-align: center;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
    position: relative;
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
}

h2::before {
    content: attr(data-emoji);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    border: 2px solid rgba(255, 255, 255, 0.1);
    font-size: 1.8rem;
    flex-shrink: 0;
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
    -webkit-text-fill-color: initial;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

h3::before {
    content: attr(data-emoji);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
    flex-shrink: 0;
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
    -webkit-text-fill-color: initial;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Fallback für H3 ohne data-emoji */
h3:not([data-emoji])::before {
    display: none;
}

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Donation Section - Einfacher Kasten */
.donation {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 32px;
    margin-top: 32px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.donation:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.donation h2 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.donation > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.payment-info {
    background: rgba(0, 122, 255, 0.05);
    border: 1px solid rgba(0, 122, 255, 0.1);
    border-radius: var(--border-radius-small);
    padding: 24px;
    max-width: 500px;
    margin: 0 auto;
}

.payment-info h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.payment-details {
    text-align: left;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 8px;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--surface-secondary);
    border-radius: var(--border-radius-small);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    flex-wrap: nowrap;
    gap: 12px;
    min-height: 60px;
    height: 60px;
}

.payment-row:hover {
    border-color: var(--primary-color);
    background: rgba(0, 122, 255, 0.05);
}

.payment-label {
    font-weight: 600;
    color: var(--text-primary);
    min-width: 90px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.payment-value {
    font-family: 'SF Mono', 'Monaco', 'Menlo', monospace;
    background: var(--background-color);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    text-align: center;
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.donation-note {
    margin-top: 20px;
    padding: 16px;
    background: rgba(52, 199, 89, 0.1);
    border: 1px solid rgba(52, 199, 89, 0.2);
    border-radius: var(--border-radius-small);
    color: var(--success-color);
}

.payment-details p {
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-primary);
}

.payment-details p:last-child {
    margin-bottom: 0;
}

.payment-details strong {
    color: var(--text-primary);
    font-weight: 600;
    display: inline-block;
    min-width: 140px;
}

/* Anniversary Section */
.anniversary-section {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-large);
    padding: 40px;
    margin: 40px 0;
    transition: var(--transition-spring);
    box-shadow: var(--shadow-light);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.anniversary-content h2 {
    text-align: center;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--warning-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.anniversary-text {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.anniversary-action {
    text-align: center;
    margin-bottom: 32px;
}

.timeline-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.timeline-item {
    text-align: center;
    padding: 20px;
    background: var(--surface-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    position: relative;
}

.timeline-item:hover {
    transform: translateY(-4px);
    border-color: var(--warning-color);
    box-shadow: var(--shadow-medium);
}

/* Featured Event - 1. Mal iENA Hervorhebung - Goldfarben */
.timeline-item.featured-event {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: 2px solid #DAA520;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    position: relative;
}

.timeline-item.featured-event:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    border-color: #B8860B;
}

.timeline-item.featured-event .timeline-year {
    color: #8B4513;
    font-size: 1.7rem;
    font-weight: 800;
}

.timeline-item.featured-event .timeline-event {
    color: #654321;
    font-weight: 600;
}

.timeline-year {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--warning-color);
    margin-bottom: 8px;
}

.timeline-event {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}
button, .btn {
    background: linear-gradient(135deg, var(--primary-color), #0056CC);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-spring);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

button:hover, .btn:hover {
    background: linear-gradient(135deg, #0056CC, var(--secondary-color));
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

button:active, .btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-light);
}

/* Ripple Effect */
button::before, .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.3s, height 0.3s, top 0.3s, left 0.3s;
    transform: translate(-50%, -50%);
}

button:active::before, .btn:active::before {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
}

footer {
    background: var(--surface-color);
    color: var(--text-secondary);
    text-align: center;
    padding: 48px 24px;
    margin-top: 64px;
    border-top: 1px solid var(--border-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

footer p {
    margin-bottom: 8px;
}

footer p:last-child {
    margin-bottom: 0;
    opacity: 0.7;
}

footer a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

footer a:hover {
    color: var(--background-color);
    background: var(--primary-color);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3);
    padding: 2px 4px;
}

/* nice-style Responsive Design */
@media (max-width: 600px) {
    main {
        padding: 0 16px;
        margin: 24px auto;
    }
    
    .hero {
        padding: 48px 32px;
        margin-bottom: 24px;
    }
    
    .hero h1 {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.75rem;
        padding-left: 0;
        gap: 12px;
        text-align: center;
        justify-content: center;
        flex-direction: column;
    }
    
    h2::before {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 8px;
    }
    
    h3 {
        font-size: 1.25rem;
        text-align: center;
        justify-content: center;
        gap: 8px;
        flex-direction: column;
    }
    
    h3::before {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .about {
        padding: 32px 24px;
    }
    
    .donation {
        padding: 24px 20px;
        margin-top: 24px;
    }
    
    .payment-info {
        padding: 16px;
        margin: 0 16px;
        max-width: none;
    }
    
    .payment-row {
        flex-direction: column;
        align-items: stretch;
        padding: 20px 16px;
        gap: 12px;
        min-height: 80px;
        height: auto;
    }
    
    .payment-label {
        min-width: auto;
        margin-bottom: 8px;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        justify-content: center;
    }
    
    .payment-value {
        text-align: center;
        font-size: 0.95rem;
        padding: 12px 16px;
        word-break: break-all;
        overflow-wrap: break-word;
        white-space: normal;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .payment-details strong {
        min-width: auto;
        font-size: 0.9rem;
    }
    
    h2 {
        font-size: 1.875rem;
    }
    
    .logo {
        font-size: 1.5rem;
        gap: 10px;
    }
    
    .logo-img {
        height: 38px;
    }
    
    nav {
        padding: 12px 16px;
    }
    
    button, .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* Extra kleine Bildschirme */
@media (max-width: 480px) {
    .payment-info {
        padding: 12px;
        margin: 0 8px;
    }
    
    .payment-info h3 {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .payment-row {
        padding: 8px;
        margin-bottom: 6px;
    }
    
    .payment-value {
        font-size: 0.8rem;
        padding: 6px;
    }
    
    .donation {
        padding: 24px 16px;
    }
    
    .donation h2 {
        font-size: 1.5rem;
    }
    
    .donation p {
        font-size: 0.9rem;
    }
}

/* Team Seite spezifisch */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.15);
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member p:not(.member-role) {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.join-team {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 40px 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.join-team h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.join-team p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.join-team button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.join-team button:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.3);
}

/* Kontakt Seite Spezifisch */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2,
.contact-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.contact-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.1);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.5;
}

.contact-card p:last-child {
    margin-bottom: 0;
}

.contact-form-container {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.3);
}

.faq {
    padding: 60px 20px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.faq-item {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Anpassungen für Kontakt */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 20px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .faq {
        padding: 40px 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Venue Badge Mobile */
    .venue-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .venue-info {
        margin-bottom: 1rem;
    }
}

/* Anniversary Section Styling */
.anniversary-section {
    margin-top: 32px;
    padding: 32px;
    background: var(--surface-color);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.anniversary-section:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

/* School Link Button Styling */
.school-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 16px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-spring);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.school-link::before {
    content: '🎓';
    font-size: 1.1rem;
    margin-right: 4px;
}

.school-link::after {
    content: '→';
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    margin-left: 4px;
}

.school-link:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.school-link:hover::after {
    transform: translateX(4px);
}

.school-link:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-light);
}

/* Moderne Projekte Grid Layout */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 60px auto 0 auto;
    padding: 20px;
}

.project-card {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    transition: var(--transition-spring);
    position: relative;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-thumbnail {
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}

.project-thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
    border-radius: var(--border-radius-small);
}

.project-card:hover .project-thumbnail {
    transform: scale(1.1);
}

.project-card:hover .project-thumbnail-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
}

.project-content {
    padding: 24px;
}

.project-content h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.project-content h2::before {
    content: attr(data-emoji);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    flex-shrink: 0;
    background-clip: padding-box !important;
    -webkit-background-clip: padding-box !important;
    -webkit-text-fill-color: white !important;
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Fallback für Projektkarten ohne data-emoji */
.project-content h2:not([data-emoji])::before {
    display: none;
}

.project-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.project-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(0, 122, 255, 0.05);
    border-radius: var(--border-radius-small);
    border-left: 3px solid var(--primary-color);
}

.project-team,
.project-grade,
.project-award,
.project-tech {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.info-icon {
    font-size: 1rem;
    opacity: 0.8;
}

.project-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius-small);
    font-weight: 600;
    transition: var(--transition-spring);
    margin-top: auto;
}

.project-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.link-arrow {
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.project-link:hover .link-arrow {
    transform: translateX(4px);
}

/* Status Badges - neu */
.project-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.status-completed {
    background: rgba(52, 199, 89, 0.9);
    color: white;
    box-shadow: 0 4px 12px rgba(52, 199, 89, 0.3);
}

.status-development {
    background: rgba(255, 193, 7, 0.9);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

/* Projects CTA Section */
.projects-cta {
    background: var(--surface-color);
    border-radius: var(--border-radius-large);
    padding: 48px;
    margin: 40px auto;
    text-align: center;
    max-width: 800px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-medium);
}

.cta-content h2 {
    margin-bottom: 16px;
}

.cta-content p {
    margin-bottom: 24px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Loading und Error States für Projects */
.loading, .error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.loading {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    position: relative;
}

.loading::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.2);
    color: var(--error-color);
    border-radius: var(--border-radius);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 20px;
    }
    
    .project-card {
        margin: 0 16px;
    }
    
    .project-info {
        padding: 12px;
    }
    
    .project-team,
    .project-grade,
    .project-award,
    .project-tech {
        font-size: 0.85rem;
    }
    
    .projects-cta {
        margin: 20px 16px;
        padding: 32px 24px;
    }
}

/* Projekt Detail Seiten */
.project-detail {
    max-width: 1000px;
    margin: 0 auto;
}

.project-breadcrumb {
    padding: 20px;
}

.project-breadcrumb a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-breadcrumb a:hover {
    color: var(--text-primary);
}

.project-hero {
    position: relative;
    margin-bottom: 40px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
}

.project-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

/* Fallback für Hero-Bilder ohne echtes Bild */
.project-hero-fallback {
    width: 100%;
    height: 400px;
    background: url('../images/mgf-logo.png') center/cover no-repeat;
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Fallback für Gallery-Bilder ohne echtes Bild */
.gallery-image-fallback {
    width: 100%;
    height: 200px;
    background: url('../images/mgf-logo.png') center/cover no-repeat;
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.project-hero-content {
    text-align: center;
    margin: 20px 0;
}

.project-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.project-hero-caption {
    text-align: center;
    margin: 20px 0;
    padding: 0 20px;
}

.project-hero-caption .project-lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.project-lead {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.project-content {
    padding: 0 20px 40px;
}

.project-content section {
    margin-bottom: 50px;
}

/* Projekt-Galerie */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

/* Responsive für kleinere Bildschirme */
@media (max-width: 768px) {
    .project-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .gallery-image {
        height: 150px;
    }
}

.project-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tech-item, .goal-item, .vision-item {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-small);
    padding: 20px;
    transition: var(--transition-smooth);
}

.tech-item:hover, .goal-item:hover, .vision-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.tech-item h3, .goal-item h3, .vision-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.progress-timeline {
    position: relative;
}

.progress-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.progress-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: -30px;
    width: 2px;
    background: var(--border-color);
}

.progress-item:last-child::before {
    display: none;
}

.progress-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    background: var(--surface-color);
    border: 2px solid var(--border-color);
}

.progress-item.completed .progress-icon {
    background: #34c759;
    border-color: #34c759;
    color: white;
}

.progress-item.current .progress-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.progress-item.pending .progress-icon {
    background: var(--surface-color);
    border-color: var(--border-color);
    color: var(--text-secondary);
}

.progress-content h3 {
    color: var(--text-primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.progress-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.achievements-grid, .goals-grid, .vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.achievement-item {
    text-align: center;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-small);
    padding: 25px;
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.achievement-text {
    color: var(--text-secondary);
    font-weight: 500;
}

.goal-icon, .vision-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.lessons-list {
    list-style: none;
    padding: 0;
}

.lessons-list li {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-small);
    padding: 15px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 50px;
    color: var(--text-secondary);
}

.lessons-list li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    color: #34c759;
    font-weight: bold;
    font-size: 1.2rem;
}

.specs-table {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-small);
    overflow: hidden;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--text-primary);
}

.spec-value {
    color: var(--text-secondary);
}

.team-info {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-small);
    padding: 25px;
}

.team-info p {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.team-info p:last-child {
    margin-bottom: 0;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-category h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-category ul {
    list-style: none;
    padding: 0;
}

.feature-category li {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-small);
    padding: 12px 15px;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.phases-timeline {
    position: relative;
}

.phase-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.phase-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.phase-content {
    flex: 1;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-small);
    padding: 20px;
}

.phase-content h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.phase-content p {
    color: var(--text-secondary);
    margin: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit-item {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-small);
    padding: 25px;
    text-align: center;
    transition: var(--transition-smooth);
}

.benefit-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.benefit-item p {
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive für Projekt Details */
@media (max-width: 768px) {
    .project-hero h1 {
        font-size: 2rem;
    }
    
    .project-lead {
        font-size: 1rem;
    }
    
    .project-hero-content {
        padding: 25px 20px;
    }
    
    .project-hero-image {
        height: 250px;
    }
    
    .tech-grid, .achievements-grid, .goals-grid, .vision-grid {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .phase-item {
        flex-direction: column;
        text-align: center;
    }
    
    .phase-number {
        margin: 0 auto;
    }
}

/* Project Thumbnail Images */
.project-thumbnail {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-thumbnail:hover {
    transform: translateY(-2px);
}

/* Universal Projekt-Thumbnail Styling - Optimiert für alle Projekte */
[class*="projekt-"][class*="-thumb"] {
    background: url('../images/mgf-logo.png') center/contain no-repeat;
    background-color: #f8f9fa;
}

[class*="projekt-"][class*="-thumb"]::before {
    content: "";
}

/* Awards Section */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* Single Award Layout */
.awards-single {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.awards-single .award-item {
    max-width: 400px;
    width: 100%;
}

.award-item {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-large);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.award-item.featured {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    border: 2px solid #FFD700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
    transform: scale(1.02);
}

.award-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FF6B6B 100%);
}

.award-item.featured::before {
    height: 6px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 30%, #FFD700 60%, #FFA500 100%);
    animation: goldShimmer 2s ease-in-out infinite;
}

@keyframes goldShimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.award-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-color);
}

.award-item.featured:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.3);
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.award-item.featured .award-icon {
    font-size: 3.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

.award-item h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.award-item.featured h3 {
    font-size: 1.3rem;
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.award-item p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.award-date {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: var(--border-radius-small);
    font-size: 0.85rem;
    font-weight: 500;
}

.award-item.featured .award-date {
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(218, 165, 32, 0.3);
}

@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .awards-single .award-item {
        max-width: 100%;
    }
    
    .award-item {
        padding: 1rem;
    }
    
    .award-icon {
        font-size: 2.5rem;
    }
    
    .award-item.featured .award-icon {
        font-size: 3rem;
    }
}