/* REC77.CSS - School Partnership Program Styles */
/* Chicago Neighborhood Soccer - Partnership-Focused Programming */

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.9) 0%, rgba(22, 163, 74, 0.8) 50%, rgba(249, 115, 22, 0.7) 100%), 
                url('../hero/boys_city_play_daytime.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.program-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    font-family: 'Open Sans', sans-serif;
}

.page-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.program-tagline {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.4rem;
    color: #f3f4f6;
    margin-bottom: 2rem;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partnership-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.partnership-element {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.partnership-element:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.partnership-connector {
    color: #16a34a;
    font-size: 2rem;
    font-weight: bold;
}

/* ===== BREADCRUMB NAVIGATION ===== */
.breadcrumb {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 0.8rem 0;
    border-bottom: 1px solid #e5e7eb;
    margin-top: 20px;
}

.breadcrumb a {
    color: #16a34a;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #6b7280;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    color: #374151;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: 'Open Sans', sans-serif;
    color: #6b7280;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== COMMUNITY CREDENTIALS SECTION ===== */
.community-credentials {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 80px 0;
}

.community-highlight {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    font-style: italic;
    font-size: 1.2rem;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.2);
}

.community-highlight p {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.credential-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    text-align: center;
}

.credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    border-color: #16a34a;
}

.credential-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.credential-card h3 {
    font-family: 'Poppins', sans-serif;
    color: #374151;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.credential-card p {
    font-family: 'Open Sans', sans-serif;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ===== PARTNERSHIP APPROACH SECTION ===== */
.partnership-approach {
    background: white;
    padding: 80px 0;
}

.collaboration-visual {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.input-section, .experience-section {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.input-section:hover, .experience-section:hover {
    border-color: #16a34a;
    transform: translateY(-3px);
}

.input-section {
    border-left: 5px solid #f97316;
}

.experience-section {
    border-left: 5px solid #16a34a;
}

.input-section h3, .experience-section h3 {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.input-section h3 {
    color: #f97316;
}

.experience-section h3 {
    color: #16a34a;
}

.input-list, .experience-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.input-list li, .experience-list li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-family: 'Open Sans', sans-serif;
    color: #4b5563;
}

.input-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f97316;
    font-weight: bold;
}

.experience-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

.collaboration-plus {
    font-size: 3rem;
    color: #16a34a;
    font-weight: bold;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.collaboration-result {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.2);
}

.collaboration-result h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.collaboration-result p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.principal-needs {
    text-align: center;
    margin: 3rem 0;
}

.principal-needs h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #374151;
    font-weight: 600;
    margin-bottom: 2rem;
}

.needs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.need-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.need-item:hover {
    border-color: #16a34a;
    transform: translateY(-2px);
}

.checkmark {
    color: #16a34a;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 0.8rem;
}

/* ===== PROGRAM INVESTMENT SECTION ===== */
.program-investment {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 80px 0;
}

.investment-philosophy {
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem auto;
    max-width: 600px;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.program-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.option-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.option-card:hover {
    border-color: #16a34a;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.option-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.option-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.option-duration {
    color: #16a34a;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
}

.option-investment {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin: 1rem 0;
}

.investment-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.investment-note {
    font-size: 0.9rem;
    opacity: 0.9;
    font-family: 'Open Sans', sans-serif;
}

.option-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.option-features li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-family: 'Open Sans', sans-serif;
    color: #4b5563;
}

.option-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== CONVERSATION SECTION ===== */
.conversation-section {
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
    color: white;
    padding: 100px 0;
}

.conversation-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #16a34a;
}

.benefit-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.benefit-item p {
    font-family: 'Open Sans', sans-serif;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.cta-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem auto;
    max-width: 700px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-family: 'Open Sans', sans-serif;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-info {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 1.1rem;
    font-family: 'Open Sans', sans-serif;
}

.contact-icon {
    color: #16a34a;
    font-size: 1.3rem;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.cta-actions {
    margin: 2rem 0;
}

.btn-large {
    font-size: 1.2rem;
    padding: 18px 35px;
}

.community-quote {
    text-align: center;
    margin-top: 3rem;
}

.community-quote p {
    font-style: italic;
    opacity: 0.8;
    font-size: 1.1rem;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
}

/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.8rem;
    }
    
    .partnership-visual {
        flex-direction: column;
        gap: 1rem;
    }
    
    .partnership-connector {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }
    
    .collaboration-visual {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .collaboration-plus {
        transform: rotate(90deg);
        font-size: 2rem;
    }
    
    .program-options {
        grid-template-columns: 1fr;
    }
    
    .conversation-benefits {
        grid-template-columns: 1fr;
    }
    
    .needs-grid {
        grid-template-columns: 1fr;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
    }
    
    .breadcrumb {
        margin-top: 10px;
        padding: 0.6rem 0;
    }
    
    .page-header {
        padding: 60px 0 50px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .option-investment {
        margin: 1.5rem 0;
    }
    
    .investment-amount {
        font-size: 1.8rem;
    }
    
    .cta-section {
        margin: 2rem auto;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .program-tagline {
        font-size: 1.2rem;
    }
    
    .partnership-element {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .community-highlight {
        font-size: 1rem;
        padding: 1.5rem;
    }
    
    .credential-card, .option-card, .benefit-item {
        padding: 1.5rem;
    }
    
    .input-section, .experience-section {
        padding: 1.5rem;
    }
    
    .collaboration-result {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 1.5rem;
    }
}