/* Get Involved Page Styles */

/* Hero Section Intro Text */
.mission-hero-container .get-involved-intro-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #cbd5e1;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    margin-top: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .mission-hero-container .get-involved-intro-text {
        font-size: 1.1rem;
        margin-top: 1rem;
    }
}

/* Options Grid Section */
.get-involved-options-section {
    padding: 3rem 3rem 5rem;
    background-color: #0f172a;
}

@media (min-width: 768px) {
    .get-involved-options-section {
        padding: 4rem 5rem 6rem;
    }
}

@media (min-width: 1024px) {
    .get-involved-options-section {
        padding: 5rem 8rem 7rem;
    }
}

.get-involved-options-container {
    max-width: 1400px;
    margin: 0 auto;
}

.get-involved-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1200px) {
    .get-involved-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .get-involved-options-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Card Styles */
.get-involved-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(139, 92, 246, 0.02) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.get-involved-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.get-involved-card:hover {
    border-color: #8b5cf6;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15);
    transform: translateY(-8px);
}

.get-involved-card:hover::before {
    opacity: 1;
}

.get-involved-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #a78bfa;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.get-involved-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.get-involved-card-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: #cbd5e1;
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.get-involved-card-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-size: 1.5rem;
    line-height: 1.4;
}

/* Button Styles */
.get-involved-button {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
    position: relative;
    z-index: 1;
}

.get-involved-button:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
    transform: translateY(-2px);
}

.get-involved-button:active {
    transform: translateY(0);
}
