/* CSS for the About Us Page */

:root {
    --about-ink: #0a0a0f;
    --about-cream: #ffffff;
    --about-gold: #c9a84c;
    --about-blue: #00a8ff;
    --about-muted: #8b8b99;
}

body {
    background-color: var(--about-ink);
}

.about-hero {
    background: var(--about-ink);
    color: var(--about-cream);
    padding-top: 12rem;
    padding-bottom: 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#about-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: auto;
    /* Allow mouse interaction for particles */
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.about-label {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.about-label-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--about-gold);
}

.about-title {
    font-family: 'Syne', sans-serif;
    color: var(--about-cream);
    margin-bottom: 1.5rem;
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
}

.about-title-em {
    color: transparent;
    -webkit-text-stroke: 1px var(--about-gold);
    font-style: italic;
    background: linear-gradient(90deg, var(--about-gold), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: rgba(201, 168, 76, 0.8);
}

.about-sub {
    font-family: 'DM Sans', sans-serif;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    font-size: 1.2rem;
    line-height: 1.6;
}

.about-content-section {
    background: var(--about-cream);
    padding: 8rem 5vw;
    position: relative;
}

/* Diagonal Separator from Dark Hero to Light Content */
.about-content-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--about-cream);
    transform: skewY(-2deg);
    z-index: 1;
}

.about-grid {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 6rem;
    align-items: center;
}

.about-h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--about-ink);
    margin-bottom: 2rem;
}

.about-p {
    font-family: 'DM Sans', sans-serif;
    color: #4a4a55;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-vision-box,
.about-mission-box {
    position: relative;
    padding: 2rem;
    margin-top: 3rem;
    border-radius: 12px;
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-vision-box:hover,
.about-mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.about-vision-box {
    border-left: 4px solid var(--about-blue);
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.03), transparent);
}

.about-mission-box {
    border-left: 4px solid var(--about-gold);
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.03), transparent);
}

.about-h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--about-ink);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.about-mission-p {
    font-family: 'DM Sans', sans-serif;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-features-box {
    background: var(--about-ink);
    padding: 4rem;
    border-radius: 20px;
    color: var(--about-cream);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.about-features-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.about-h3 {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--about-cream);
}

.about-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 0;
    position: relative;
    z-index: 2;
}

.about-feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.about-feature-icon {
    color: var(--about-gold);
    font-size: 1.2rem;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.about-feature-item:hover .about-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(201, 168, 76, 0.2);
}

.about-feature-icon-blue {
    color: var(--about-blue);
    background: rgba(0, 168, 255, 0.1);
    border-color: rgba(0, 168, 255, 0.2);
}

.about-feature-item:hover .about-feature-icon-blue {
    background: rgba(0, 168, 255, 0.2);
}

.about-feature-title {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Syne', sans-serif;
}

.about-feature-desc {
    font-family: 'DM Sans', sans-serif;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.6;
    display: block;
}

.about-stats-section {
    background: var(--about-ink);
    color: var(--about-cream);
    padding: 8rem 5vw;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.about-stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
}

.about-stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--about-gold);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, var(--about-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Transition delays for lists */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-hero {
        padding-top: 8rem;
        padding-bottom: 5rem;
        min-height: 60vh;
    }

    .about-content-section {
        padding: 5rem 5vw;
    }

    .about-grid {
        gap: 4rem;
        grid-template-columns: 1fr;
    }

    .about-features-box {
        padding: 2.5rem 1.5rem;
    }

    .about-stats-section {
        padding: 5rem 5vw;
    }

    .about-stat-number {
        font-size: 3rem;
    }
}