/* Get Involved Page Specific Styles */

/* Get Involved Hero */
.get-involved-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #FFF9F0 0%, #FFF4E6 100%);
}

.get-involved-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.gi-hero-content {
    padding-right: 20px;
}

.gi-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.gi-hero-subtitle {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.gi-hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.gi-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Ways to Support Section */
.ways-support-section {
    padding: 100px 0;
    background: white;
}

.ways-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.way-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid;
    transition: all 0.3s ease;
}

.way-card.pink {
    border-color: #FF6B9D;
}

.way-card.blue {
    border-color: #4A90E2;
}

.way-card.green {
    border-color: #27AE60;
}

.way-card.purple {
    border-color: #9B59B6;
}

.way-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.way-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.way-card.pink .way-icon {
    background: #FF6B9D;
}

.way-card.blue .way-icon {
    background: #4A90E2;
}

.way-card.green .way-icon {
    background: #27AE60;
}

.way-card.purple .way-icon {
    background: #9B59B6;
}

.way-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.way-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.btn-way {
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-way.pink {
    background: #FF6B9D;
}

.btn-way.blue {
    background: #4A90E2;
}

.btn-way.green {
    background: #27AE60;
}

.btn-way.purple {
    background: #9B59B6;
}

.btn-way:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Volunteer Opportunities Section */
.volunteer-opportunities-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.opportunity-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.opportunity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.opportunity-header {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #e67e00 100%);
    padding: 30px;
    color: white;
}

.opportunity-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.opportunity-intro {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
}

.opportunity-details {
    padding: 30px;
}

.detail-item {
    margin-bottom: 20px;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    margin-bottom: 8px;
}

.detail-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.detail-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-item li {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
}

.detail-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

.opportunities-cta {
    text-align: center;
    margin-top: 50px;
}

/* Corporate Partnership Section */
.corporate-partnership-section {
    padding: 100px 0;
    background: white;
}

.partnership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.partnership-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.partnership-benefits h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.partnership-benefits ul {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
}

.partnership-benefits li {
    font-size: 15px;
    color: var(--text-light);
    line-height: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.partnership-benefits i {
    color: var(--primary-orange);
    font-size: 18px;
}

.partnership-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF9F0 0%, #FFF4E6 100%);
    border-radius: 20px;
    padding: 40px;
}

.partnership-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* Ready Section */
.ready-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.ready-content {
    text-align: center;
}

.ready-subtitle {
    font-size: 17px;
    color: var(--text-light);
    margin: 15px auto 50px;
    max-width: 600px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.contact-card {
    background: white;
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #e67e00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.contact-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.contact-link {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #e67e00;
    text-decoration: underline;
}

/* Responsive Design for Get Involved Page */
@media (max-width: 968px) {
    .get-involved-hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gi-hero-title {
        font-size: 38px;
    }
    
    .ways-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .opportunities-grid,
    .partnership-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gi-hero-title {
        font-size: 32px;
    }
    
    .gi-hero-subtitle {
        font-size: 15px;
    }
    
    .ways-grid {
        grid-template-columns: 1fr;
    }
    
    .opportunity-header {
        padding: 25px;
    }
    
    .opportunity-details {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .gi-hero-title {
        font-size: 28px;
    }
    
    .way-icon,
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .opportunity-title {
        font-size: 20px;
    }
}
