/* ===== PROGRAMS INDEX PAGE STYLES ===== */

/* Programs Section */
#programs {
    background-color: var(--wolf-gray);
    padding: 4rem 2rem;
}

#programs h2 {
    font-size: 2.5rem;
    color: white;
    text-align: center;
}

.program-card h3 {
    font-size: 1.5rem;
    color: var(--steel-gray);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.program-card p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
    flex-grow: 1; /* Pushes the link to bottom of card */
}

.program-link {
    color: #A63829;
    text-decoration: none;
    font-weight: bold;
    margin-top: auto; /* Aligns links at bottom of cards */
    display: inline-block;
}

.program-link:hover {
    text-decoration: underline;
    color: #8b2e20;
}


/* Programs Introduction Section */
.programs-intro {
    background: #f8f9fa;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.programs-intro h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

/* Core Programs Section */
#core-programs {
    padding: 3rem 0;
    margin-bottom: 3rem;
    h2 {
        font-size: 2.3rem;
        color: var(--steel-gray);
        margin-bottom: 1rem;
        text-align: center;
    }
}
    /* Enhanced Program Cards */
.program-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 15px -8px rgba(0,0,0,0.25);
    border-left: 5px solid #A63829;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%; /* Ensures equal height cards */

    &:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    &.featured {
        border: 2px solid var(--patriot-red);
    }

    &.featured::before {
        content: "RECOMMENDED START";
        position: absolute;
        top: 0;
        right: 0;
        background: var(--patriot-red);
        color: white;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        font-weight: bold;
        border-bottom-left-radius: 8px;
    }

    &.specialized {
        border-left: 4px solid var(--forest-green);
    }

    /* Program Header */
    .program-header {
        background: linear-gradient(135deg, var(--navy-blue) 0%, var(--steel-gray) 100%);
        color: white;
        padding: 1.5rem;
        position: relative;
        .program-level {
            background: rgba(255,255,255,0.2);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-block;
            margin-bottom: 0.75rem;
        }
    }



    .program-header h3 {
        color: white;
        font-size: 1.6rem;
        margin: 0;
        line-height: 1.3;
    }

    /* Program Content */
    .program-content {
        padding: 1.5rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .program-description {
        font-size: 1.05rem;
        line-height: 1.6;
        color: #4a4a4a;
        margin-bottom: 1.5rem;
    }

    /* Program Actions */
    .program-actions {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: auto;
        padding-top: 1rem;
        border-top: 1px solid #eee;
    }

    .program-link {
        color: var(--patriot-red);
        text-decoration: none;
        font-weight: bold;
        font-size: 1.05rem;
        padding: 0.75rem 1.5rem;
        border: 2px solid var(--patriot-red);
        border-radius: 5px;
        transition: all 0.3s ease;
        background: transparent;
    }

    .program-link:hover {
        background: var(--patriot-red);
        color: white;
        transform: translateX(3px);
    }

    .program-link.primary {
        background: var(--patriot-red);
        color: white;
    }

    .program-link.primary:hover {
        background: var(--patriot-red-hover);
        transform: scale(1.05);
    }

    .program-duration {
        font-size: 0.9rem;
        color: #888;
        font-style: italic;
    }
}

.program-highlights {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.program-highlights h4 {
    color: var(--steel-gray);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid var(--patriot-red);
    padding-bottom: 0.25rem;
    display: inline-block;
}

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

.program-highlights li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.5;
}

.program-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--patriot-red);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Specialized Programs Section */
#specialized-programs {
    background: #f8f9fa;
    padding: 3rem 0; 
    h2 {
        font-family: 'Oswald', sans-serif;
        font-size: 2.3rem;
        color: var(--forest-green);
        margin-bottom: 1rem;
        text-align: center;
    }
}
/* Getting Started Section */
.getting-started {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--steel-gray) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.getting-started h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.getting-started-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.95;
}

/* Recommendation Box */
.recommendation-box {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.recommendation-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--warm-beige);
}

/* Path Steps */
.path-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.path-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 140px;
}

.step-number {
    background: var(--patriot-red);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-text {
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.3;
}

.path-arrow {
    color: var(--warm-beige);
    font-size: 1.5rem;
    font-weight: bold;
}
