body {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ef 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/*.titre-hero-anim {*/
/*    font-family: 'Montserrat', 'Arial', sans-serif;*/
/*    font-weight: 800;*/
/*    font-size: 2.8rem;*/
/*    background: linear-gradient(90deg, #ffb347 0%, #ff6961 60%, #7b2e1d 100%);*/
/*    -webkit-background-clip: text;*/
/*    -webkit-text-fill-color: transparent;*/
/*    background-clip: text;*/
/*    text-fill-color: transparent;*/
/*    text-shadow: 0 2px 10px rgba(255, 105, 97, 0.18), 0 1px 0 #fff;*/
/*    letter-spacing: 1.5px;*/
/*    padding: 0.2em 0.5em;*/
/*    border-radius: 0.5em;*/
/*    animation: titre-red-glow 3s ease-in-out infinite alternate;*/
/*}*/

@keyframes titre-red-glow {
    0% {
        filter: brightness(1) drop-shadow(0 0 0 #ff6961);
    }
    100% {
        filter: brightness(1.04) drop-shadow(0 0 6px #ff6961);
    }
}

.appel-financement {
    background: rgba(123,46,29,0.80);
    color: #fff !important;
    padding: 0.8em 1.2em;
    border-radius: 0.7em;
    font-size: 1.08rem;
    display: inline-block;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    margin-top: 1em;
}

.main-content {
    flex: 1 0 auto;
}
.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    background: #818f51;
    border-radius: 1em 1em 1em 1em / 1.2em 1.2em 1em 1em;
    padding: 0.15em 0.6em;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    display: block;
    width: fit-content;
    margin: 0 auto;
}
.hero-subtitle {
    font-size: 1.3rem;
    color: #fff;
}
.donors-block {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 2rem 1.5rem;
    margin-top: 2.5rem;
}
.donor-logo {
    height: 48px;
    margin: 0 1.5rem 1rem 0;
    filter: grayscale(0.2);
}
footer {
    background: #f5f5f5;
    padding: 1.5rem 0;
    text-align: center;
}
.footer-logo {
    height: 40px;
    margin: 0 1rem;
    opacity: 0.8;
}

.section-bg {
    background-image: url('/img/fond_defaut.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 1rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.text-muted {
    color: #fff !important;
}

.card {
    border: 2px solid rgba(255,255,255,0.85) !important;
    --bs-card-border-color: rgba(255,255,255,0.85);
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    background: rgba(255,255,255,0.92);
}



.menu-dot {
    color: #d37446;
    font-size: 1.3em;
    font-weight: bold;
    margin: 0 0.2em;
    user-select: none;
}

.navbar-nav .nav-item:not(:last-child) {
    position: relative;
    padding-right: 1.5em;
}

.navbar-nav .nav-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0.5em;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 1.5em;
    background: #d37446;
    transition: background 0.3s;
    border-radius: 1px;
    opacity: 0.7;
}

.navbar-nav .nav-item:hover::after {
    background: #d37446;
    opacity: 1;
}

.nav-link:hover {
    background: #d37446;
    background-color: #818f51;
    opacity: 1;
}

.bg-vert {
    background: #818f51;
    color: #fff;
}

.nav-link.active {
    background: #d37446 !important;
    color: #fff !important;
}

.text-justify {
    text-align: justify;
}