
 html,
body{
    height:100%;
}

body{
    display:flex;
    flex-direction:column;
    min-height:100vh;
}

main{
    flex:1;
}

.bg-footer {
  background:#f9c925; 
  color:#a94445;
}

.p-3\.5 {
  padding: 0.875rem;
}

    .header-bf{
    background: linear-gradient(90deg,#009E49,#00703C);
    padding: 12px 0;
}

.bg-footer {
  background:#f9c925; 
  color:#a94445;
}

.header-bf .navbar-brand{
    color:#fff;
}

.header-bf .navbar-brand:hover{
    color:#fff;
}

.header-bf .btn-outline-light{
    border-radius:30px;
}

.header-bf .btn-warning{
    border-radius:30px;
    font-weight:600;
    color:#000;
}


.hero-wrapper{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;

    background:
        linear-gradient(
        135deg,
        rgba(0, 158, 73, 0.90),
        rgba(0, 88, 40, 0.85)
        ),
        url("/img/finance-publique-bf.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-title{
    font-size:60px;
    font-weight:800;
    line-height:1.1;
}

.hero-subtitle{
    color:#FFD60A;
    font-size:32px;
    font-weight:700;
    margin-bottom:25px;
}

.hero-text{
    font-size:18px;
    line-height:1.9;
    max-width:650px;
    color:rgba(255,255,255,.9);
}

.badge-bf{
    background:#D62828;
    color:#fff;
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
}

.btn-hero{
    display:inline-block;
    margin-top:20px;
    padding:16px 35px;
    border-radius:50px;
    background:#D62828;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
    box-shadow:0 10px 30px rgba(214,40,40,.4);
}

.btn-hero:hover{
    background:#b91c1c;
    color:#fff;
    transform:translateY(-4px);
}

.hero-stats{
    display:flex;
    gap:50px;
    flex-wrap:wrap;
}

.hero-stats h4{
    color:#FFD60A;
    font-weight:800;
}

.hero-stats span{
    color:#fff;
}

.official-card{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.2);
    border-radius:25px;
    padding:40px;
    color:#fff;
}

.hero-logo{
    width:180px;
}

.hero-content{
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

@media(max-width:768px){

    .hero-title{
        font-size:38px;
    }

    .hero-subtitle{
        font-size:24px;
    }

    .hero-stats{
        justify-content:center;
        gap:25px;
    }

}

