/* Outreach Section Styles */
.outreach-section {
    max-width: 1800px;
    margin: var(--header-height) auto 0;
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(to bottom, 
        rgba(11, 12, 16, 0.95),
        rgba(31, 31, 31, 0.98)
    );
    color: white;
    position: relative;
    overflow: visible;
    min-height: calc(100vh - var(--header-height));
}

/* Add ambient gradient background */
.outreach-section::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(36, 152, 220, 0.03) 0%, transparent 80%),
        radial-gradient(circle at 70% 70%, rgba(255, 131, 0, 0.03) 0%, transparent 80%);
    pointer-events: none;
    z-index: 0;
    animation: gradientMove 20s ease-in-out infinite alternate;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
    font-family: 'Nasalization', sans-serif;
    background: linear-gradient(90deg, #2498DC, #FF8300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(36, 152, 220, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, #2498DC, #FF8300);
    box-shadow: 0 0 10px rgba(36, 152, 220, 0.5);
}

.section-description {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Outreach Grid */
.outreach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

/* Outreach Cards */
.outreach-card {
    background: linear-gradient(135deg,
        rgba(36, 152, 220, 0.05) 0%,
        rgba(26, 26, 26, 0.9) 50%,
        rgba(255, 131, 0, 0.05) 100%
    );
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 0 15px rgba(255, 131, 0, 0.1),
        0 0 15px rgba(36, 152, 220, 0.1);
    transition: all 0.3s ease;
    border: 1px solid;
    border-image: linear-gradient(135deg, rgba(36, 152, 220, 0.3), rgba(255, 131, 0, 0.3)) 1;
    backdrop-filter: blur(5px);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.outreach-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 0 25px rgba(255, 131, 0, 0.2),
        0 0 25px rgba(36, 152, 220, 0.2);
}

.outreach-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.outreach-card:hover .outreach-image img {
    transform: scale(1.05);
}

.outreach-content {
    padding: 1.5rem;
    text-align: left;
}

.outreach-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2498DC;
    font-family: 'Nasalization', sans-serif;
}

.outreach-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

/* Animation delay for cards */
.outreach-card:nth-child(1) { animation-delay: 0.1s; }
.outreach-card:nth-child(2) { animation-delay: 0.2s; }
.outreach-card:nth-child(3) { animation-delay: 0.3s; }

/* Responsive Design */
@media (max-width: 1200px) {
    .outreach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .outreach-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .outreach-content h2 {
        font-size: 1.3rem;
    }
} 