/* Référence à la police Girassol depuis Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Girassol&display=swap');

/* Réinitialisation des styles de base */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    
}
/* Styles généraux des liens */
a {
    text-decoration: none;
    color: inherit;
}

/* Style personnalisé pour les titres */
.custom-title {
    margin-top: 20px;
    font-family: 'Girassol', cursive;
    font-size: 25px;
    font-weight: bold;
    color: #ffffffc3;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.customHelp1{
    color: #1d2832; /* Couleur du texte */
    text-align: center;
    letter-spacing: 2px; /* Espacement entre les lettres */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Ombre de texte */
    font-size: 3rem;
}


/* Styles pour les liens personnalisés */
.custom-link {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
}

.custom-link:hover {
    background-color: #0056b3;
}

/* Styles pour les boutons personnalisés */
.custom-button {
    font-weight: bold;
    color: #fff;
    background-color: #28a745;
    border: 2px solid #28a745;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-button:hover {
    background-color: #218838;
    color: #fff;
}


/* Styles pour les icônes utilisateur */
.user-icon {
    font-size: 20px;
}

/* Styles pour le bouton "Back to Top" */
.back-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-image: linear-gradient(to right, #83b17c, #83b17f, #83b182, #83b185, #83b188, #82b18b, #82b18d, #82b190, #82b193, #82b196, #82b199, #83b19c);
    color: black;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    transition: background-color 0.3s, transform 0.3s;
    z-index: 1000;
}

.back-to-top-btn:hover {
    background-color: #6cb461;
    transform: scale(1.1);
}
.carousel-image {
    height: 650px;
    object-fit: cover; 
}

/* Styles pour l'en-tête */
.custom-header {
    background-color: #83b17c;
    padding: 10px 0;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 20px;
    font-weight: 700;
    color: #1d2832;
}

.custom-header .navbar-nav .nav-link {
    padding: 8px 12px;
    color: #1d2832;
    font-weight: 500;
    transition: background-color 0.3s;
}

.custom-header .navbar-nav .nav-link:hover,
.custom-header .navbar-nav .nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

/* Styles pour la section "Membres de l'association" */
.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    transition: transform 0.3s;
}

.member-card {
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2), 0 0 0 2px #83b17c;
    transition: transform 0.3s;
}

.member-card:hover {
    transform: perspective(1000px) rotateY(10deg);
    cursor: pointer;
}

/* Styles pour la section "Nous aider" */
.customHelp {
    font-size: 2rem;
    color: #1d2832; /* Couleur du texte */
    text-align: center;
    letter-spacing: 2px; /* Espacement entre les lettres */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Ombre de texte */
}


span{
    color: #82b18b;
}
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-10px);
}

.card-title {
    font-size: 24px;
    font-weight: bold;
}

.card-text {
    font-size: 16px;
    margin-top: 10px;
}
.green-border {
    border: 2px solid #83b17c;
    padding: 10px;
}
.card-text.additional-content {
    display: none;
    margin-top: 15px;
    font-size: 14px;
}

.card-body.expanded {
    padding-bottom: 0;
}

.card-body.expanded .read-more {
    display: none;
}


/* Styles pour la liste des participants */
h4.mt-3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

ul.list-group {
    list-style-type: none;
    padding: 0;
    cursor: pointer;
}

li.list-group-item {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 10px 20px;
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

li.list-group-item:hover {
    background-color: #83b17c;
    color: #fff;
}

li.list-group-item span {
    font-weight: bold;
}
/*partenaire.php*/
/* CSS pour une grande carte */
.big-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}


.custom-content {
    margin-top: 50px;
    background-color: #f2f2f2;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}


/* Style pour le titre */
.custom-content h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
}

/* Style pour la boîte de contenu */
.custom-content .member-description {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Style pour les titres des boîtes de contenu */
.custom-content h3 {
    color: #333;
    font-size: 24px;
    margin-top: 20px;
}

/* Style pour le texte du contenu */
.custom-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

/* Style pour l'image */
.custom-content .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Style pour le bouton */
.custom-content .btn-success {
    background-color: #28a745;
    color: #fff;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.custom-content .btn-success:hover {
    background-color: #218838;
}



/* Styles pour le formulaire de contact */
.contact-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-title {
    text-align: center;
    color: #333;
}

.contact-form-group {
    margin-bottom: 20px;
}

.contact-label {
    font-weight: bold;
    color: #333;
}

.contact-input {
    border: 2px solid #ccc;
    border-radius: 5px;
    padding: 10px;
}

.contact-submit-button {
    background-color: #007bff;
    border: none;
}

.contact-submit-button:hover {
    background-color: #0056b3;
}

/* footer */
.custom-footer {
  
    background-color: #83b17c;
    color: #333;
}

.social-icon-link {
    display: inline-block;
    margin: 0 10px;
}

.social-icon {
    width: 40px;
    height: auto;
}

.text-uppercase {
    letter-spacing: 1px;
}

.btn-light {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}
/*************** custom des alertes *********/
.custom-alert {
    border: none;
    border-radius: 4px;
    padding: 20px;
    position: relative;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-alert .icon {
    font-size: 24px;
    margin-right: 15px;
}

.btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 0.6;
}

#colombe-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#colombe {
    position: absolute;
    width: 100px; /* ou la taille désirée de votre colombe */
    left: -120px; /* position de départ hors de l'écran */
}

