
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");


:root {
    --font-main: 'Roboto', sans-serif;
    
    --color-text-1: #fff;
    --color-text-2: #144990;
    --color-light: #eee;
    --color-dark: #000;
    --color-text: #fff;
    --font-main: 'Roboto', sans-serif;
    --color-primary: #144990;    /* Bleu pour le survol de la carte */
    --color-accent: #dd0808cd;     /* Rouge pour le bouton */
    --color-accent2: #ffed00;     /* Rouge pour le bouton */
    --color-text-primary: #363738; /* Texte de la carte */
    --color-text-light: #fff;       /* Texte du bouton et survol carte */
  }

*{
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    color: #516171;
}

p{
   color: #516171;
   font-size: 16px;
   font-family: 'Roboto';
}

h1,h2,h3,h4,h5,h6 {
    font-weight: 500!important;
    color: #144990;
	font-family:'Roboto';
}

a {
    color:#144990;
    text-decoration: none!important;
    transition: all 0.4s ease;
    font-weight: 400;
}

small{
    color:#144990;
    text-decoration: none!important;
}




/*   NAVBAR  */
/* ===== VARIABLES CSS ===== */
:root {
  --primary-color: #144990;
  --secondary-color: #dd0808cd;
  --accent-color: #2c5aa0;
  --text-dark: #2d3748;
  --text-light: #718096;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --border-radius: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== NAVBAR PRINCIPALE ===== */
.navbar {
  box-shadow: var(--shadow-light);
  background: var(--bg-white) !important;
  transition: var(--transition);
  padding: 0.5rem 0;
  height: auto;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-medium);
}

/* ===== LOGO ===== */
.navbar-brand {
  padding: 0;
  margin: 0;
  transition: var(--transition);
}

.navbar-brand-img {
  height: 80px;
  width: auto;
  transition: var(--transition);


}

.navbar.scrolled .navbar-brand-img {
  height: 80px;
}

/* ===== ITEMS DE NAVIGATION ===== */
.navbar-nav .nav-item {
  margin: 0 0.1rem;
  position: relative;
}

