/*=========================================================
BIENFAITEURS PREMIUM
JUBILÉ DU CENTENAIRE
Paroisse Notre-Dame des Sept Douleurs d'Akono
-----------------------------------------------------------
Développé par :
ESSOMBA Pancrace Cédric
Pancrace Consulting Group
=========================================================*/


/*=========================================================
VARIABLES
=========================================================*/

:root {

    --bleu: #0F4C81;
    --bleu-clair: #2F80ED;

    --or: #D4AF37;

    --vert: #2E7D32;

    --rouge: #C0392B;

    --fond: #F5F7FA;

    --blanc: #FFFFFF;

    --texte: #333333;

    --gris: #777777;

    --ombre: 0 15px 40px rgba(0, 0, 0, .10);

    --radius: 22px;

    --transition: .35s ease;

}


/*=========================================================
BODY
=========================================================*/

body {

    background: var(--fond);

}


/*=========================================================
HERO
=========================================================*/

.bienfaiteurs-hero {

    position: relative;

    padding: 140px 0;

    overflow: hidden;

    color: #FFF;

    background:

        linear-gradient(rgba(41, 139, 49, 0.88),

            rgba(7, 78, 105, 0.88)),

        url("../images/hero-bienfaiteurs.jpg");

    background-size: cover;

    background-position: center;

}

.bienfaiteurs-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background:

        radial-gradient(rgba(255, 255, 255, .08),

            transparent 70%);

}

.hero-content {

    position: relative;

    max-width: 820px;

    margin: auto;

    text-align: center;

    z-index: 5;

}

.hero-badge {

    display: inline-block;

    padding: 12px 25px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .18);

    backdrop-filter: blur(10px);

    font-weight: 600;

    margin-bottom: 30px;

}

.hero-content h1 {

    font-size: 60px;

    font-weight: 800;

    margin-bottom: 25px;

}

.hero-content p {

    font-size: 20px;

    line-height: 1.9;

    margin-bottom: 45px;

}

.hero-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

}


/*=========================================================
BOUTONS
=========================================================*/

.btn-or {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    padding: 16px 38px;

    border-radius: 50px;

    background: var(--or);

    color: #111;

    font-weight: 700;

    text-decoration: none;

    transition: var(--transition);

}

.btn-or:hover {

    transform: translateY(-5px);

    color: #111;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .20);

}

.btn-blanc {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    padding: 16px 38px;

    border-radius: 50px;

    background: #FFF;

    color: var(--bleu);

    font-weight: 700;

    text-decoration: none;

    transition: var(--transition);

}

.btn-blanc:hover {

    background: var(--or);

    color: #111;

}


/*=========================================================
MESSAGE DE REMERCIEMENT
=========================================================*/

.remerciement {

    margin-top: -70px;

    position: relative;

    z-index: 20;

    margin-bottom: 80px;

}

.merci-box {

    background: #FFF;

    border-radius: 25px;

    box-shadow: var(--ombre);

    display: flex;

    align-items: center;

    gap: 35px;

    padding: 45px;

}

.merci-icon {

    width: 110px;

    height: 110px;

    border-radius: 50%;

    background: var(--or);

    display: flex;

    justify-content: center;

    align-items: center;

    color: #FFF;

    font-size: 42px;

    flex-shrink: 0;

}

.merci-content h2 {

    color: var(--bleu);

    font-size: 34px;

    margin-bottom: 18px;

}

.merci-content p {

    color: #555;

    line-height: 1.9;

    font-size: 17px;

    margin-bottom: 20px;

}

.merci-content span {

    color: var(--or);

    font-weight: 700;

}
/*=========================================================
STATISTIQUES
=========================================================*/

.stats-section {

    padding: 30px 0 90px;

}

.stats-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

.stat-card {

    background: var(--blanc);

    padding: 40px 25px;

    border-radius: 22px;

    text-align: center;

    box-shadow: var(--ombre);

    transition: var(--transition);

}

.stat-card:hover {

    transform: translateY(-10px);

}

.stat-card i {

    font-size: 48px;

    color: var(--or);

    margin-bottom: 20px;

}

.stat-card h2 {

    color: var(--bleu);

    font-size: 38px;

    font-weight: 800;

    margin-bottom: 12px;

}

.stat-card p {

    color: #666;

    margin: 0;

}


/*=========================================================
TITRES DES SECTIONS
=========================================================*/

