/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #196A62;
  --secondary-color:              #196A62;
  --section-bg-color:             #EBEFF4;
  --site-footer-bg-color:         #ffffff;
  --custom-btn-bg-color:          #597081;
  --custom-btn-bg-hover-color:    #5bc1ac;
  --dark-color:                   #000000;
  --p-color:                      #696969;
  --border-color:                 #e9eaeb;

  --body-font-family:             'Arial Rounded MT Bold', sans-serif;

  --h1-font-size:                 52px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 18px;
  --p-font-size:                  18px;
  --btn-font-size:                18px;
  --copyright-font-size:          14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           350;
  --font-weight-medium:           300;
  --font-weight-semibold:         800;
  --font-weight-bold:             900;
}
body {
  background-color: var(--white-color);
  background: #eef2f5;
  font-family: var(--body-font-family);
  font-size: 28px;
  color: var(--dark-color);
}


/*---------------------------------------
  TYPOGRAPHY
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: -2px;
}

h2 {
  color: var(--secondary-color);
  font-size: var(--h2-font-size);
  letter-spacing: -2px;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  color: var(--primary-color);
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

p.fs-5 {
  font-size: 1.25rem; /* correspond à fs-5 de Bootstrap */
}
p.text-dark {
  color: #212529; /* couleur Bootstrap pour text-dark */
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: black;
  text-decoration: none;
}

a:hover {
  color: #006694;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  CUSTOM BLOCK
-----------------------------------------*/
.custom-block-wrap {
  background: var(--white-color);
  border-radius: 0px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  border: 1px solidvar(--primary-color);
  padding: 5px;
}
h5,h6 .coordo-name {
    font-size: 28;
  }
.coordo-name {
    color: #006492;
  }

.nav-pills .nav-link {
    border: none;
  }
.custom-block-wrap:hover {
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);

}

.custom-block-body {
  padding: 20px;
}

