body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: url('../images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    /* Optionnel : un filtre fondu */
    /* filter: brightness(0.8); */
}


 /*body {
    margin:0;
    font-family: 'Segoe UI', sans-serif;
    background:#f4f6f9;
} */

.navbar {
    background:#01B6AF;
    display:flex;
    justify-content:space-between;
    padding:15px 50px;
    align-items:center;
}

.navbar ul {
    display:flex;
    list-style:none;
    gap:20px;
}

.navbar a {
    color:white;
    text-decoration:none;
}

.btn-don {
    background:#ff7f50;
    padding:8px 15px;
    border-radius:5px;
}

.hero {
    height:90vh;
    background:url('../images/hero.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    text-align:center;
}

.section {
    padding:60px;
}

form input, form textarea {
    width:100%;
    padding:10px;
    margin:10px 0;
}

button {
    background:#01B6AF;
    color:white;
    padding:10px 20px;
    border:none;
    cursor:pointer;
}
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    pointer-events: none; /* pour ne pas gêner les clics */
    z-index: 0;
}
.footer {
    background: #ffffff;
    color: #333;
    padding-top: 50px;
    border-top: 1px solid #e5e5e5;
}

.footer-container {
    width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

.footer-col {
    width: 23%;
    min-width: 220px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 15px;
    color: #2c7be5; /* bleu principal */
}

.footer-col p,
.footer-col li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #555;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col a {
    color: #555;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #ff7f50; /* orange accent */
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    background: #2c7be5;
    color: white;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #ff7f50;
    transform: translateY(-3px);
}

.footer-bottom {
    background: #f4f6f9;
    text-align: center;
    padding: 15px;
    font-size: 13px;
    color: #666;
    border-top: 1px solid #e5e5e5;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-col {
        width: 100%;
        margin-bottom: 30px;
    }
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: white;
}

.logo img {
    width: 45px;      /* taille du logo */
    height: 45px;
    object-fit: contain;
}

/* Background spécifique pour À propos */
body.about-page {
    background-image: url('../images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Overlay pour lisibilité du texte */
.hero-about::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: -1;
}

.hero-about {
    position: relative;
    color: white;
    text-align: center;
    padding: 100px 20px;
}



/* HERO À PROPOS */
.hero-about {
    background: url('../images/about-bg.jpg') center/cover no-repeat fixed;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-about::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 0;
}

.hero-about .hero-content {
    position: relative;
    z-index: 1;
}

.hero-about .btn-primary {
    margin-top: 20px;
}

/* FEATURE CARDS */
.features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.feature {
    flex: 1;
    min-width: 220px;
    padding: 20px;
    border-radius: 10px;
    background: #f4f6f9;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 36px;
    color: #2c7be5;
    margin-bottom: 15px;
    transition: transform 0.3s, color 0.3s;
}

.feature-icon:hover {
    transform: scale(1.2) rotate(-10deg);
    color: #ff7f50;
}

/* AOS animations déjà intégrées via data-aos */

/* RESPONSIVE */
@media (max-width: 900px) {
    .features {
        flex-direction: column;
        align-items: center;
    }
    .feature {
        width: 90%;
        margin-bottom: 20px;
    }
}
.section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.9); /* fond blanc semi-transparent */
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.section h2,
.section p {
    color: #111; /* ou #222 pour un contraste élevé */
}

.section {
    margin-top: 40px;
    padding: 40px 20px;
}

.section {
    background: url('../images/about-pattern.png') no-repeat center;
    background-size: cover;
    color: #111;
    padding: 80px 20px;
    border-radius: 10px;
}
.about-story {
    background: rgba(255,255,255,0.95);
    padding: 80px 20px;
    margin: 50px auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-width: 1000px;
    color: #222;
}

.about-story h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-story p {
    font-size: 16px;
    line-height: 1.7;
}
.don-button-icone {
    background: linear-gradient(45deg, #ff7f50, #ff9a9e);
    color: white;
    padding: 12px 35px;
    font-size: 18px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.don-button-icone:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255,90,95,0.4);
}

.menu {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
}

.menu li {
  position: relative;
}

.menu a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ff7f50;
  color: black;
  min-width: 280px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.dropdown-menu li {
  margin-bottom: 8px;
}

.dropdown-menu a {
  color: #333;
  display: block;
  padding: 5px 0;
}

.dropdown-title {
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 8px;
  color: #000;
}

/* Affichage au hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown {
  position: relative;
}
.dropdown:hover .dropdown-menu {
  display: block;
}

.nav-link {
    border-bottom: 3px solid transparent;
}

.nav-link:hover {
    border-bottom: 3px solid #fff;
}