.section-title {

    text-align: center;

    margin-bottom: 60px;

}

.section-title span {

    display: inline-block;

    padding: 10px 24px;

    border-radius: 40px;

    background: #EEF5FC;

    color: var(--bleu);

    font-weight: 700;

    margin-bottom: 20px;

}

.section-title h2 {

    font-size: 42px;

    color: var(--bleu);

    font-weight: 800;

    margin-bottom: 20px;

}

.section-title p {

    max-width: 820px;

    margin: auto;

    color: #666;

    line-height: 1.8;

    font-size: 18px;

}


/*=========================================================
PROJETS
=========================================================*/

.projets {

    padding: 100px 0;

    background: #FFF;

}

.projets-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 30px;

}

.projet-card {

    background: var(--fond);

    border-radius: 22px;

    padding: 35px;

    transition: var(--transition);

    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);

}

.projet-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--ombre);

}

.projet-icon {

    width: 80px;

    height: 80px;

    border-radius: 50%;

    background: linear-gradient(135deg, var(--or), #F5C542);

    display: flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 25px;

}

.projet-icon i {

    color: #FFF;

    font-size: 34px;

}

.projet-card h3 {

    color: var(--bleu);

    font-size: 24px;

    margin-bottom: 18px;

    font-weight: 700;

}

.projet-card p {

    color: #666;

    line-height: 1.8;

    margin-bottom: 25px;

}


/*=========================================================
BARRES DE PROGRESSION
=========================================================*/

.progress {

    height: 12px;

    border-radius: 50px;

    background: #E5E7EB;

    overflow: hidden;

    margin-bottom: 15px;

}

.progress-bar {

    height: 100%;

    border-radius: 50px;

    background: linear-gradient(90deg, var(--or), #F8D66D);

}

.projet-card span {

    display: block;

    color: var(--bleu);

    font-weight: 700;

}
/*=========================================================
LISTE DES BIENFAITEURS
=========================================================*/

.liste-bienfaiteurs {

    padding: 100px 0;

    background: #F8FAFD;

}

.bienfaiteurs-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 30px;

}

.bienfaiteur-card {

    background: #FFF;

    border-radius: 22px;

    padding: 40px 30px;

    text-align: center;

    box-shadow: var(--ombre);

    transition: var(--transition);

    position: relative;

    overflow: hidden;

}

.bienfaiteur-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 6px;

    background: linear-gradient(90deg, var(--or), #F7D96B);

}

.bienfaiteur-card:hover {

    transform: translateY(-10px);

}

.avatar {

    width: 90px;

    height: 90px;

    margin: auto;

    margin-bottom: 25px;

    border-radius: 50%;

    background: linear-gradient(135deg, var(--bleu), var(--bleu-clair));

    display: flex;

    justify-content: center;

    align-items: center;

}

.avatar i {

    color: #FFF;

    font-size: 42px;

}

.bienfaiteur-card h3 {

    color: var(--bleu);

    font-size: 24px;

    margin-bottom: 10px;

    font-weight: 700;

}

.bienfaiteur-card p {

    color: #666;

    margin-bottom: 20px;

    font-size: 16px;

}

.bienfaiteur-card span {

    display: inline-block;

    padding: 10px 22px;

    background: #EEF5FC;

    border-radius: 40px;

    color: var(--bleu);

    font-weight: 700;

}


/*=========================================================
AUCUN BIENFAITEUR
=========================================================*/

.empty-box {

    grid-column: 1/-1;

    background: #FFF;

    padding: 70px;

    border-radius: 22px;

    text-align: center;

    box-shadow: var(--ombre);

}

.empty-box i {

    font-size: 70px;

    color: var(--or);

    margin-bottom: 25px;

}

.empty-box h3 {

    color: var(--bleu);

    font-size: 28px;

}


/*=========================================================
CATEGORIES
=========================================================*/

.categories-bienfaiteurs {

    padding: 100px 0;

    background: #FFF;

}

.categories-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 30px;

}

.categorie-card {

    text-align: center;

    padding: 40px 25px;

    border-radius: 22px;

    box-shadow: var(--ombre);

    transition: var(--transition);

    background: #FFF;

}

.categorie-card:hover {

    transform: translateY(-10px);

}

.categorie-card i {

    font-size: 52px;

    margin-bottom: 20px;

}

.categorie-card h3 {

    font-size: 24px;

    margin-bottom: 15px;

    color: var(--bleu);

}

