/* Premium Party Program Styling */

/* --- Page Intro --- */
.program-intro {
    text-align: center;
    max-width: 800px;
    margin: 80px auto 60px;
}

.program-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--brand-secondary);
}

.program-intro p {
    font-size: 1.2rem;
    color: #666;
}

/* --- Section 1: Program Pillars (Detailed Cards) --- */
.pillars-section {
    padding: 60px 0;
    background: #fff;
}

.pillar-card {
    display: flex;
    /* Flex layout */
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: transform 0.3s;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Icon/Header Side */
.pillar-header {
    flex: 0 0 300px;
    /* Fixed width */
    background: #fbfbfb;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-left: 1px solid #eee;
    position: relative;
}

.pillar-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: var(--brand-primary);
}

.pillar-icon {
    font-size: 3rem;
    color: var(--brand-primary);
    margin-bottom: 20px;
}

.pillar-header h3 {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 10px;
}

.pillar-header .sub-head {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}

/* Content Side */
.pillar-content {
    flex: 1;
    padding: 40px;
}

.pillar-content p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.8;
}

.pillar-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.pillar-list li {
    position: relative;
    padding-right: 25px;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.pillar-list li::before {
    content: '\f00c';
    /* Check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 4px;
    color: var(--brand-accent);
    font-size: 0.9rem;
}

/* --- Section 2: Initiatives (Masonry Grid) --- */
.initiatives-section {
    padding: 80px 0;
    background: #fcfcfc;
    border-top: 1px solid #eee;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.initiative-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #eee;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    /* Equal height */
    display: flex;
    flex-direction: column;
}

.initiative-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--brand-primary-light);
}

.init-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff5f5;
    color: var(--brand-primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.init-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-secondary), #333);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.initiative-card h4 {
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 800;
}

.initiative-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
    /* Push button down if we had one */
}

/* Responsive */
@media (max-width: 900px) {
    .pillar-card {
        flex-direction: column;
    }

    .pillar-header {
        flex: none;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 30px;
        border-left: none;
        border-top: 5px solid var(--brand-primary);
    }

    .pillar-header::before {
        display: none;
    }

    .pillar-content {
        padding: 30px 20px;
    }
}