.custom-block-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-block .custom-btn {
  border-radius: 0;
  display: block;
}
/* Mobile Devices */
@media (max-width: 768px) {
  body {
    font-size: 16px;  /* Adjust font size for smaller screens */
  }

  h1 {
    font-size: 36px; /* Adjust header font size */
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 24px;
  }

  .custom-text-box {
    padding: 20px;
  }

  .custom-block-wrap {
    padding: 10px;
  }

  .custom-btn {
    padding: 12px 20px;
    font-size: 16px;
  }

  .avatar-image {
    width: 50px;
    height: 50px;
  }

  .navbar-expand-lg .navbar-nav .nav-link.custom-btn {
    padding: 10px 20px;
  }

  .pagination .page-link {
    font-size: 14px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  body {
    font-size: 18px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 26px;
  }

  .custom-text-box {
    padding: 30px;
  }

  .custom-btn {
    padding: 14px 22px;
    font-size: 17px;
  }

  .avatar-image {
    width: 60px;
    height: 60px;
  }

  .pagination .page-link {
    font-size: 16px;
  }
}

/* Desktops */
@media (min-width: 1024px) {
  body {
    font-size: 22px;
  }

  h1 {
    font-size: var(--h1-font-size);
  }

  h2 {
    font-size: var(--h2-font-size);
  }

  h3 {
    font-size: var(--h3-font-size);
  }

  h4 {
    font-size: var(--h4-font-size);
  }

  .custom-btn {
    padding: 16px 25px;
    font-size: var(--btn-font-size);
  }

  .avatar-image {
    width: 70px;
    height: 70px;
  }
}


/*---------------------------------------
  PROGRESS BAR
-----------------------------------------*/
.progress {
  background: var(--border-color);
  height: 5px;
}

.progress-bar {
  background: var(--secondary-color);
}

/*---------------------------------------
  CUSTOM ICON COLOR
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM LIST
-----------------------------------------*/
.custom-list {
  margin-bottom: 0;
  padding-left: 0;
}

.custom-list-item {
  list-style: none;
  margin-top: 10px;
  margin-bottom: 10px;
}
/*---------------------------------------
  CUSTOM TEXT COLOR
-----------------------------------------*/
.text-green{
    color: var(--secondary-color);
    opacity: 1;
}

/*---------------------------------------
  CUSTOM TEXT BOX
-----------------------------------------*/
.custom-text-box {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  margin-bottom: 24px;
  padding: 40px;
}

.custom-text-box-image {
  border-radius: var(--border-radius-medium);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-text-box-icon {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  color: var(--secondary-color);
  font-size: var(--h6-font-size);
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 25px;
  line-height: 30px;
}


/*---------------------------------------
  AVATAR IMAGE - TESTIMONIAL, AUTHOR
-----------------------------------------*/
.avatar-image {
  border-radius: var(--border-radius-large);
  width: 65px;
  height: 65px;
  object-fit: cover;
}
.pagination .page-link {
    color: #00638D;
    }
.pagination .page-item.active .page-link {
    color: #ffffff;
    background-color: #00638F;
    border-color: #00638F;
}
.pagination .page-item.disabled .page-link {
        color: #6c757d;
        background-color: #fff;
        border-color: #dee2e6;
    }
    .text-green-bg {
    position: relative;
    display: inline-block;
    color: var(--secondary-color);
    background-color: white;
    padding: 5px 10px;
    border-radius: 4px;
}
.text-green-bg a {
          font-weight: 600;
        }
.animate-fade-in {
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


/*---------------------------------------
  CUSTOM BUTTON
-----------------------------------------*/
.custom-btn {
  background: var(--secondary-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  padding: 15px 25px;
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn {
  color: var(--custom-btn-bg-color);
  margin-top: 8px;
  padding: 12px 25px;
}

.custom-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--primary-color);
}

.custom-list {
  list-style: none; /* Supprime les puces par défaut */
  padding-left: 0;
  margin-top: 10px;
}

.custom-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.custom-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #076E66;
  font-weight: bold;
  font-size: 18px;
}

.custom-list li:hover {
  border-radius: 6px;
  padding-left: 40px;
  transition: all 0.3s ease;
}


.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}


/*---------------------------------------
  NAVIGATION
--------------------------------------- --*/

.logo {
    width: 150px;
    height: auto;
}

.navbar {
    background: var(--white-color);
    z-index: 9;
    padding-top: 5px;
    padding-bottom: 6px;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
    color: var(--primary-color);
    font-size: var(--h6-font-size);
    font-weight: var(--font-weight-bold);
}

.navbar-brand span {
    display: inline-block;
    vertical-align: middle;
    color: var(--secondary-color);
}

.navbar-brand small {
    display: block;
    font-size: 10px;
    line-height: normal;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    display: inline-block;
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-medium);
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    background: transparent;
    color: var(--secondary-color);
}

.dropdown-menu {
    background: var(--white-color);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
    border: 0;
    min-width: 200px;
    padding: 0;
    margin-top: 20px;
}

.dropdown-item {
    display: inline-block;
    color: var(--dark-color);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-medium);
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
}

.dropdown-menu li:last-child .dropdown-item {
    padding-top: 0;
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover {
    background: #e6e9f0;
    color: var(--primary-color);
}

@media screen and (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.navbar-toggler {
    border: 0;
    padding: 0;
    cursor: pointer;
    margin: 0;
    width: 30px;
    height: 35px;
    outline: none;
}

/* Custom dropdown style */
.navbar .dropdown-menu {
    border-radius: 10px;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    transition: all 0.3s ease-in-out;
}

.navbar .dropdown-menu a.dropdown-item {
    font-size: 14px;
    padding: 10px 20px;
    transition: background 0.2s, color 0.2s;
}

.navbar .dropdown-menu a.dropdown-item:hover {
    background-color: #196A62;
    color: white;
    border-radius: 8px;
}

.navbar .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.navbar .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.navbar .dropdown:hover .dropdown-menu {
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .navbar .dropdown-menu {
        position: static;
        box-shadow: none;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block;
    }
}

.logo-1 {
    width: 80px;
    height: auto;
}

.custom-navbar .nav-link {
    font-size: 15px;
    padding: 12px 15px;
    color: #212529;
    transition: color 0.3s ease;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: #196A62;
}

.custom-navbar .dropdown-menu {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    display: none;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.custom-navbar .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0px);
}

.custom-navbar .dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.custom-navbar .dropdown-menu .dropdown-item:hover {
    background-color: #196A62;
    color: white;
    border-radius: 8px;
}

@media (max-width: 991.98px) {
    .custom-navbar .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        transform: none !important;
        box-shadow: none;
    }

    .custom-navbar .navbar-collapse {
        background-color: #ffffff;
        padding: 15px;
        border-top: 1px solid #eaeaea;
    }
}