.navbar-nav .nav-link {
  color: var(--primary-color) !important;
  font-family:  'Roboto', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 0.7rem !important;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.navbar-nav .nav-link i {
  font-size: 0.9em;
  width: 20px;
  text-align: center;
}

/* États des liens */
.navbar-nav .nav-link:hover {
  color: var(--secondary-color) !important;
  background-color: var(--bg-light);
  transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
  color: var(--secondary-color) !important;
  font-weight: 700;
  background-color: rgba(221, 8, 8, 0.05);
}


/* ===== DROPDOWNS MODERNES ===== */
.navbar .dropdown-menu {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  padding: 0.5rem 0;
  margin-top: 0.3rem !important;
  background: var(--bg-white);
  min-width: 200px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  animation: dropdownFadeIn 0.25s ease-out;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar .dropdown-item {
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
  display: flex;
  align-items: center;
  border: none;
  position: relative;
}

.navbar .dropdown-item i {
  width: 20px;
  margin-right: 0.75rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background-color: var(--bg-light);
  color: var(--secondary-color);
  padding-left: 2rem;
}

.navbar .dropdown-item:hover i {
  color: var(--secondary-color);
  transform: scale(1.1);
}

.navbar .dropdown-item.active {
  background-color: rgba(221, 8, 8, 0.08);
  color: var(--secondary-color);
  font-weight: 600;
}

.navbar .dropdown-divider {
  margin: 0.5rem 0;
  border-color: rgba(0, 0, 0, 0.08);
}

/* Indicateur dropdown ouvert */
.navbar .dropdown-toggle::after {
  transition: var(--transition);
  margin-left: 0.5rem;
}

.navbar .dropdown.show .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* ===== BOUTON LOGIN ===== */
.btn-login {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(20, 73, 144, 0.3);
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 73, 144, 0.4);
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

/* ===== BOUTON MOBILE ===== */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.navbar-toggler:focus {
  box-shadow: none;
  background-color: var(--bg-light);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23144990' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    margin-top: 1rem;
    padding: 1rem;
  }

  .navbar-nav .nav-link {
    padding: 1rem !important;
    border-radius: var(--border-radius);
    margin: 0.25rem 0;
  }

  .dropdown-menu {
    border: none !important;
    box-shadow: none !important;
    background: var(--bg-light) !important;
    margin: 0.5rem 0 0.5rem 1rem !important;
  }

  .navbar-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .btn-login {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .navbar-nav .nav-item:last-child .nav-link {
    margin-right: 0;
  }
}

/* ===== ANIMATION SCROLL ===== */
@media (min-width: 992px) {
  .navbar {
    transition: all 0.4s ease;
  }
}

/* ===== OPTIMISATION POUR GRANDS ÉCRANS ===== */
@media (min-width: 1200px) {
  .navbar-nav .nav-item {
    margin: 0 0.15rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.6rem 0.8rem !important;
    font-size: 0.88rem;
  }
}


 
/*   CAROUSEL */
/* static/css/carousel.css */




  /* --- TEXT CAROUSEL (Slide 1) --- */
  .containertext {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
  }
  .containertext span {
    font-family: var(--font-main);
    display: block;
    transform: translate(-50%, -50%);
    width: 100%;
  }

  .text1 {
    font-family: 'Roboto', serif;
    color: var(--color-text);
    font-size: 50px;
    font-weight: 1000;
    margin-bottom: -2px;
    background: transparent;
    position: relative;
    animation: text 3s 1;
  }

  .text2 {
    font-size: 30px;
    color: var(--color-text);
    font-weight: 1000;
    margin-top: -15px;
    text-transform: uppercase;
  }

  @keyframes text {
    0% {
      color: transparent;
      margin-bottom: -30px;
    }
    30% {
      letter-spacing: 15px;
      margin-bottom: -30px;
    }
    85% {
      letter-spacing: 5px;
      margin-bottom: -30px;
    }
  }

  /* --- LIST CONTENT (Slides 2 & 3) --- */
/* --- LIST CONTENT (Slides 2 & 3) --- */
.list .item .content {
  position: absolute;
  top: 10%;
  width: 1140px;
  max-width: 80%;
  left: 50%;
  transform: translate(-50%);
  padding-right: 40%; /* <-- MODIFIÉ (était 30%) */
  box-sizing: border-box;
  color: var(--color-text);
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.25); /* #0004 -> rgba */
}
  .list .item .content .title,
  .list .item .content .type {
    font-size: 50px;
    font-weight: bold;
    line-height: 1.3em;
    font-family: var(--font-main);
  }

  .list .item .content .title {
    font-size: 40px;
    text-transform: uppercase;
    color: #144990;

    
  }
  .list .item .content .type {

    font-size: 20px;
    font-weight: 600;
    margin-top: 15px;

    /* Style harmonisé */
  
    background: rgba(255, 255, 255, 0.85);
    padding: 10px 20px;
    border-radius: 10px;
    color: #dd0808cd!important;
    display: inline-block;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  }

    .list .item .content .type a {
      color: #dd0808cd!important;
       font-size: 20px;
   
  }

  .list .item .content .description {
    font-size: 20px;
  }

  .list .item .content .button {
    margin-top: 2px;
  }
  

  

  .list .item .content .button button:hover {
    background-color: var(--color-accent);
    color: var(--color-light);
  }

  /* --- ANIMATIONS (Slides 2 & 3) --- */
  .list .item:nth-child(1) {
    z-index: 1;
  }

  .list .item:nth-child(1) .content .title,
  .list .item:nth-child(1) .content .type,
  .list .item:nth-child(1) .content .description,
  .list .item:nth-child(1) .content .button {
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0; /* CORRECTION : (0) -> 0 */
    animation: showContent 0.5s 1s linear 1 forwards;
  }

  @keyframes showContent {
    to {
      transform: translateY(0);
      filter: blur(0px); /* 00px -> 0px */
      opacity: 1;
    }
  }

  .list .item:nth-child(1) .content .title {
    animation-delay: 0.4s;
  }
  .list .item:nth-child(1) .content .type {
    animation-delay: 0.6s;
  }
  .list .item:nth-child(1) .content .description {
    animation-delay: 0.8s;
  }
  /* CORRECTION : .containertext2 -> .list .item */
  .list .item:nth-child(1) .content .button {
    animation-delay: 1s;
  }

  /* --- MEDIA QUERY --- */
  @media screen and (max-width: 678px) {
    .list .item {
      max-width: 80%;
    }
    .list .item .content {
      padding-right: 0;
    }
    .list .item .content .title {
      font-size: 30px;
      max-width: 100%;
    }

    .list .item .content .type {
      font-size: 16px;
    }
    .list .item .content .description {
      font-size: 12px;
    }
  }


/* mission */

.mission .container {
 
    margin-top: 25px;
    min-height: 25px;
    font-family: 'Roboto'; 
    align-items: center;  
    justify-content: center;  
  }
  
  .mission .container .titre h2 {
    font-family:'Roboto' ; 
    color:#144990;    
  }
  
  
  .mission .container .sous-titre h3 {
    color: #144990;
    font-family:'Roboto' ;     
  }
  
  .mission .container .texte-1 p{
    color: #363738; 
    font-size: 18px;
    font-family:'Roboto' ;
    text-align: center;  
   
  }

/* --- Service Cards --- */
.service-card { /* NOUVELLE CLASSE CIBLÉE */
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: color .5s, box-shadow 0.3s; /* Ajout d'une transition pour l'ombre */
    margin-top: 5px;
    /* Styles Bootstrap par défaut conservés pour l'apparence de base */
}

.service-card:hover { /* NOUVELLE CLASSE CIBLÉE */
    color: var(--color-text-light, white); /* Utilisation d'un fallback si --color-text-light n'est pas défini */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Ajout d'une ombre au survol pour un meilleur effet */
}

.service-card p { /* NOUVELLE CLASSE CIBLÉE */
    font-family: var(--font-main, sans-serif);
    color: var(--color-text-primary, #333);
    transition: color 0.5s;
}

/* Le texte du paragraphe devient blanc au survol de la carte */
.service-card:hover p { /* NOUVELLE CLASSE CIBLÉE */
    color: var(--color-text-light, white);
}

.service-card:hover .h2 { /* NOUVELLE CLASSE CIBLÉE */
    color: var(--color-text-light, white);
}

/* Effet de survol (slide-in) */
.service-card::before { /* NOUVELLE CLASSE CIBLÉE */
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    /* Utilisation d'un fallback si --color-primary n'est pas défini */
    background: var(--color-primary, #144990); 
    width: 100%;
    height: 100%;
    transition: left 0.5s;
    z-index: -1; 
}

.service-card:hover::before { /* NOUVELLE CLASSE CIBLÉE */
    left: 0;
}

/* Style de l'icône */
.icone {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

/* Cibler spécifiquement l'icône Font Awesome */
.icone i {
    font-size: 60px; 
    color: #dd0808cd; 
    transition: all 0.3s ease;
}

/* Cibler spécifiquement le titre de service */
.service-title {
    font-size: 25px; 
    color: #144990;
    transition: all 0.3s ease; 
}

/* L'icône change lorsque la 'service-card' est survolée */
.service-card:hover .icone i { /* NOUVELLE CLASSE CIBLÉE */
    color: var(--color-text-light, white);
    transform: scale(1.1);
}

.service-card:hover h2 { /* NOUVELLE CLASSE CIBLÉE */
    color: var(--color-text-light, white);
    transform: scale(1.1);
}

/* Style du corps de la carte */
.card-body {
    min-height: 160px; 
}

/* S'assure que la classe .w-80 (non-Bootstrap) fonctionne */
.w-80 {
    width: 80%;
}

/* Définition des variables CSS pour que le preview fonctionne */
:root {
    --color-primary: #144990;
    --color-text-light: white;
    --color-text-primary: #333;
    --font-main: 'Inter', sans-serif;
}



/* --- Bouton "En savoir plus" --- */
.btn-valide {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 35px; /* Déplacé du bouton vers le conteneur */
}

/* Style appliqué directement au lien <a>
  (anciennement .bnt-valide button)
*/
.main-button {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-text-light);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 500;
  padding: 12px 20px;
  text-transform: uppercase;
  text-decoration: none; /* Requis pour les liens <a> */
  transition: all .3s;
  border: none;
  outline: none;
  border-radius: 10px;
  cursor: pointer;
}

.main-button:hover {
  transform: scale(1.05); /* Effet de survol plus moderne */
  opacity: 0.9;
}

/* Espace pour l'icône dans le bouton */
.main-button i {
  padding-left: 10px;
}

    
 /*barre  de pub*/


 .container-barre{
  margin-top: 55px;
  position: relative;
  background-color: #144990;
  font-family: 'Roboto';
  font-size: 15px;
}
.livre img{
    height: 350px;
    width: 250px; 
   
}


.bnt-valide-1{
display: flex;
}

.container-barre .container {
 font-size: 24px;
}

.container-barre button {
  display: inline-block;
  margin-top: 35px;
  background-color:#dd0808cd;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 20px;
  text-transform: uppercase;
  transition: all .3s;
  border: none;
  outline: none;
  border-radius: 10px;
  
  }
  
  
  
  .container-barre button:hover {
  background-color:#dd0808cd;
  color: #fff;
  }



  /* menu actualite*/

  
  .container-menu{
  
    display: flex;
    align-items: center;
    justify-content:space-between;
  
  }

  .box{                         
    height: fit-content;
    width: fit-content;
    font-family: "Roboto"; 
  }

  .container-menu button {
    display: inline-block;
    margin-top: 35px;
    background-color:#dd0808cd;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 20px;
    text-transform: uppercase;
    transition: all .3s;
    border: none;
    outline: none;
    border-radius: 10px;
    
    }
    
    
    
    .container-menu button:hover {
    background-color:#dd0808cd;
    color: #fff;
    }

          /* a la une */
 #blog .blog-post {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform .2s ease, box-shadow .2s ease;
}

#blog .blog-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

          

        /*auto slider  partenaire*/

        .slider{
          height: 250x;
          margin-top: 15px;
          position: relative;
          width: 90%;
          display: grid;
          place-items: center;
          overflow: hidden;
  
  
         
      }
      .slider-track{
          display: flex;
          width: calc(250px * 18);
          animation: scroll 40s linear infinite; 
      }
  
      .slider-track:hover{
          animation-play-state: paused;
         
      }
  
      @keyframes scroll {
          0%{
              transform: translateX(0)
          }
          100%{
              transform : translateX(calc(-250px * 9));
          }
      }
  
      .img_slider{
          height: 180px;
          width: 250px;
          display: flex;
          align-items: center;
          padding: 15px;
          perspective: 100px;
      }
  
  
  
      .container .titre-1 h6{
          font-family: 'Roboto';
          font-size: 18px;
          color: #c91717;
          padding-left: 5px;
      }
  
      .container .titre-1 h2{
          font-family: 'Roboto';
          font-size: 32px;
          font-weight: 800;
          color: rgb(37, 36, 36);
          padding-left: 5px;
          margin-top: 10px;
      }
  
      img{
          width: 100%;
          transition: transform  1s;
      }
      img:hover{
          transform: translateZ(20px);
      }
  
      .slider::before,
      .slider::after{
          background:linear-gradient(to right, rgba(255,255,255,1)0%,
          rgba(255,255,255,0) 100%);
          content: '';
          height: 100%;
          position: absolute;
          width: 15%;
          z-index: 2;
      }
      .slider::before{
          left :0;
          top :0;
      }
      .slider::after{
          left :0;
          top :0;
          transform: rotateZ(180deg'angle');
      }





       /*sous banner*/

.heading-page {
	padding-top: 3px;
}

.page-heading {
  height: 25px;
	margin: 0px 0px;
	padding: 120px 0px;
	text-align: left;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
  /*background:  linear-gradient(rgba(0, 10, 17, 0.4), rgba(9,32,50,0.4)), url(../img/fondsous.jpg); */
  /*background-image:  url(../img/fond.jpg);  */
  background-color: #144990 !important;
  
}

.page-heading .text-content h4 {
	color:  #fff;
	font-size: 24px;
	font-weight: 900;
	letter-spacing: 0.5px;
	margin-bottom: 15px;
}

.page-heading .text-content h2 {
	color: #fff;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 0.5px;
}


 /*reserve*/

.wrapper{
  min-height : 100vh;
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 20px;
  font-family: 'Roboto';
}




.wrapper img{
 width: 320px;
  border: 3px solid #777373;
  border-radius: 10px;
  float: left;
}
.wrapper p{
   text-align: justify;
}



/* =========================
   FOOTER
   ========================= */

footer.container-footer {
    font-family: 'Roboto', sans-serif;
    color: white !important;
    margin-top: 80px;
    position: relative;
    background-color: #144990 !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 2rem;
    background: #144990;
}

/* Taille de police uniforme pour tous les textes sauf footer-title */
footer.container-footer,
footer.container-footer p,
footer.container-footer a.footer-link,
footer.container-footer .small,
footer.container-footer .copyright-text,
footer.container-footer .newsletter-section p {
    font-size: 1.0rem !important;
    line-height: 1.5;
}

/* Logo réduit */
.footer-logo img {
    max-height: 20px!important;
    width: auto;
}

/* Titres des sections - CONSERVER la taille originale */
.footer-title {
    font-size: 1.1rem !important;
    color: white;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

/* Liens du footer */
.footer-link {
font-weight: normal!important;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    color: white !important;
    text-decoration: none;
}

.footer-link:hover {
    color: #b62a2a;
    text-decoration: underline;
    padding-left: 5px;
}

/* Style pour le copyright */
.copyright-text {
    margin-top: 1rem;
}

.Copyright {
    color: #fff;
    font-weight: bold;
}

.Copyright:hover {
    text-decoration: none;
    color: #f8f9fa;
}

/* Style pour les icônes sociales - REMONTÉES et ANIMÉES */
.social-icons-section {
    margin-top: 0.5rem; /* Réduit pour remonter les icônes */
    margin-bottom: 1rem;
}

.social-icon {
    font-size: 16px;
    margin: 0 5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
}

/* Animation au survol */
.social-icon:hover {
    transform: translateY(-3px) scale(1.15);
    background: rgba(255,255,255,0.25);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Effet de lueur au survol */
.social-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.social-icon:hover::after {
    opacity: 1;
    transform: scale(1.2);
}

/* Animations spécifiques pour chaque icône */
.social-icon.facebook:hover {
    background: #3b5998 !important;
    box-shadow: 0 5px 15px rgba(59, 89, 152, 0.4);
}

.social-icon.twitter:hover {
    background: #1da1f2 !important;
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.4);
}

.social-icon.google-plus:hover {
    background: #db4437 !important;
    box-shadow: 0 5px 15px rgba(219, 68, 55, 0.4);
}

.social-icon.linkedin:hover {
    background: #0077b5 !important;
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.4);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d) !important;
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
}

/* Animation de pulsation au chargement */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.social-icon {
    animation: pulse 2s ease-in-out infinite;
}

.social-icon:nth-child(2) {
    animation-delay: 0.2s;
}

.social-icon:nth-child(3) {
    animation-delay: 0.4s;
}

.social-icon:nth-child(4) {
    animation-delay: 0.6s;
}

.social-icon:nth-child(5) {
    animation-delay: 0.8s;
}

/* Adresse et contacts */
footer .small {
    line-height: 1.4;
}

/* Style pour les icônes d'adresse */
.adresse-icon {
    transition: all 0.3s ease;
    margin-right: 8px;
}

.adresse-icon:hover {
    transform: scale(1.2);
    color: #4dabf7;
}

/* Animation pour le formulaire newsletter */
.newsletter-form .form-control {
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

.newsletter-form .form-control:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-color: #0d6efd;
}

.newsletter-form .btn {
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
}

/* Animation d'apparition pour les sections */
.footer-section {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Délais d'animation pour chaque section */
.col-md-3.col-lg-3.col-xl-3 {
    animation-delay: 0.1s;
}

.col-md-2.col-lg-2.col-xl-2 {
    animation-delay: 0.2s;
}

.col-md-4.col-lg-3.col-xl-3 {
    animation-delay: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-logo {
        max-height: 70px;
    }
    
    .social-icon {
        font-size: 14px;
        width: 32px;
        height: 32px;
        margin: 0 3px;
    }
    
    footer .container > .row {
        text-align: center;
    }
    
    .footer-title {
        margin-top: 1.5rem;
    }
    
    footer.container-footer,
    footer.container-footer p,
    footer.container-footer a.footer-link,
    footer.container-footer .small,
    footer.container-footer .copyright-text,
    footer.container-footer .newsletter-section p {
        font-size: 0.85rem !important;
    }
    
    .social-icons-section {
        margin-top: 0.3rem;
        margin-bottom: 0.8rem;
    }
}

/* Ligne de séparation */
footer hr {
    border-color: rgba(255,255,255,0.3);
    margin: 2rem 0 1rem 0;
}

/* Style pour le bouton de la newsletter */
#button-newsletter {
    background-color: #0d6efd;
    border-color: #0d6efd;
    transition: all 0.3s ease;
}

#button-newsletter:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-2px);
}

/* Icônes Font Awesome */
footer .fas,
footer .fab {
    font-size: 0.9rem;
}






