/* ===========================
   PAGE PROGRAMME
   =========================== */

/* HERO */
.programme-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.programme-hero .overlay-color-dark:not(.no-skin):before {
    background-color: #1a1a2e !important;
}

.programme-hero.overlay.overlay-show:before,
.programme-hero.overlay-show:before {
    opacity: 0.75;
}

.programme-badge {
    display: inline-block;
    background-color: #CD9F3F;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 24px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.programme-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff !important;
    line-height: 1.2;
    margin-bottom: 20px;
}

.programme-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin-bottom: 0;
}

.btn-programme-download {
    display: inline-block;
    background: linear-gradient(135deg, #CD9F3F 0%, #e6b84d 100%);
    color: #fff !important;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(205, 159, 63, 0.4);
}

.btn-programme-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(205, 159, 63, 0.6);
    background: linear-gradient(135deg, #b8892e 0%, #CD9F3F 100%);
    color: #fff !important;
}

.btn-programme-download-light {
    background: #fff;
    color: var(--primary) !important;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.btn-programme-download-light:hover {
    background: #f0f0f0;
    color: var(--primary) !important;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.5);
}

.programme-download-hint {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ENGAGEMENTS GRID */
.programme-engagements-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.programme-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.programme-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(48, 63, 138, 0.12);
    border-color: var(--primary);
}

.programme-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #2baab1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.programme-card-icon i {
    color: #fff;
    font-size: 1.3rem;
}

.programme-card h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
    line-height: 1.4;
}

/* CTA SECTION */
.programme-cta-section {
    padding: 80px 0;
}

.programme-cta-section.section.section-overlay-opacity-gradient:before {
    background: linear-gradient(135deg, var(--primary) 0%, #CD9F3F 80%) !important;
    opacity: 0.9;
}

.programme-reunion-date {
    font-size: 1.5rem;
    font-weight: 700;
    color: #CD9F3F;
    margin-bottom: 4px;
}

.programme-reunion-lieu {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .programme-hero {
        min-height: 70vh;
    }

    .programme-title {
        font-size: 2.4rem;
    }

    .programme-subtitle {
        font-size: 1.1rem;
    }

    .programme-engagements-section {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    .programme-hero {
        min-height: 60vh;
    }

    .programme-title {
        font-size: 1.8rem;
    }

    .programme-subtitle {
        font-size: 1rem;
    }

    .btn-programme-download {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .programme-card {
        padding: 20px 16px;
    }

    .programme-reunion-date {
        font-size: 1.2rem;
    }
}