@media (max-width: 767.98px) {
    /* Réduction du logo */
    .logo,
    .logo-1 {
        width: 60px;
        max-height: 40px;
    }

    .navbar-brand span {
        font-size: 12px;
    }

    .navbar-brand small {
        font-size: 9px;
    }

    /* Nav links plus compacts */
    .custom-navbar .nav-link {
        font-size: 13px;
        padding: 10px 10px;
    }

    /* Centrage des éléments dans la navbar mobile */
    .custom-navbar .navbar-collapse {
        text-align: center;
    }
}


/*---------------------------------------
  COORDINATOR
-----------------------------------------*/

.nav-pills .nav-link {
    border: none;
    color: var(--dark-color);
}
.nav-pills .nav-link.active,
.nav-pills .nav-link:hover,
.nav-pills .nav-link:focus {
    background-color: #006593;
    border-color: #024c02; /* Bordure de la même couleur */
    color: #ffffff; /* Couleur du texte */
}

/*---------------------------------------
  SITE HEADER
-----------------------------------------*/
.site-header {
  background: linear-gradient(to right, #076E66, #0B599B);
  color: #fff;
  width: 100%;
  font-size: 14px;
}
.header-info {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}
.header-info:hover {
  color: #fff;
  background: transparent;
  border: 1px solid transparent;
}
.pages-header{
    background: linear-gradient(to right, #076E66, #0B599B);
}
.image-header {
    background: linear-gradient(to right, #076E66 0%, #0B599B 50%, #076E66 100%);
}

@media (max-width: 576px) {
    .pages-header h3 {
        font-size: 1.5rem;
    }
}
.site-header p,
.site-header p a,
.site-header .social-icon-link {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
}

.site-header .social-icon {
  text-align: right;
}

.site-header .social-icon-link {
  background: transparent;
  width: inherit;
  height: inherit;
  line-height: inherit;
  margin-right: 15px;
}


/*---------------------------------------
  SLIDE
-----------------------------------------*/
.hero-section-full-height {
  height: inherit;
  background: #18645D;
  position: relative;
}

.carousel:hover .carousel-control-next-icon,
.carousel:hover .carousel-control-prev-icon {
  opacity: 1;
}


.carousel-item {
  height: 750px;
  min-height: 500px;
}
#hero-slide .carousel-caption {
  color: var(--primary-color);
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 10px 10px;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}
.chevron-bounce {
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(5px); }
  60% { transform: translateY(3px); }
}


.achievements-header {
          animation: fadeInDown 0.8s ease;
        }

.achievements-header a {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.achievements-header p {
  font-size: 0.9rem;
  opacity: 0.9;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}





.carousel-image {
  width: 100%;
  max-height: 700px;
  min-height: auto;
  object-fit: cover;
  transition: transform 0.8s ease-in-out;
}

#hero-slide .carousel-indicators-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0px;
}

#hero-slide .carousel-indicators {
  margin-right: 0;
  margin-left: 22px;
  justify-content: inherit;
}

.carousel-control-next,
.carousel-control-prev {
  opacity: 1;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-large);
  background-size: 40% 40%;
  width: 60px;
  height: 40px;
  opacity: 0;
  transition: all 0.5s;
}

.carousel-control-next-icon:hover,
.carousel-control-prev-icon:hover {
  background-color: var(--primary-color);
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 20px; /* Ajuster l'espacement sur petits écrans */
    }

    .navbar-expand-lg .navbar-nav {
        padding-bottom: 20px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 8px 15px;
    }
}

