/* --- ABOUT PAGE VARIABLES --- */
:root {
    --about-hero-height: 85vh;
    --about-bg-primary: #121212;
    --about-bg-secondary: #1a1a1a;
    --about-accent: #3b82f6;
    /* Blue accent */
    --about-text-primary: #ffffff;
    --about-text-secondary: #a0a0a0;
    --about-glass-bg: rgba(255, 255, 255, 0.05);
    --about-glass-border: rgba(255, 255, 255, 0.1);
    --about-section-padding: 100px 0;
}

/* --- HERO SECTION --- */
.about-hero {
    position: relative;
    height: var(--about-hero-height);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--about-bg-primary);
}

.about-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* For parallax */
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 1;
}

.about-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0.3) 0%, var(--about-bg-primary) 100%);
    z-index: 2;
}

.about-hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    max-width: 1000px;
}

.about-hero__title {
    font-size: 5rem;
    font-weight: 800;
    color: var(--about-text-primary);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -2px;
    text-transform: uppercase;
    opacity: 0;
    /* JS animation */
    transform: translateY(30px);
}

.about-hero__subtitle {
    font-size: 1.5rem;
    color: var(--about-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    opacity: 0;
    /* JS animation */
    transform: translateY(20px);
}


/* --- STORY SECTION --- */
.about-story {
    padding: var(--about-section-padding);
    background-color: var(--about-bg-primary);
    color: var(--about-text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-story__grid {
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story__text p {
    margin-bottom: 20px;
}

.about-story__text strong {
    color: var(--about-text-primary);
}

.about-story__video {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    background: #000;
}

.about-story__video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/* --- STATS SECTION --- */
.about-stats {
    padding: 80px;
    background-color: var(--about-bg-secondary);
    border-top: 1px solid var(--about-glass-border);
    border-bottom: 1px solid var(--about-glass-border);
}

.about-stats__grid {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-card {
    padding: 30px;
    background: var(--about-glass-bg);
    border: 1px solid var(--about-glass-border);
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    /* JS animation */
    transform: translateY(20px);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--about-accent);
}

.stat-card__icon {
    font-size: 3rem;
    color: var(--about-accent);
    margin-bottom: 15px;
    display: inline-block;
}

.stat-card__value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--about-text-primary);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-card__title {
    font-size: 1rem;
    color: var(--about-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* --- TEAM SECTION --- */
.about-team {
    padding: var(--about-section-padding);
    background-color: var(--about-bg-primary);
}

.about-team__header {
    text-align: center;
    margin-bottom: 60px;
}

.about-team__title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--about-text-primary);
    margin-bottom: 10px;
}

.about-team__desc {
    color: var(--about-text-secondary);
    font-size: 1.2rem;
}

.about-team__grid {
    padding: 80px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--about-bg-secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
    opacity: 0;
    /* JS animation */
    transform: translateY(30px);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card__img-wrapper {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.team-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-card__img {
    transform: scale(1.1);
}

.team-card__content {
    padding: 25px;
    text-align: center;
    background: var(--about-bg-secondary);
    position: relative;
    z-index: 2;
}

.team-card__name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--about-text-primary);
    margin-bottom: 5px;
}

.team-card__role {
    font-size: 0.9rem;
    color: var(--about-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.team-card__socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-card__social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--about-glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--about-text-secondary);
    transition: all 0.3s ease;
    border: 1px solid var(--about-glass-border);
}

.team-card__social-link:hover {
    background: var(--about-accent);
    color: #fff;
    border-color: var(--about-accent);
    transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-story__grid {
        grid-template-columns: 1fr;
    }

    .about-hero__title {
        font-size: 3.5rem;
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .about-hero__title {
        font-size: 2.5rem;
    }

    .about-stats {
        padding: 50px 0;
    }

    .about-stats__grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-card__img-wrapper {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .about-stats__grid {
        grid-template-columns: 1fr;
    }
}