/* About Page Styles */
.page-content {
    background: linear-gradient(180deg, 
        rgba(11, 12, 16, 0) 0%,
        rgba(11, 12, 16, 0.95) 15%,
        rgba(11, 12, 16, 1) 30%,
        rgba(11, 12, 16, 1) 70%,
        rgba(11, 12, 16, 0.95) 85%,
        rgba(11, 12, 16, 0) 100%
    );
    min-height: calc(100vh - var(--header-height));
    margin-top: var(--header-height);
    padding: 2rem;
    color: #ffffff;
}

/* Section Styles */
.about-section {
    max-width: 1200px;
    margin: 0 auto 6rem;
    padding: 2rem;
}

.about-section:last-child {
    margin-bottom: 2rem;
}

.section-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-image {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.section-image:hover .feature-image {
    transform: scale(1.05);
}

/* Text Styles */
.about-section h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.mission-statement {
    font-size: 1.4rem;
    color: var(--primary-orange);
    margin: 1.5rem 0;
    padding: 1rem;
    border-left: 4px solid var(--primary-orange);
}

.highlight-text {
    font-size: 1.4rem;
    color: var(--primary-orange);
    margin: 1rem 0;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

.feature-list li::before {
    content: '→';
    color: var(--primary-orange);
    position: absolute;
    left: 0;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    perspective: 1000px;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(11, 12, 16, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: linear-gradient(
        135deg,
        rgba(36, 152, 220, 0.1),
        transparent 40%,
        transparent 60%,
        rgba(255, 131, 0, 0.1)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 30px -10px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(36, 152, 220, 0.2),
        0 0 20px rgba(255, 131, 0, 0.1);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 3rem;
    color: var(--primary-orange);
    font-weight: bold;
    display: block;
    margin-bottom: 1rem;
    position: relative;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: translateZ(20px);
}

.stat-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    position: relative;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: translateZ(20px) scale(1.2);
}

.stat-item p {
    position: relative;
    transition: transform 0.3s ease;
}

.stat-item:hover p {
    transform: translateZ(10px);
}

/* Get Involved Section */
.involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    perspective: 1000px;
}

.involvement-item {
    padding: 2rem;
    background: rgba(11, 12, 16, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    position: relative;
}

.involvement-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: linear-gradient(
        135deg,
        rgba(36, 152, 220, 0.1),
        transparent 40%,
        transparent 60%,
        rgba(255, 131, 0, 0.1)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.involvement-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 30px -10px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(36, 152, 220, 0.2),
        0 0 20px rgba(255, 131, 0, 0.1);
}

.involvement-item:hover::before {
    opacity: 1;
}

.involvement-item h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    position: relative;
    transition: transform 0.3s ease;
}

.involvement-item:hover h3 {
    transform: translateZ(10px);
}

.subtitle {
    color: var(--primary-orange);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    transition: transform 0.3s ease;
}

.involvement-item:hover .subtitle {
    transform: translateZ(5px);
}

.involvement-item ul {
    list-style: none;
    padding: 0;
    position: relative;
    transition: transform 0.3s ease;
}

.involvement-item:hover ul {
    transform: translateZ(15px);
}

.involvement-item li {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    transition: transform 0.3s ease, color 0.3s ease;
}

.involvement-item:hover li {
    color: #ffffff;
}

.involvement-item li::before {
    content: '•';
    color: var(--primary-orange);
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
}

.involvement-item:hover li::before {
    transform: scale(1.2);
}

/* Add hover effects for icons in the titles */
.involvement-item h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.involvement-item h3::before {
    transition: transform 0.3s ease;
}

.involvement-item:hover h3::before {
    transform: scale(1.2) translateZ(20px);
}

/* Team History */
.history-content {
    margin: 2rem 0;
}

.history-milestones {
    margin: 2rem 0;
}

.milestone {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.year {
    font-size: 1.8rem;
    color: var(--primary-blue);
    font-weight: bold;
    min-width: 100px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-orange);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (min-width: 1024px) {
    .about-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .about-section.stats,
    .about-section.get-involved {
        display: block;
    }

    .about-section:nth-child(even) {
        direction: rtl;
    }

    .about-section:nth-child(even) > * {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .page-content {
        padding: 1rem;
    }

    .about-section {
        padding: 1rem;
    }

    .section-image {
        height: 300px;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .mission-statement,
    .highlight-text {
        font-size: 1.2rem;
    }

    .stats-grid,
    .involvement-grid {
        grid-template-columns: 1fr;
    }

    .milestone {
        gap: 1rem;
    }

    .year {
        min-width: 80px;
        font-size: 1.6rem;
    }
} 