@media screen and (max-width: 580px) {
    .hero-section-full-height,
    .carousel-item,
    .carousel-image {
        min-height: 520px;
    }
    .carousel-caption {
        clip-path: polygon(100% 100%, 100% 100px, 0 100%);
        padding-right: 50px;
        min-width: inherit;
        min-height: inherit;
    }
}
.carousel-item:hover .carousel-image {
          transform: scale(1.03);
        }

/*---------------------------------------
  FEATURE BLOCK              
-----------------------------------------*/
.featured-block {
  text-align: center;
  transition: all 0.5s ease;
  min-height: 256px;
  padding: 15px;
}

.featured-block:hover {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}
shadow-content {
  transition: all 0.5s ease;
  min-height: 256px;
  padding: 15px;
}
.shadow-content:hover{
    border-radius: var(--border-radius-medium);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.shadow-static {
    box-shadow: 0 ;
}

.featured-block:hover .featured-block-image {
  transform: scale(0.75);
}

.featured-block-image {
  display: block;
  margin: auto;
  transition: all 0.5s;
}

.featured-block:hover .chiffre-block-text {
  margin-top: 0;
}
.chiffre-block-text {
  color: #595959;
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
  transition: all 0.5s;
}
.titre-chiffre {
  color: var(--primary-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.white-bg{
   background-color: var(--white-color);
}
.border-custom {
            border-radius: 8px;
            padding: 15px;
        }
.coord-text{
    text-align: center;
}
.about-image {
  border-radius: var(--border-radius-small);
  display: block;
  width: 600px;
  height: 400px;
  object-fit: cover;
  margin-left: -30px;
        }

}

.custom-text-block {
  padding: 60px 40px;
  margin-left: 30px;
}
.coordinator-image {
    max-height: 430px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .coordinator-image {
        max-height: 240px;
    }
}


/*---------------------------------------
  COUNTER NUMBERS
-----------------------------------------*/
.counter-thumb {
  margin: 20px;
  margin-bottom: 0;
}

.counter-number,
.counter-text {
  color: var(--secondary-color);
  display: block;
}

.counter-number,
.counter-number-text {
  color: var(--primary-color);
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
}


/*---------------------------------------
  VOLUNTEER              
-----------------------------------------*/
.volunteer-section {
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;
}

.volunteer-section::after {
  content: "";
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  bottom: -110px;
  right: -80px;
  width: 350px;
  height: 350px;
}

.volunteer-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 50px;
}

.volunteer-image {
  border-radius: 100%;
  display: block;
  margin: auto;
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.volunteer-section .custom-block-body {
  max-width: 440px;
  margin: 0 auto;
}

.volunteer-section .custom-block-body p {
  line-height: 1;
}


/*---------------------------------------
  DONATE              
-----------------------------------------*/
.donate-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.donate-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 50px;
}


/*---------------------------------------
  NEWS         
-----------------------------------------*/
.news-detail-header-section {
 /* background-image: url('../images/news/close-up-volunteer-oganizing-stuff-donation.jpg'); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.news-block-top {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.news-block-two-col-image-wrap {
  border-radius: var(--border-radius-small);
  position: relative;
  overflow: hidden;
  width: 150px;
  margin-right: 20px;
}

.news-category-block {
  background: var(--secondary-color);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 10px 20px;
}
.post-content {
    text-align: justify;
    line-height: 1.8;
    font-size: 1.05rem;
    color: #000000;
}


.news-category-block .category-block-link {
  color: var(--white-color);
  margin-right: 10px;
}

.news-block-info {
  padding-top: 10px;
  padding-bottom: 10px;
}

.news-block-title-link {
  color: var(--dark-color);
}

.news-detail-image {
  display: block;
  border-radius: var(--border-radius-medium);
}

blockquote {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-semibold);
  color: var(--site-footer-bg-color);
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 90px 50px 50px 50px;
  text-align: center;
}

blockquote::before {
  content: "“";
  color: var(--custom-btn-bg-color);
  font-size: 100px;
  line-height: 1rem;
  display: block;
}

.author-comment-link {
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-semibold);
}

.search-form {
  margin-top: 20px;
}

.badge {
  background: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  padding-bottom: 2px;
}

.tags-block-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  display: inline-block;
  font-size: var(--copyright-font-size);
  line-height: normal;
  margin-right: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 8px 15px;
}

.tags-block-link:hover {
  border-color: var(--dark-color);
  color: var(--dark-color);
}

.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: 100px;
  left: -130px;
  margin: auto;
  width: 200px;
  height: 200px;
  z-index:1;
}

.cta-section::after {
  content: "";
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: -100px;
  right: -130px;
  margin: auto;
  width: 200px;
  height: 200px;
}
.actualite {
  position: relative;
  display: inline-block;
}
.actualite::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 2px;
  background-color: white;
}

/*---------------------------------------
  TESTIMONIAL CAROUSEL
-----------------------------------------*/
.testimonial-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.testimonial-section::before {
  content: "";
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: -100px;
  left: -30px;
  margin: auto;
  width: 250px;
  height: 250px;
}

.testimonial-section::after {
  content: "";
  background: var(--custom-btn-bg-color);
  border-radius: 50%;
  position: absolute;
  bottom: -110px;
  right: -80px;
  width: 350px;
  height: 350px;
}

#testimonial-carousel .carousel-caption {
  position: relative;
  right: 0;
  bottom: 0;
  left: 0;
}

#testimonial-carousel .carousel-title {
  background: var(--section-bg-color);
  line-height: normal;
  margin-bottom: 30px;
}

