/* Programs Page Styles */

.program-detail {
    margin-bottom: 60px;
    padding: 40px;
    background: var(--light-grey);
    border-radius: 10px;
    border-left: 6px solid var(--red);
}

.program-detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.program-badge {
    font-size: 36px;
    font-weight: 700;
    color: var(--red);
    font-family: 'Bebas Neue', sans-serif;
    min-width: 60px;
}

.program-detail-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
}

.program-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--black);
}

.program-outcomes {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
}

.program-outcomes h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-outcomes ul {
    list-style: none;
    padding: 0;
}

.program-outcomes li {
    font-size: 14px;
    line-height: 1.7;
    color: var(--black);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.program-outcomes li::before {
    content: "✓";
    color: var(--red);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 16px;
}

/* Youth Programs Section */
.youth-section {
    background: var(--white);
    padding: 80px 0;
}

.youth-detail {
    margin-bottom: 60px;
    padding: 50px;
    border-radius: 15px;
    background: var(--light-grey);
}

.girl-yes-detail {
    border: 4px solid var(--red);
}

.ground-zero-detail {
    border: 4px solid var(--black);
}

.youth-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.youth-icon-large {
    font-size: 80px;
    width: 120px;
    height: 120px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ground-zero-detail .youth-icon-large {
    background: var(--black);
}

.youth-header h3 {
    font-size: 42px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.youth-tagline {
    font-size: 20px;
    color: var(--red);
    font-weight: 700;
    font-style: italic;
}

.ground-zero-detail .youth-tagline {
    color: var(--black);
}

.youth-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--black);
    margin-bottom: 30px;
}

.youth-quote {
    background: var(--black);
    color: var(--white);
    padding: 25px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 30px;
    border-left: 5px solid var(--red);
}

.youth-components h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.components-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.component-tag {
    background: var(--white);
    color: var(--black);
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid var(--border-grey);
    transition: all 0.3s;
}

.component-tag:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    transform: translateY(-2px);
}

/* Marriage Prep Section */
.marriage-section {
    background: var(--black);
    color: var(--white);
    padding: 80px 0;
}

.marriage-section .section-header h2 {
    color: var(--white);
}

.marriage-section .section-line {
    background: var(--red);
}

.marriage-motto {
    font-size: 24px;
    color: var(--red);
    font-weight: 700;
    font-style: italic;
    margin-top: 15px;
}

.marriage-intro {
    max-width: 900px;
    margin: 0 auto 50px;
}

.marriage-intro p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.marriage-principle {
    background: rgba(192, 0, 0, 0.2);
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid var(--red);
    font-style: italic;
}

.marriage-components h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    text-align: center;
}

.components-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.marriage-component {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.marriage-component:hover {
    background: rgba(192, 0, 0, 0.2);
    border-color: var(--red);
    transform: translateX(5px);
}

.component-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--red);
    font-family: 'Bebas Neue', sans-serif;
    min-width: 45px;
}

.marriage-component h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.marriage-component p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Family Services */
.family-section {
    background: var(--white);
    padding: 80px 0;
}

.family-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.family-service-card {
    background: var(--light-grey);
    padding: 40px;
    border-radius: 10px;
    border-top: 5px solid var(--red);
    transition: transform 0.3s, box-shadow 0.3s;
}

.family-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.family-service-card:nth-child(2) {
    border-top-color: var(--black);
}

.family-service-card:nth-child(3) {
    border-top-color: var(--grey);
}

.service-icon-large {
    font-size: 56px;
    margin-bottom: 20px;
}

.family-service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.service-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--black);
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    font-size: 13px;
    line-height: 1.7;
    color: var(--black);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.service-list li::before {
    content: "→";
    color: var(--red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Delivery Section */
.delivery-section {
    background: var(--light-grey);
    padding: 80px 0;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.delivery-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--red);
    transition: transform 0.3s;
}

.delivery-card:hover {
    transform: translateY(-5px);
}

.delivery-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.delivery-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--black);
}

.free-programs-notice {
    background: var(--red);
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.free-programs-notice h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.free-programs-notice p {
    font-size: 15px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .program-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .program-badge {
        font-size: 28px;
    }
    
    .program-detail-header h3 {
        font-size: 24px;
    }
    
    .youth-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .youth-header h3 {
        font-size: 32px;
    }
    
    .youth-tagline {
        font-size: 16px;
    }
    
    .components-list {
        grid-template-columns: 1fr;
    }
    
    .family-services-grid {
        grid-template-columns: 1fr;
    }
    
    .delivery-grid {
        grid-template-columns: 1fr;
    }
}
