/* About Page Styles */
.about-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.about-hero {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease;
}

.about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Background for About Hero */
.about-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.about-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.1);
    object-fit: cover;
    filter: blur(2px) brightness(0.7);
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.about-hero-text {
    color: var(--white);
}

/* Dark Mode Hero Text - Force White */
body.dark-mode .about-hero-text {
    color: #ffffff !important;
}

.about-hero-text h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    animation: slideInFromBottom 0.8s ease 0.2s backwards;
}

/* Dark Mode Hero Heading - Force White */
body.dark-mode .about-hero-text h1 {
    color: #ffffff !important;
}

.about-hero-text p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    animation: slideInFromBottom 0.8s ease 0.4s backwards;
}

/* Dark Mode Hero Paragraph - Force White */
body.dark-mode .about-hero-text p {
    color: #ffffff !important;
}

.about-content {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 2px 10px var(--shadow);
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.6s backwards;
}

/* Dark Mode About Content */
body.dark-mode .about-content {
    background: rgba(20, 20, 20, 0.6);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2::before {
    display: none;
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Dark Mode About Text */
body.dark-mode .about-content p {
    color: #d0d0d0;
}

.about-content p.section-divider {
    text-align: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    margin: 2rem 0;
    opacity: 0.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--shadow);
    transition: transform 0.3s ease;
    animation: fadeInUp 0.6s ease backwards;
}

/* Dark Mode Stat Cards */
body.dark-mode .stat-card {
    background: rgba(20, 20, 20, 0.6);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:nth-child(1) { animation-delay: 0.8s; }
.stat-card:nth-child(2) { animation-delay: 0.9s; }
.stat-card:nth-child(3) { animation-delay: 1s; }
.stat-card:nth-child(4) { animation-delay: 1.1s; }

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: visible;
}

.stat-label {
    color: #666;
    font-size: 1rem;
}

/* Dark Mode Stat Label */
body.dark-mode .stat-label {
    color: #d0d0d0;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        height: 300px;
    }
    
    .about-hero-text h1 {
        font-size: 2rem;
    }
    
    .about-hero-text p {
        font-size: 1rem;
    }
    
    .about-content {
        padding: 2rem;
    }
    
    .about-content h2 {
        font-size: 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
} 