#testimonial-carousel .carousel-title::before {
  content: open-quote;
  color: var(--p-color);
  font-size: var(--h1-font-size);
  position: relative;
  top: 10px;
  right: 10px;
}

#testimonial-carousel .carousel-title::after {
  content: close-quote;
  color: var(--p-color);
  font-size: var(--h1-font-size);
  position: relative;
  top: 10px;
  left: 10px;
}

#testimonial-carousel .carousel-title {
  quotes: "“" "”" "‘" "’";
}

#testimonial-carousel .carousel-name {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 10px 20px;
}

#testimonial-carousel .carousel-name::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--primary-color);
}

.carousel-name-title {
  font-weight: var(--font-weight-semibold);
}

#testimonial-carousel .carousel-indicators {
  position: relative;
  top: 150px;
  bottom: auto;
  margin-top: 50px;
  margin-bottom: 150px;
}

#testimonial-carousel .carousel-indicators li {
  text-indent: inherit;
  background: transparent;
  margin: 0 10px;
}

#testimonial-carousel .carousel-indicators li,
#testimonial-carousel .carousel-indicators li::before {
  width: 45px;
  height: 45px;
}

#testimonial-carousel .carousel-indicators .avatar-image {
  width: 50px;
  height: 50px;
}

#testimonial-carousel .carousel-indicators .active,
#testimonial-carousel .carousel-indicators .active .avatar-image {
  background: transparent;
  width: 200px;
  height: 200px;
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-section {
  background: var(--white-color);
}

.contact-form {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  padding: 40px;
}

.contact-info-wrap {
  padding-top: 40px;
}

.contact-image-wrap {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  width: 100%;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control,
.input-group-file {
  background-color: var(--section-bg-color);
  box-shadow: none;
  border: 0;
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  border-color: var(--secondary-color);
}

.custom-form label {
  margin-bottom: 10px;
}

.custom-form .form-check-group {
  margin-bottom: 20px;
}

.donate-form .form-check-group-donation-frequency {
  padding-right: 0;
}

.form-check-group-donation-frequency + .form-check-group-donation-frequency {
  padding-right: 12px;
  padding-left: 0;
}

.form-check-group-donation-frequency .form-check-label {
  font-weight: var(--font-weight-semibold);
}

#DonationFrequencyOne {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#DonationFrequencyMonthly {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-form .form-check-radio {
  position: relative;
  height: 100%;
  padding-left: 0;
}

.custom-form .input-group-text {
  background: var(--secondary-color);
  border: 0;
  color: var(--white-color);
}

.custom-form .form-check-radio .form-check-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.form-check-radio .form-check-input[type=radio] {
  background-color: var(--section-bg-color);
  border-radius: .25rem;
  border: 0;
  box-shadow: none;
  outline: none;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  padding: 25px 50px;
  transition: all 0.5s;
}

.form-check-radio .form-check-input:checked[type=radio] {
  background-image: none;
}

