/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease-in-out;
}

body {
    background-color: rgb(247, 246, 246);
    color: black;
}
header {
    margin-top: 7px; 
  }
/* Bannière */
.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: clamp(40vh, 65vh, 80vh);
    position: relative;
    overflow: hidden;
}

.slides {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 40, 70, 0.5);
    backdrop-filter: blur(3px);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 85%;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.slide-content h1 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: bold;
}

.slide-content p {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    margin-bottom: 15px;
}

/* Bouton */
.btn {
    display: inline-block;
    padding: clamp(8px, 1.2vw, 12px) clamp(18px, 2vw, 24px);
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    color: white;
    background: #09689C;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #ff9900;
    transform: scale(1.05);
}




/* Section de donation */
.donation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 10%; /* Réduction de la hauteur et augmentation de la largeur */
    background: rgba(248, 228, 162, 0.397);
}

/* Conteneur principal */
.donation-text {
    flex: 1;
    max-width: 1000px; /* Augmentation de la largeur */
    background: #efeff0;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Titre principal */
.donation-text h1 {
    font-size: 30px;
    font-weight: bold;
    color: #022140;
    margin-bottom: 15px;
}

/* Sous-titre */
.subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
    max-width: 85%;
}

/* Texte en gras */
.bold-text {
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    max-width: 85%;
}

/* Détails bancaires */
.bank-details {
    background: #dbeafe;
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
    text-align: center;
    line-height: 1.6;
    font-size: 18px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #2563eb;
    width: 100%;
    max-width: 750px; /* Plus large */
}

/* Titre des détails bancaires */
.bank-details h3 {
    margin-bottom: 10px;
    color: #022140;
    font-size: 20px;
    font-weight: bold;
}

/* Centrage des paragraphes */
.bank-details p {
    margin-bottom: 8px;
    text-align: center;
}

/* Texte d'appel à l'action */
.donate-cta {
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
    color: #444;
    font-weight: 500;
}

/* ✅ Responsive pour tablette et mobile */
@media (max-width: 1024px) {
    .donation-container {
        padding: 30px 5%;
    }

    .donation-text {
        width: 95%;
        padding: 30px;
    }

    .bank-details {
        padding: 20px;
        font-size: 16px;
        max-width: 90%;
    }
}

@media (max-width: 650px) {
    .donation-text {
        padding: 25px;
    }

    .donation-text h1 {
        font-size: 24px;
    }

    .subtitle {
        font-size: 16px;
    }

    .bold-text {
        font-size: 16px;
    }

    .bank-details {
        padding: 18px;
        font-size: 15px;
    }

    .donate-cta {
        font-size: 16px;
    }
}
