/* ========================================
   GET INVOLVED PAGE STYLES
   ======================================== */

/* Page Header */
.page-header 
{
    height: 450px;
    background: linear-gradient(rgba(74, 20, 140, 0.85), rgba(74, 20, 140, 0.7)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 450"><defs><pattern id="dots" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="%23D4AF37" opacity="0.3"/></pattern></defs><rect fill="%234A148C" width="1200" height="450"/><rect fill="url(%23dots)" width="1200" height="450"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.page-header::before 
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.1));
}

.page-header-content 
{
    position: relative;
    z-index: 1;
    padding: 0 20px;
    max-width: 800px;
}

.page-header h1 
{
    font-size: 52px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    font-weight: 700;
}

.page-header p 
{
    font-size: 20px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    line-height: 1.8;
}

.breadcrumb 
{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    font-size: 14px;
}

.breadcrumb a 
{
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover 
{
    color: var(--white);
}

.breadcrumb span 
{
    color: rgba(255,255,255,0.7);
}

/* Section Subtitle */
.section-subtitle 
{
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* Ways to Help Section */
.ways-to-help 
{
    padding: 100px 20px;
    background: var(--white);
}

.ways-grid 
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.way-card 
{
    background: var(--white);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s;
    border-top: 5px solid var(--gold);
}

.way-card:hover 
{
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.way-icon-wrapper 
{
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--deep-purple), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.way-icon 
{
    font-size: 36px;
    /*color: var(--white);*/
    color: var(--green);
}

.way-card h3 
{
    color: var(--deep-purple);
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 700;
}

.way-card p 
{
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
}

.way-features 
{
    list-style: none;
}

.way-features li 
{
    padding: 10px 0;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
}

.way-features i 
{
    color: var(--gold);
    font-size: 16px;
    margin-top: 3px;
}

/* Volunteer Opportunities Section */
.volunteer-opportunities 
{
    padding: 100px 20px;
    background: var(--light-gray);
}

.opportunities-grid 
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.opportunity-card 
{
    background: var(--white);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.opportunity-card:hover 
{
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.opportunity-header 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.opportunity-header i 
{
    font-size: 32px;
    /*color: var(--light-blue);*/
    color: var(--green);
}

.opportunity-badge 
{
    background: var(--gold);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.opportunity-card h4 
{
    color: var(--deep-purple);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.opportunity-card p 
{
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

.opportunity-details 
{
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.detail-item 
{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

.detail-item i 
{
    color: var(--gold);
    font-size: 16px;
}

/* Impact Volunteers Section */
.impact-volunteers 
{
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--deep-purple), #6A1B9A);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.impact-volunteers::before 
{
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 50%;
}

.volunteer-stats 
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.stat-item 
{
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.stat-item:hover 
{
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.stat-icon 
{
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
}

.stat-number 
{
    font-size: 48px;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 15px;
}

.stat-label 
{
    font-size: 16px;
    color: var(--light-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-cta 
{
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 60px;
    border-left: 5px solid var(--gold);
}

.contact-cta h3 
{
    color: var(--deep-purple);
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-cta > p 
{
    color: #666;
    font-size: 16px;
    margin-bottom: 25px;
}

.coordinator-info 
{
    display: inline-block;
    text-align: left;
    background: var(--white);
    padding: 25px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.coordinator-info p 
{
    color: #555;
    margin-bottom: 12px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.coordinator-info p:last-child 
{
    margin-bottom: 0;
}

.coordinator-info i 
{
    color: var(--gold);
    width: 20px;
}

.coordinator-info strong 
{
    color: var(--deep-purple);
}

.contact-grid 
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.contact-card 
{
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.contact-card:hover 
{
    background: var(--white);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-icon 
{
    width: 70px;
    height: 70px;
    background: var(--deep-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.contact-card:hover .contact-icon 
{
    background: var(--gold);
    transform: scale(1.1);
}

.contact-icon i 
{
    font-size: 28px;
    color: var(--white);
}

.contact-card h4 
{
    color: var(--deep-purple);
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-card p 
{
    color: #666;
    margin-bottom: 15px;
    font-size: 15px;
}

.contact-link 
{
    color: var(--deep-purple);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.contact-link:hover 
{
    color: var(--gold);
}

.contact-social 
{
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 15px;
}

.contact-social a 
{
    width: 40px;
    height: 40px;
    background: var(--deep-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
    text-decoration: none;
}

.contact-social a:hover 
{
    background: var(--gold);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 968px) 
{
    .page-header h1 
    {
        font-size: 36px;
    }

    .page-header p 
    {
        font-size: 16px;
    }

    .ways-grid,
    .opportunities-grid 
    {
        grid-template-columns: 1fr;
    }

    .way-card,
    .opportunity-card 
    {
        padding: 35px 25px;
    }
}

@media (max-width: 480px) 
{
    .page-header h1 
    {
        font-size: 28px;
    }

    .page-header 
    {
        height: 350px;
    }

    .way-icon-wrapper 
    {
        width: 70px;
        height: 70px;
    }

    .way-icon 
    {
        font-size: 28px;
    }

    .way-card h3 
    {
        font-size: 22px;
    }

    .stat-number 
    {
        font-size: 36px;
    }

    .coordinator-info 
    {
        padding: 20px 25px;
    }

    .btn-secondary 
    {
        margin-left: 0;
        margin-top: 15px;
    }
}