.form-check-radio .form-check-input:checked[type=radio] + .form-check-label,
.form-check-radio .form-check-input:hover + .form-check-label,
.form-check-radio .form-check-input:checked + .form-check-label {
  color: var(--white-color);
}

.form-check-radio .form-check-input:hover,
.form-check-radio .form-check-input:checked {
  background-color: var(--secondary-color);
  border-color: var(--white-color);
}

.input-group-file {
  border-radius: .25rem;
  padding: 13px .75rem;
}

.input-group-file input[type=file] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  padding: 0;
}

.input-group-file .input-group-text {
  background: transparent;
  color: inherit;
  margin-bottom: 0;
  padding: 0;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*---------------------------------------
  CONTACT SEARCH & DONATE & SUBCRIBE FORM              
-----------------------------------------*/
.contact-form .form-control {
  background: var(--white-color);
}

.search-form {
  position: relative;
}

.search-form .form-control {
  padding-right: 50px;
}

.search-form button[type="submit"] {
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  color: var(--p-color);
  width: 50px;
  padding: 12px;
}

.search-form button[type="submit"]:hover {
  background: transparent;
  color: var(--dark-color);
}
.bg-blue{
    color: #006694;
    text-decoration: none;
}

.custom-badge {
    background-color: #006694;
    color: white;
    padding: 0.25em 0.5em;
    border-radius: 0.25rem;
    font-size: 0.775em;
    text-decoration: none;
}

.custom-badge:hover {
    color: white;
}

.subscribe-form {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  padding: 30px;
}

.subscribe-form .form-control {
  background: var(--white-color);
}

.search-form .form-control {
  background: var(--white-color);
}

.donate-form .form-control {
  margin-bottom: 0;
}


/*---------------------------------------
  SITE FOOTER
-----------------------------------------*/
.site-footer {
    background-color: var(--site-footer-bg-color);
    padding-top: 70px;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

.site-footer .container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}
.contenu-uniforme {
    font-size: 18px; /*var(--p-font-size);*/
    color: #555;
    line-height: 1.7;
    font-family: var(--body-font-family);

}

.site-footer-bottom {
  background-color: var(--secondary-color);
  position: relative;
  z-index: 2;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 0;
  padding-right: 0;
}

.site-footer-bottom a {
  color: var(--white-color);
}

.site-footer-bottom a:hover {
  color: #FF6;
}

.site-footer-link {
  color: #595959;
}

.copyright-text {
  color: var(--section-bg-color);
  font-size: var(--copyright-font-size);
  margin-right: 30px;
  text-align: center;
  margin-top: 20px;
}

.site-footer .custom-btn {
  font-size: var(--copyright-font-size);
}

.site-footer .custom-btn:hover {
  background: var(--primary-color);
}

/*---------------------------------------
  FOOTER MENU
-----------------------------------------*/
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  gap: 20px;
}

.footer-menu-item {
  list-style: none;
  display: block;
  flex: 1;
  min-width: 200px; /* Assure que chaque item prend une largeur minimale */
}

.footer-menu-link {
  font-size: var(--p-font-size);
  color: #2B2B2B;
  display: block;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .footer-menu {
    flex-direction: column; /* Aligne les éléments sur une seule colonne sur les petits écrans */
    align-items: center;
  }

  .copyright-text {
    text-align: center;
    margin-top: 15px;
  }
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--site-footer-bg-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 5px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 38px;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .featured-block {
    min-height: inherit;
  }

  .volunteer-section::after {
    width: 450px;
    height: 450px;
  }
  
  .volunteer-image {
    width: 350px;
    height: 350px;
  }
}

@media screen and (max-width: 1170px) {
  .carousel-image {
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 16px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-form {
    padding-bottom: 40px;
  }

  .donate-form {
    padding: 35px;
  }

  .navbar .navbar-expand-lg {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 8px 20px;
  }

  .site-header .social-icon {
    text-align: left;
    margin-top: 5px;
  }

  .hero-section-full-height {
    height: inherit;
    background: var(--secondary-color);
    position: relative;
  }

  .carousel:hover .carousel-control-next-icon, 
  .carousel:hover .carousel-control-prev-icon {
    opacity: 1;
  }

  .carousel-item {
    height: inherit;
  }

  .carousel-control-prev {
    left: 12px;
  }

  .carousel-control-next {
    right: 12px;
  }

  .carousel-control-next-icon, 
  .carousel-control-prev-icon {
    opacity: 1;
    width: 60px;
    height: 60px;
  }

  .news-detail-header-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .cta-section::before {
    width: 150px;
    height: 150px;
  }

  .cta-section::after {
    bottom: -60px;
    width: 100px;
    height: 100px;
  }

  .cta-section .row {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .volunteer-section::after {
    width: 300px;
    height: 300px;
  }

  .testimonial-section::before {
    width: 150px;
    height: 150px;
  }

  .testimonial-section::after {
    width: 200px;
    height: 200px;
  }

  #testimonial-carousel .carousel-caption {
    padding-top: 0;
  }

  blockquote {
    padding: 70px 30px 30px 30px;
  }

  .about-image {
    width: inherit;
    height: 450px;
  }

  .volunteer-image {
    width: 250px;
    height: 250px;
    margin: 0;
  }

  .custom-text-block {
    padding: 20px 0 0 0;
  }

  .custom-text-box,
  .volunteer-form {
    padding: 30px;
  }

  .counter-number, 
  .counter-number-text {
    font-size: var(--h2-font-size);
  }

  .contact-info-wrap {
    padding-top: 200;
  }

  .site-footer {
    padding-top: 20px;

  }

  .copyright-text-wrap {
    justify-content: center;
  }

  .site-footer-bottom {
    text-align: center;
    margin-top: 5px;
  }

  .site-footer-bottom .footer-menu {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 580px) {
  .hero-section-full-height,
  #hero-slide .carousel-item,
  .carousel-image {
    min-height: 520px;
  }
  #hero-slide .carousel-caption {
    clip-path: polygon(100% 100%, 100% 100px, 0 100%);
    padding-right: 50px;
    min-width: inherit;
    min-height: inherit;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 28px;
    color: black;
    opacity: 1;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  #hero-slide .carousel-caption {
    min-width: inherit;
    padding-bottom:50px;
  }

  .carousel-control-next-icon, 
  .carousel-control-prev-icon {
    width: 45px;
    height: 45px;
  }

  .volunteer-image {
    width: 150px;
    height: 150px;
  }

  .volunteer-section::after {
    width: 200px;
    height: 200px;
  }

  .testimonial-section::before {
    top: -50px;
    width: 100px;
    height: 100px;
  }

  .testimonial-section::after {
    bottom: -150px;
    width: 200px;
    height: 200px;
  }

  .social-share .tags-block {
    margin-bottom: 10px;
  }

  .donate-form {
    padding: 25px;
  }
}
/*---------------------------------------
  SEARCH INPUT
-----------------------------------------*/
.search-input {
    background-color: white;
    border: 1px solid #ccc;
    color: #333;
}

.search-button {
    background-color: white;
    border: 1px solid #ccc;
    color: #333;
}

.search-button i {
    color: #333;
}
/*---------------------------------------
  DOCUMENTATION
-----------------------------------------*/

.custom-doc-list {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 15px;
}
.doc-item {
  background-color: #ffffff;
  border-left: 5px solid #076E66;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.doc-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(7, 110, 102, 0.15);
}
.doc-icon {
  font-size: 1.5rem;
  color: #076E66;
  transition: transform 0.3s ease, color 0.3s ease;
}

.doc-item:hover .doc-icon {
  transform: scale(1.1);
  color: #055c55;
}

/* Lien du titre */
.doc-link {
  font-weight: 600;
  font-size: 14px;
  color: #333;
  transition: color 0.3s ease;
}

.doc-link:hover {
  color: #076E66;
}

/* Bouton de téléchargement */
.btn-outline-success {
  border-color: #076E66;
  color: #076E66;
  transition: all 0.3s ease;
}

.btn-outline-success:hover {
  background-color: #076E66;
  color: #fff;
}
/*------------------------------------------------
  BANDE DEFILANTE PRINCIPALES ACTIONS ACCUEIL
-------------------------------------------------*/
.marquee-container {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  cursor: pointer;
}


.marquee-content {
  display: inline-block;
  padding-left: 90%;
  animation: marquee-move 20s linear infinite;
}
.marquee-content a {
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

@keyframes marquee-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}


.marquee-container:hover .marquee-content {
  animation-play-state: paused;
  text-decoration: underline;
  color: #ffffff;
  #transform: scale(1.05);
}

/* ------------------------------------------------
   SECTION D'ABONNEMENT
------------------------------------------------- */
.section-subscribe {
    padding: 15px 0;
    background: linear-gradient(to right, #076E66, #0B599B);
    color: #fff;
    border-top: 2px solid #EBEFF4;
    border-bottom: 2px solid #EBEFF4;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.section-subscribe h5 {
    font-size: 28px;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 20px;
}

.section-subscribe p {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.subscriber-form {
    max-width: 600px;
    margin: 0 auto;
}

.subscriber-form .input-group {
    display: flex;
    width: 100%;
    justify-content: center;
}

.subscriber-form .form-control {
    background-color: #ffffff;
    box-shadow: none;
    border: 1px solid #ccc;
    color: #333;
    margin-bottom: 0;
    padding-top: 13px;
    padding-bottom: 13px;
    outline: none;
    border-radius: 30px 0 0 30px;
    font-size: 16px;
    flex: 1;
}

.subscriber-form .btn-warning {
    background-color: #FFD700;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    margin-left: 10px;
    flex-shrink: 0;
}

.subscriber-form .btn-warning:hover {
    background-color: #f0b600;
}

/* Optimisation mobile */
@media (max-width: 768px) {
    .section-subscribe h5 {
        font-size: 24px;
    }

    .section-subscribe p {
        font-size: 16px;
    }

    .subscriber-form .form-control,
    .subscriber-form .btn-warning {
        font-size: 14px;
    }

    .subscriber-form .form-control {
        padding: 12px;
    }

    .subscriber-form .btn-warning {
        padding: 12px 20px;
    }
}
/* ------------------------------------------------
   SECTION LIST CATEGORIES
------------------------------------------------- */
.categories-container {
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.categories-scroll {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

/* Pour un meilleur look sur desktop */
.category-pill {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: #076E66;
    border: 1px solid #076E66;
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-pill:hover {
    background: #076E66;
    color: #fff;
}

.category-pill .badge {
    background-color: #FFD700;
    color: #000;
    font-size: 12px;
}

/* ------------------------------------------------
   REGISTER AND LOGIN BUTTONS
------------------------------------------------- */
.btn-inscription,
.btn-connexion {
  font-weight: 600;
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-inscription {
  color: #fff;
  background: transparent;
  border: 1px solid transparent;
}

.btn-inscription:hover {
  text-decoration: underline;
  color: #006a4f;
  background-color: #ffffff;
}

.btn-connexion {
  background-color: #18645d;
  color: #fff;
  border: 1px solid #ffffff;
}

.btn-connexion:hover {
  text-decoration: underline;
  color: #006a4f;
  background-color: #ffffff;
}



/* === Sidebar Secondaire PURS === */
.sidebar-secondary {
  position: fixed;
  top: 140px; /* pour ne pas cacher le header */
  left: 0;
  height: calc(100vh - 120px);
  width: 300px;
  background: linear-gradient(180deg, #0b6e5f, #1b6d83);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 10px;
  transition: all 0.3s ease;
  z-index: 1030;
}

.sidebar-secondary .nav-link {
  color: #e9f5f3;
  padding: 10px 18px;
  font-size: 15px;
  display: flex;
  align-items: center;
  transition: 0.2s ease;
}

.sidebar-secondary .nav-link:hover,
.sidebar-secondary .nav-link.active {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.sidebar-secondary ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-secondary .sidebar-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Ajustement du contenu principal quand la sidebar est visible */
.main-content {
  margin-left: 240px;
  transition: margin-left 0.3s ease;
}

@media (max-width: 991px) {
  .sidebar-secondary {
    left: -240px;
  }
  .sidebar-secondary.active {
    left: 0;
  }
  .main-content {
    margin-left: 0;
  }
}