.categorie-card p {

    color: #666;

    line-height: 1.7;

}


/*=========================================================
COULEURS DES CATEGORIES
=========================================================*/

.or i {

    color: #C49A00;

}

.gold i {

    color: #D4AF37;

}

.silver i {

    color: #A8A8A8;

}

.bronze i {

    color: #A97142;

}

.ami i {

    color: #D32F2F;

}
/*=========================================================
SECTION DON
=========================================================*/

.don-section {

    padding: 110px 0;

    background: linear-gradient(135deg,
            #0ef180,
            #0e71c2);

    color: #FFF;

}

.don-box {

    max-width: 1200px;

    margin: auto;

    text-align: center;

}

.don-box h2 {

    font-size: 48px;

    font-weight: 800;

    margin-bottom: 25px;

}

.don-box p {

    max-width: 850px;

    margin: 0 auto 60px;

    line-height: 1.9;

    font-size: 18px;

}

.moyens-don {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

    gap: 30px;

    margin-bottom: 60px;

}

.moyens-don div {

    background: rgba(255, 255, 255, .10);

    backdrop-filter: blur(10px);

    border-radius: 20px;

    padding: 35px;

    transition: .35s;

}

.moyens-don div:hover {

    transform: translateY(-8px);

    background: rgba(255, 255, 255, .18);

}

.moyens-don i {

    font-size: 42px;

    color: var(--or);

    margin-bottom: 20px;

}

.moyens-don strong {

    display: block;

    font-size: 20px;

    margin-bottom: 12px;

}

.moyens-don p {

    margin: 0;

    font-size: 15px;

}

.don-actions {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

}


/*=========================================================
APPEL FINAL
=========================================================*/

.appel-final {

    padding: 110px 0;

    background: #F5F7FA;

}

.appel-box {

    background: #FFF;

    border-radius: 25px;

    box-shadow: var(--ombre);

    padding: 70px;

    text-align: center;

}

.appel-box h2 {

    color: var(--bleu);

    font-size: 46px;

    font-weight: 800;

    margin-bottom: 25px;

}

.appel-box p {

    max-width: 900px;

    margin: 0 auto 45px;

    color: #666;

    line-height: 2;

    font-size: 18px;

}


/*=========================================================
ANIMATIONS
=========================================================*/

@keyframes apparition {

    from {

        opacity: 0;

        transform: translateY(35px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

.projet-card,
.bienfaiteur-card,
.categorie-card,
.stat-card {

    animation: apparition .7s ease;

}


/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:1200px) {

    .stats-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:992px) {

    .hero-content h1 {

        font-size: 46px;

    }

    .hero-content p {

        font-size: 18px;

    }

    .merci-box {

        flex-direction: column;

        text-align: center;

    }

    .appel-box {

        padding: 50px 35px;

    }

}

@media(max-width:768px) {

    .stats-grid {

        grid-template-columns: 1fr;

    }

    .hero-content h1 {

        font-size: 36px;

    }

    .hero-content p {

        font-size: 16px;

    }

    .section-title h2 {

        font-size: 32px;

    }

    .don-box h2 {

        font-size: 34px;

    }

    .appel-box h2 {

        font-size: 34px;

    }

    .hero-buttons,

    .don-actions {

        flex-direction: column;

        align-items: center;

    }

    .btn-or,

    .btn-blanc {

        width: 100%;

        max-width: 320px;

    }

}

@media(max-width:576px) {

    .merci-box {

        padding: 30px;

    }

    .projet-card,

    .bienfaiteur-card,

    .categorie-card {

        padding: 28px;

    }

}


/*=========================================================
FOOTER DU SITE
=========================================================*/

.footer {

    background: #0B2D4D;

    color: #FFF;

    padding: 35px 0;

}

.footer-content {

    width: min(1200px, 92%);

    margin: auto;

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 30px;

    flex-wrap: wrap;

}

.footer-content h3 {

    font-size: 24px;

    margin-bottom: 10px;

}

.footer-content p {

    margin: 5px 0;

    color: #DDD;

}

/*=========================================================
SIGNATURE
=========================================================*/

.footer-content::after {

    content: "Conception & Développement :\AESSOMBA Pancrace Cédric\APancrace Consulting Group";

    white-space: pre-line;

    text-align: right;

    font-size: 14px;

    line-height: 1.8;

    color: #DDD;

}

.footer-content::after {

    font-weight: 500;

}