/* ===== Über Uns Seite - Elegant & Responsive ===== */

/* Page Background */
.about-page {
    background: #f8fafc;
}

.about-page-breadcrumb .shape-images {
    display: none !important;
}

/* Section Headings */
.section-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 2.5rem;
}

/* ===== Hero Section ===== */
.about-hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #ffffff;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 150, 255, 0.15), transparent);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(0, 150, 255, 0.15);
    border: 1px solid rgba(0, 150, 255, 0.3);
    backdrop-filter: blur(4px);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.hero-image {
    max-width: 280px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ===== Team Cards ===== */
.team-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 0 2rem 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 150, 255, 0.12);
}

.team-avatar-wrap {
    display: flex;
    justify-content: center;
    margin-top: -3rem;
    margin-bottom: 1.5rem;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    background: #ffffff;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.team-role {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(0, 150, 255, 0.08);
    color: #0096ff;
    margin-bottom: 1.5rem;
}

.team-bio {
    font-size: 0.938rem;
    line-height: 1.75;
    color: #4a5568;
    text-align: left;
    margin-bottom: 0;
}

/* ===== Feature Cards ===== */
.feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 150, 255, 0.12);
}

.feature-icon-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(0, 150, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0096ff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0;
}

.feature-text {
    font-size: 0.938rem;
    line-height: 1.7;
    color: #718096;
    margin-bottom: 0;
}

/* ===== Timeline ===== */
.timeline {
    position: relative;
    padding-left: 3rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0.875rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #e2e8f0, #cbd5e0);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -2.125rem;
    top: 0.5rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #0096ff;
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 150, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-marker::after {
    content: attr(data-year);
    position: absolute;
    left: -3rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    font-weight: 700;
    color: #0096ff;
    white-space: nowrap;
}

.timeline-content {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.timeline-header {
    padding: 1.5rem 1.5rem 1rem;
    background: linear-gradient(135deg, #0096ff 0%, #0077cc 100%);
    color: #ffffff;
}

.timeline-year {
    display: inline-block;
    font-size: 0.813rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0;
}

.timeline-body {
    padding: 1.5rem;
}

.timeline-text {
    font-size: 0.938rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.timeline-image-wrap {
    border-radius: 8px;
    overflow: hidden;
    background: #f8fafc;
    padding: 1rem;
}

.timeline-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 6px;
}

.timeline-caption {
    display: block;
    font-size: 0.813rem;
    color: #718096;
    text-align: center;
    margin-top: 0.75rem;
}

/* ===== Responsive Design ===== */

/* Tablets */
@media (max-width: 991.98px) {
    .about-hero {
        padding: 2.5rem 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-image {
        max-width: 240px;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
    
    .timeline {
        padding-left: 2.5rem;
    }
    
    .timeline-marker {
        left: -1.875rem;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .about-hero {
        padding: 2rem 1.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-text {
        font-size: 0.938rem;
    }
    
    .hero-image {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .team-card {
        padding: 0 1.5rem 1.5rem;
    }
    
    .team-avatar-wrap {
        margin-top: -2.5rem;
    }
    
    .team-avatar {
        width: 100px;
        height: 100px;
    }
    
    .team-name {
        font-size: 1.25rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .timeline {
        padding-left: 2rem;
    }
    
    .timeline::before {
        left: 0.625rem;
    }
    
    .timeline-marker {
        left: -1.625rem;
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .timeline-marker::after {
        left: -2.5rem;
        font-size: 0.688rem;
    }
    
    .timeline-header {
        padding: 1.25rem 1.25rem 0.75rem;
    }
    
    .timeline-title {
        font-size: 1.125rem;
    }
    
    .timeline-body {
        padding: 1.25rem;
    }
    
    .timeline-image {
        max-height: 300px;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .about-hero {
        padding: 1.5rem 1.25rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-heading {
        font-size: 1.25rem;
    }
    
    .feature-icon-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .timeline-image {
        max-height: 250px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item {
    animation: fadeInUp 0.6s ease-out;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }