/* Über uns-Sektion Styles */
:root {
    --primary-color: #00a2ff;
    --secondary-color: #0062ff;
    --accent-color: #00ffff;
    --dark-bg: #000814;
    --darker-bg: #000000;
    --light-text: #e0f2ff;
    --silver: #c0c0c0;
    --glow-effect: 0 0 10px rgba(0, 162, 255, 0.7), 0 0 20px rgba(0, 162, 255, 0.4);
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: auto;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    color: var(--light-text);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

p {
    margin-bottom: 1rem;
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(0, 162, 255, 0.5);
}

.section-content {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(90deg, transparent 0%, var(--darker-bg) 100%);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.about-content {
    padding-right: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 8, 20, 0.5);
    border: 1px solid rgba(0, 162, 255, 0.1);
    border-radius: 10px;
    transition: all var(--transition-speed) ease;
}

.stat:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.stat.glow {
    box-shadow: 0 0 20px rgba(0, 162, 255, 0.8), 0 0 40px rgba(0, 162, 255, 0.4);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(0, 162, 255, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--silver);
}

/* Animation-Klassen */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    h2 {
        font-size: 2rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 1.8rem;
    }
}

/* iPhone-spezifische Optimierungen */
@supports (-webkit-touch-callout: none) {
    .section-content {
        -webkit-overflow-scrolling: touch;
    }
}
