/* ===================================
   CRIPS FAMILY - ULTRA MODERN CSS
   If it ain't blue, it ain't true
   =================================== */

/* === CSS Variables === */
:root {
    /* Colors */
    --primary-blue: #0000FF;
    --secondary-blue: #1E90FF;
    --light-blue: #00BFFF;
    --neon-blue: #00D4FF;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #e0e0e0;
    --text-light-gray: #b0b0b0;
    
    /* Gradients */
    --gradient-blue: linear-gradient(135deg, #0000FF 0%, #1E90FF 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,255,0.3) 100%);
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 20px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.5);
    --shadow-blue: 0 0 30px rgba(0, 0, 255, 0.5);
    --shadow-neon: 0 0 20px rgba(0, 212, 255, 0.8);
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
    --transition-slow: 0.8s ease;
}

/* === Reset & Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* === Loading Screen === */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-blue);
    text-shadow: var(--shadow-neon);
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-blue);
    animation: loading 2s ease-in-out;
}

.loading-text {
    color: var(--text-gray);
    margin-top: 20px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

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

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-blue);
    text-shadow: var(--shadow-blue);
    letter-spacing: 3px;
}

.logo-slogan {
    font-size: 0.75rem;
    color: var(--text-light-gray);
    letter-spacing: 1px;
    font-style: italic;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-blue);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-blue);
    transition: var(--transition-fast);
    border-radius: 3px;
}

/* === Hero Section === */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: var(--container-padding);
}

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(0, 0, 255, 0.2);
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 50px;
}

.title-line {
    display: block;
}

.neon-glow {
    color: var(--primary-blue);
    text-shadow: 
        0 0 10px rgba(0, 0, 255, 0.8),
        0 0 20px rgba(0, 0, 255, 0.6),
        0 0 40px rgba(0, 0, 255, 0.4),
        0 0 80px rgba(0, 0, 255, 0.2);
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% { text-shadow: 0 0 10px rgba(0, 0, 255, 0.8), 0 0 20px rgba(0, 0, 255, 0.6), 0 0 40px rgba(0, 0, 255, 0.4); }
    50% { text-shadow: 0 0 20px rgba(0, 0, 255, 1), 0 0 40px rgba(0, 0, 255, 0.8), 0 0 80px rgba(0, 0, 255, 0.6); }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: block;
}

.stat-number,
.stat-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--text-white);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 0, 255, 0.8);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

/* === Scroll Indicator === */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-blue);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-blue);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 25px; opacity: 0; }
}

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

.scroll-text {
    font-size: 0.8rem;
    color: var(--text-light-gray);
    letter-spacing: 1px;
}

/* === Sections === */
.section {
    padding: var(--section-padding);
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* === Section Headers === */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 0, 255, 0.1);
    border: 1px solid var(--primary-blue);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-blue);
    text-shadow: var(--shadow-blue);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* === Timeline === */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-blue);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
    box-shadow: var(--shadow-blue);
    flex-shrink: 0;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 255, 0.2);
    box-shadow: var(--shadow-md);
}

.timeline-year {
    display: inline-block;
    padding: 5px 15px;
    background: var(--gradient-blue);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 10px;
}

.highlight-text {
    color: var(--light-blue);
    font-weight: 600;
}

/* === Lage Section === */
.lage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.lage-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 255, 0.2);
    text-align: center;
    transition: var(--transition-fast);
}

.lage-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-blue);
}

.lage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-white);
    box-shadow: var(--shadow-blue);
}

.lage-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.lage-highlight {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 10px;
}

.lage-detail {
    color: var(--text-light-gray);
    font-size: 1.1rem;
}

/* === Ziele Section === */
.ziele-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.ziel-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 255, 0.2);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.ziel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: var(--transition-fast);
}

.ziel-card:hover::before {
    transform: scaleX(1);
}

.ziel-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-blue);
}

.ziel-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.ziel-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-white);
}

.ziel-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* === Qualifikation Section === */
.qualification-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.qualification-text {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 255, 0.2);
}

.lead-text {
    font-size: 1.3rem;
    color: var(--light-blue);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
}

.qualification-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.qualification-text h4 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin: 30px 0 20px;
}

.check-list {
    list-style: none;
    margin-bottom: 30px;
}

.check-list li {
    color: var(--text-gray);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.check-list i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.achievement-text {
    background: rgba(0, 0, 255, 0.1);
    padding: 20px;
    border-left: 4px solid var(--primary-blue);
    border-radius: var(--radius-sm);
    color: var(--text-gray);
    font-style: italic;
}

.qualification-achievements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.achievement-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 255, 0.2);
    text-align: center;
    transition: var(--transition-fast);
}

.achievement-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-blue);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
}

.achievement-card h4 {
    font-size: 1.1rem;
    color: var(--text-white);
    font-weight: 600;
}

/* === Events Gallery === */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.event-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-blue);
}

.event-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.event-card:hover .event-overlay {
    opacity: 1;
}

.event-icon {
    font-size: 3rem;
    color: var(--text-white);
}

/* === Business Section === */
.business-description {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 255, 0.2);
    margin-bottom: 50px;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.business-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 255, 0.2);
    text-align: center;
    transition: var(--transition-fast);
}

.business-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-blue);
}

.business-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.business-card h4 {
    font-size: 1.3rem;
    color: var(--text-white);
    font-weight: 600;
}

/* === Ranks Section === */
.ranks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.rank-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 255, 0.2);
    position: relative;
    transition: var(--transition-fast);
    overflow: hidden;
}

.rank-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-blue);
}

.rank-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-blue);
}

.rank-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 0, 255, 0.2);
}

.rank-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.rank-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.rank-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Rank Specific Styles */
.rank-10 { border-left-color: gold; }
.rank-10::before { background: linear-gradient(180deg, gold, #ff8800); }

.rank-9 { border-left-color: silver; }
.rank-9::before { background: linear-gradient(180deg, silver, #666); }

.rank-8 { border-left-color: #cd7f32; }
.rank-8::before { background: linear-gradient(180deg, #cd7f32, #8b4513); }

/* === Colors Section === */
.colors-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.colors-display {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 255, 0.2);
}

.colors-display h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
    text-align: center;
}

.rgb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.rgb-value {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 255, 0.2);
}

.rgb-label {
    display: block;
    font-size: 1.2rem;
    color: var(--text-light-gray);
    margin-bottom: 10px;
}

.rgb-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-blue);
}

.zusatz-color {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 255, 0.2);
    margin-bottom: 30px;
}

.zusatz-label {
    display: inline-block;
    font-size: 1.2rem;
    color: var(--text-light-gray);
    margin-right: 15px;
}

.zusatz-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-blue);
}

.color-preview {
    width: 100%;
    height: 100px;
    background: rgb(0, 0, 50);
    border-radius: var(--radius-md);
    border: 2px solid var(--primary-blue);
    box-shadow: var(--shadow-blue);
}

.vehicle-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.vehicle-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
}

.vehicle-image:hover img {
    transform: scale(1.05);
}

/* === Impressum Section === */
.impressum-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 255, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.impressum-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.impressum-item {
    text-align: center;
}

.impressum-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-white);
    box-shadow: var(--shadow-blue);
}

.impressum-item h4 {
    font-size: 1.2rem;
    color: var(--text-light-gray);
    margin-bottom: 10px;
}

.impressum-item p {
    font-size: 1.3rem;
    color: var(--text-white);
    font-weight: 600;
}

.impressum-footer {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 255, 0.2);
    border-bottom: 1px solid rgba(0, 0, 255, 0.2);
    margin-bottom: 30px;
}

.impressum-closing {
    text-align: center;
}

.impressum-closing p {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.8;
}

/* === Footer === */
.footer {
    background: var(--darker-bg);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0, 0, 255, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
    text-align: center;
}

.footer-logo h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    text-shadow: var(--shadow-blue);
    margin-bottom: 10px;
}

.footer-logo p {
    color: var(--text-light-gray);
    font-style: italic;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.footer-copyright {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: var(--text-light-gray);
    font-size: 0.9rem;
}

/* === Lightbox === */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--primary-blue);
    transform: rotate(90deg);
}

/* === Animation Classes === */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
}

.fade-in-left.visible {
    animation: fadeInLeft 0.8s ease forwards;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
}

.fade-in-right.visible {
    animation: fadeInRight 0.8s ease forwards;
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* === Responsive Design === */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px;
        gap: 30px;
        transition: var(--transition-fast);
        border-left: 1px solid rgba(0, 0, 255, 0.2);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 100px;
    }
    
    .timeline-icon {
        position: absolute;
        left: 0;
    }
    
    .qualification-content {
        grid-template-columns: 1fr;
    }
    
    .colors-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .ziele-grid,
    .events-grid,
    .business-grid,
    .ranks-grid {
        grid-template-columns: 1fr;
    }
    
    .qualification-achievements {
        grid-template-columns: 1fr;
    }
    
    .impressum-grid {
        grid-template-columns: 1fr;
    }
    
    .rgb-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number,
    .stat-text {
        font-size: 2rem;
    }
    
    .lage-highlight {
        font-size: 2.5rem;
    }
}