/* styles.css */

/* Importation de la police */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Lobster&display=swap');

:root{
    --bs-green: #35A965;
    --bs-orange: #E78319;
    --bs-pink: #E3105A;   
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray-500: #e5e5e5;
    --bs-gray: #3b3b3b;
}


/* Réinitialisation CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
   
} 
body {
    font-size: 20px;
    line-height: 2.5;
    margin: 0;
    padding: 0;
  }
  @supports (-webkit-touch-callout: none) {
    body {
      overflow-x: hidden;
    }
  }
  
  @media only screen and (max-width: 768px) {
    body {
      font-size: 14px;
      line-height: 2;
    }
  }
  
  @media only screen and (max-width: 480px) {
    body {
      font-size: 15px;
      line-height: 1.8;
    }
  }

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bs-gren);
    scroll-behavior: smooth;
    z-index: 9999;
    position: sticky;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #333;
    color: #fff;
    
}

.coop-name {
    font-size: 3.5rem;
    z-index: 9999;
    text-shadow: 2px 5px 5px rgba(0, 0, 0, 0.7);
    font-style: oblique;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
    z-index: 1002;
}

.coop-name1 {
   display: none;
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 15px;
    padding: 5px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s;
    text-shadow: 2px 5px 5px rgba(0, 0, 0, 0.7);
}

.nav-links a:hover {
    color: var(--bs-orange);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 20px;
}

.hamburger span {
    height: 3px;
    width: 20px;
    background: #fff;
    margin-bottom: 4px;
    margin-right: 10px;
    border-radius: 5px;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 400px;
    height: 70%;
    max-height: 900px;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    z-index: 1004;
    transition: opacity 0.3s;
    backdrop-filter: blur(25px); /* Effet de flou pour le fond */
    box-shadow: 0 5px 25px 5px rgba(255, 255, 255, 0.3);
    border-radius: 20px 20px 20px 20px; /* Bords arrondis */
    border: 2px solid rgba(255, 255, 255, 0.9); /* Bordure légèrement visible */

  }
  
  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: aliceblue;
  }




  .mobile-nav ul li a{
   color: aliceblue;
   z-index: 1005;
 
  }
#background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    z-index: 1003;
  }
  
.close-btn {
    position: absolute;
    top: -20px;
    right: 15px;
    font-size: 3.5rem;
    cursor: pointer;
    color: red;
}

  /* Animation pour le logo */
  .logo {
     
     width: 10%;
     height: 10%;
     animation: spin 8s linear infinite;
     box-shadow: 0 0.5px 1px rgba(0, 0, 0, 0.1);
     z-index: 1002;
     }
            
     @keyframes spin {
     0% { transform: rotateY(0deg); }
     50% { transform: rotateY(360deg); }
    100% { transform: rotateY(360deg); }
            }


.mobile-nav-links {
    list-style: none;
    
}

.mobile-nav-links li {
    margin: 10px 0;
}

.mobile-nav-links a {
    text-decoration: none;
    color: #000000;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.mobile-nav-links a:hover {
    color:  #E78319;
}

@media (max-width: 1108px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    
    .about-cont{
        
        padding: 30px;
       
    }
   
    .name {
        font-size: 100%;
        
    }
    
}

@media (max-width: 768px) {

    .logo {
        width: 14%;
        height: 75%;
        z-index: 1002;
        }
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
 
  
    .coop-name {
        display: none;
        font-size: 1.5rem;
        font-weight: 900;
        margin-right: 30px;
        margin-left: 30px;
    }

    .coop-name1 {
        display: flex;
        font-size: 1.2rem;
        font-weight: 900;
        margin-right: 30px;
        margin-left: 30px;
        z-index: 1002;
        z-index: 9999;
        text-shadow: 2px 5px 5px rgba(0, 0, 0, 0.7);
        font-style: oblique;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        text-align: center;
        z-index: 1002;
    }
    .mobile-nav-links a:hover {
        color:  #E78319;
    }
    
    .name {
        font-size: 10%;
   
    }

}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .name {
        font-size: 100%;
        margin-left: 10px;
        z-index: 9999;
        text-shadow: 2px 5px 5px rgba(0, 0, 0, 0.7);
        font-family: 'Lobster', cursive;
    }
  
    .mobile-nav-links a:hover {
        color:  #E78319;
    }
    
   
  

}

@media (max-width: 600px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    
    
    .logo {
        width: 35%;
        height: 100%;
        z-index: 1002;
        }
  
  
    .mobile-nav-links a:hover {
        color: #f0a500;
    }


    
  
}

            .welcome-h1 {
                text-shadow: 1px 5px 1px rgba(0, 0, 0, 15); 
                font-size: 2.15rem;
                font-family: 'Lobster', cursive;
                color: var(--bs-white);
                margin-bottom: 20px;
                text-align: center;
            }
            
            .welcome-p {
                font-size: 100%;
                margin-bottom: 15px;
                text-shadow: px 6px px rgba(0, 0, 0, 15); 
            }
            
            .icons {
                display: flex;
                justify-content: center;
              
                align-items: center;
                gap: 0.3rem;
                margin: 1rem 0;
                
            }
            
            .icon {
                text-shadow: 5px 6px 1px rgba(0, 0, 0, 15);
            
                color: var(--bs-orange);
                animation: bounce 2s infinite;
                margin-top: 0px;
            }
            
            
            .icon:nth-child(2) {
                animation-delay: 0.2s;
            }
            
            .icon:nth-child(3) {
                animation-delay: 0.4s;
            }
            
            @keyframes bounce {
                0%, 100% {
                    transform: translateY(0);
                }
                50% {
                    transform: translateY(-15px);
                }
            }
            
        
/* Home Section */
.home-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bs-green);
    animation: gradientBackground 10s ease infinite;
    color: #ffffff;
    
}

  /* Animtext-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);ation de fond */
  @keyframes gradientBackground {
    0% {
    background-position: 0% 50%;
    }
    50% {
    background-position: 100% 50%;
    }
    100% {
    background-position: 0% 50%;
    }
    }





.background-container {
    position: relative;
    max-height: 100%;
    width: 100%;
    background-image: url(assets/istockphoto-1210772424-1024x1024.jpg);
    background-size: cover;
    background-position: center;

}

.background-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Couleur noire avec une opacité de 50% */
    z-index: 1;
}

.content {
    position: relative;
    z-index: 300;
    color: white;
    text-align: center;
    padding: 20px;
}



.hero-button {
    padding: 15px 10px;
    font-weight: bolder;
    background-color: var(--bs-pink);
    color: white;
    border: var(--bs-black);
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    animation: pulse 2s infinite;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    left: 0px;
}


#hero-button{
    right: 10px;
    bottom: 7px;
    
}

#hero-button3{
    left:  500px;
    
}
#hero-button5{
    left: 545px;
    
    top: 50px;
}



.hero-button i {
    margin-right: 10px;
}

    /* Animation pour le survol des boutons */
    .hero-button:hover {
        animation: jello-horizontal 1.9s ease;
        }
        
        @keyframes jello-horizontal {
        0%, to {
        transform: scale3d(1, 1, 1);
        }
        30% {
        transform: scale3d(1.25, 0.75, 1);
        }
        40% {
        transform: scale3d(0.75, 1.25, 1);
        }
        50% {
        transform: scale3d(1.15, 0.85, 1);
        }
        65% {
        transform: scale3d(0.95, 1.05, 1);
        }
        75% {
        transform: scale3d(1.05, 0.95, 1);
        }
        }

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--bs-pink);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 30px rgba(0, 123, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

.home-image {
    max-width: 60%;
   
    animation: slideInRight 1s ease-in-out;
}

.home-image img {
    width: 100%;
    height: 200%;
    border-radius: 7px;
    box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.3);
}

/* About Section */



.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 15); 
   color: var(--bs-black);
}
.about-section  {
 background-color: var(--bs-green);
 width: 100%; 
}


.about-section h2::after {
    content: '';
    width: 150px;
    height: 5px;
    background: var(--bs-orange);
    display: block;
    margin: 10px auto 0;
}


.about-section {
    background-color: var(--bs-green);
    padding: 10px 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
   
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, #35A965);
    transform: translateX(-50%) skewY(-10deg);
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    
}

.about-cont{
    background-color: var(--bs-gray-500);
    padding: 7%;
    margin: 0px;
    border-radius: 80px 0px 80px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 5);
}




.about-content h1 {
    font-size: 1.5rem;
    margin-bottom: 50px;
    margin-top: 10px;
    color: #000000;
    animation: fadeInDown 0.1s ease-in-out;
    text-shadow: 0 2px 1px rgba(0, 0, 0, 15); 
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-in-out;

}



.about-content .btn:hover {
    background-color: #004d40;
}



@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
    animation: fadeIn 2s ease-in-out;
}

.feature {
    flex: 1 1 300px;
    padding: 20px;
    margin: 10px;
    background: var(--bs-gray-500);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-color: var(--bs-pink); 
    border-width: 1.5px;    
    border-style: groove; 
}


.feature i {
    font-size: 4em;
    color: var(--bs-orange);
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 2em;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1.3em;
    color: #666;
}

.testimonial-section{
    padding: 50px 70px;
    background: var(--bs-green);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    height: 700px;
}



.testimonial-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 80px;
   
    position: relative;
}

.testimonial-section h2::after {
    content: '';
    width: 150px;
    height: 5px;
    background: var(--bs-pink);
    display: block;
    margin: 10px auto 0;
}
.testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeIn 2s ease-in-out;
}

.testimonial {
    flex: 1 1 300px;
    padding: 20px;
    margin: 15px;
    background: #fff;
    color: #333;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
    text-align: center;
}

.testimonial p {
    font-size: 1em;
    color: var(--bs-gray);
    margin-bottom: 20px;
}

.testimonial h4 {
    font-size: 1.2em;
    margin: 0;
}

@media (min-width: 768px) {
    .about-content {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
     
   
    .about-content div {
        flex: 1;
    }

    .about-content img {
        margin-top: 0;
        margin-left: 30px;
    }
}

@media (max-width: 767px) {
    .about-content {
        flex-direction: column;
    }
    .welcome-h1 {
        font-size: 1.75rem; 
        margin-bottom: 35px;
       
    }
  
}




 /* Services Section */
 .services-section {
    
    background: var(--bs-gray-500);
}

.section-title h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 0px;
    position: relative;
}

.section-title h2::after {
    content: '';
    width: 150px;
    height: 5px;
    background: var(--bs-orange);
    display: block;
    margin: 5px auto 0;
}

.services-section {
    background: var(--bs-green);
    padding: 30px 1px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 100%;
    background: var(--bs-green);
    transform: translateX(-50%) skewY(-10deg);
    z-index: 1;
}

.services-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
    
}


.services-content p {
    font-size: 1.2em;
    line-height: 1.4;
    margin-bottom: 0px;
    animation: fadeInUp 1s ease-in-out;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeIn 2s ease-in-out;

}

.service {
    flex: 1 1 300px;
    padding: 20px;
    margin: 10px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 1);
    text-align: center;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.6s ease forwards;
    border-color: var(--bs-pink); 
    border-width: 1.5px;    
    border-style: groove; 
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service i {
    font-size: 3em;
    color: var(--bs-orange);
    margin-bottom: 15px;
}

.service h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.service p {
    font-size: 1em;
    color: #666;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .services-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .service {
        animation-delay: 0.2s;
    }
    .service:nth-child(2n) {
        animation-delay: 0.4s;
    }
    .service:nth-child(3n) {
        animation-delay: 0.6s;
    }
    .service:nth-child(4n) {
        animation-delay: 0.8s;
    }
}

@media (max-width: 767px) {
    .services-content {
        flex-direction: column;
    }


  
}



/* ducts Section */
.products-section {
   padding: 20px 20px;
    background: var(--bs-green);
    margin-bottom: 0px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    
}

.section-title h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    color: var(--bs-black);
    text-transform: uppercase;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    
}

.product-item {
    background: var(--bs-gray-500);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: var(--bs-black);
    transition: transform 0.3s, box-shadow 0.7s;
    border-radius: 35px 0px 35px 0px;
    border-color: var(--bs-pink); 
    border-width: 4px;    
    border-style: groove; 
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 255);
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 10px;
    border-radius: 35px 0px 35px 0px;
    border-color: rgba(0, 0, 0, 1); 
    border-width: 3px;    
    border-style: groove; 
}

.product-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.product-item p {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }

    .products-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
        gap: 20px;
        
    }
    .product-item {
        padding: 15px;
    }

    .product-item h3 {
        font-size: 20px;
    }

    .product-item p {
        font-size: 14px;
    }

    
}

/* Animations */
.product-item {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}






/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(50%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

   
    .home-section {
        flex-direction: column;
        text-align: center;
    }

    .home-content {
        max-width: 100%;
    }

    .home-image {
        display: none;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image,
    .about-text {
        max-width: 100%;
    }
    

}

.team-body{
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.team-section {
    text-align: center;
    padding: 50px 20px;
    background-color: var(--bs-green);
    color: #530e0e;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.team-section h1 {
    font-size: 2em;
    margin-bottom: 30px;
    position: relative;
    z-index: 9999;
}
.team-member {
    margin: 20px;
    display: inline-block;
    width: 25%;
    position: relative;
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
    border-radius: 40%;
}
.team-member:hover {
    transform: scale(0.05) rotate(50deg);
}
.team-member img {
    width: 75%;
    height: 10%;
    border-radius: 50px;
    
}
.team-member h3 {
    margin: 5px 0 5px;
    font-size: 1.4em;
    color: #fff;
}
.team-member p {
    font-size: 0.6em;
    color: #ddd;
    bottom: 50px;
}
.team-member .quote {
    font-style: italic;
    
    color: #600c0c;
}
.asymmetry {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--bs-orange);
    z-index: 0;
    animation: float 10s ease-in-out infinite;
}
.asymmetry.one {
    top: 50%;
    left: 10%;
}
.asymmetry.two {
    top: 40%;
    right: 15%;
}
.asymmetry.three {
    bottom: 10%;
    left: 40%;
}
@keyframes float {
    0%, 100% {
        transform: translateY(10px);
    }
    50% {
        transform: translateY(-100px);
    }
}
@media (max-width: 768px) {
    .team-member {
        width: 90%;
        margin: 30px 0;
    }
    .asymmetry {
        width: 100px;
        height: 100px;
    }
   
}

#textDefile{
    color: var(--bs-green);
    font-size: 30%;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    margin-top: 10px;
    }
   

    footer {
        background-color: #333;
        color: #ffffff;
        padding: 1px 10px;
        position: sticky;
    }
    
    .footer-container {
        max-width: 1000px;
        margin: 0 auto;
        text-align: center;
        
    }
    
    .footer-title {
        font-size: 0.6em;
        margin: 20px;
        padding: 10px;
        letter-spacing: px;
        justify-content: center;
        text-align: center;
       font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }
    
    .footer-sections {
        display: flex;
        flex-direction: column;
        gap: 1px;
    }
    
    .footer-section {
        background-color: #333;
        padding: 1px;
      
    }


    
    .footer-section h3 {
        margin-bottom: 10px;
        font-size: 10px;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }
    
    /* Styles pour les écrans larges */
    @media (min-width: 768px) {
        .footer-sections {
            flex-direction: row;
            justify-content: space-between;
        }
        
        .footer-section {
            flex: 1;
        }
        
        .footer-section:not(:last-child) {
            margin-right: 20px;
        }
       
        
    }
  


  .copyright{
    display: flex;
    align-items:  center;
    text-align: center;
    flex-direction: column;
    font-size: 0.7rem;
    justify-content: center;
    margin: 0;
    padding: 0;
   
  }

 

  /*styles css de A propos */
     /* Reset CSS */

.section {
    padding: 30px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: 35A965;
    
}

.container-presentation {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: 35A965;
}


.intro {
    font-size: 26px;
    margin-bottom: 10px;
    padding: 0 1%;
    background-color: var(--bs-green);
    padding: 5%;
    border-radius: 55px 0px 55px 10px;
}

.dropcap {
    font-size: 1.5em;
    font-family: 'Times New Roman', Times, serif;
    color: #000000;
}

.parallax {
    background: url(assets/istockphoto-1210772424-1024x1024.jpg) no-repeat center center fixed;
    background-size: cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.parallax1 {
    background: url(assets/istockphoto-1210772424-1024x1024.jpg) no-repeat center center fixed;
    background-size: cover;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  
    
}

.parallax1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.parallax::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.parallax1 .motivational {
    z-index: 1;
    text-align: center;
    margin: 2px 1vh;
    color: var(--bs-white);
    font-family: 'Lobster', cursive;
  
    font-size: 30px;
    color: rgb(255, 255, 255);
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 7);
}

.parallax .motivational h2 {
    font-size: 30px;
    color: rgb(255, 255, 255);
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    
}

.mission, .indicator-item, .profit-item {
    text-align: center;
    margin-bottom: 0px;
}

.mission i, .indicator-item i, .profit-item i {
    font-size: 2rem;
    color: #E78319;
    margin-bottom: 0px;
}
    
.missions, .indicators, .profit-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.mission, .indicator-item, .profit-item {
    flex: 1 1 calc(33.333% - 20px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 10px;
    background: #fff;
    border-radius:20px;
    margin: 10px;
    transition: transform 0.3s ease-in-out;
}

.mission:hover, .indicator-item:hover, .profit-item:hover {
    transform: translateY(-10px);
}

.mission-item img, .profit-item img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.mission-item:hover img, .profit-item:hover img {
    transform: scale(1.05);
}

.mission-item .text {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
}

.button-container {
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--bs-green);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.cta-button:hover {
    background: #2980b9;
    transform: translateY(-5px);
}




/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos][data-aos][data-aos-duration="1000"] {
    transition-duration: 1000ms;
}

[data-aos][data-aos][data-aos-easing="ease-in-out"] {
    transition-timing-function: ease-in-out;
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Add responsive styles */
@media (max-width: 768px) {
    .missions, .indicators, .profit-details {
        flex-direction: column;
    }

    .mission, .indicator-item, .profit-item {
        flex: 1 1 100%;
    }
  
}

/* Additional styling for modern look */
.header1 {
    background: #3498db;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header1 h1 {
    margin: 0;
    font-size: 80%;
}

.navbar1 {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 10px 0;
}

.navbar1 li {
    margin: 0 15px;
}

.navbar1 a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease-in-out;
}

.navbar1 a:hover {
    color: #2980b9;
}



/* Add more custom styles as needed */

/* Large sections for 1500 lines */
.section.large {
    padding: 100px 0;
    background: #fff;
}

.large-section-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.large-section-item {
    flex: 1 1 calc(50% - 20px);
    margin: 10px;
    padding: 20px;
    background: #3498db;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
}

.large-section-item:hover {
    transform: translateY(-10px);
}

.large-section-item h3 {
    margin-bottom: 10px;
}

.large-section-item p {
    margin-bottom: 0;
}

.large-section-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.large-section-item:hover img {
    transform: scale(1.05);
}

.large-section-item .content {
    padding: 20px;
    background: #fff;
    color: #333;
    border-radius: 8px;
}

@media (max-width: 1024px) {
    .large-section-item {
        flex: 1 1 100%;
    }
}

.large-button-container {
    text-align: center;
    margin-top: 40px;
}

.large-cta-button {
    display: inline-block;
    padding: 20px 40px;
    background: #2ecc71;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 20px;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.large-cta-button:hover {
    background: #27ae60;
    transform: translateY(-5px);
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.image-gallery-item {
    flex: 1 1 calc(33.333% - 20px);
    margin: 10px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
}

.image-gallery-item:hover {
    transform: translateY(-10px);
}

.image-gallery-item img {
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.image-gallery-item:hover img {
    transform: scale(1.05);
}

.image-gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.image-gallery-item:hover .overlay {
    opacity: 1;
}

.image-gallery-item .overlay h4 {
    font-size: 24px;
    margin: 0;
}


/* Additional sections to extend the CSS */
.featured-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.featured-content-item {
    flex: 1 1 calc(50% - 20px);
    margin: 10px;
    padding: 20px;
    background: #e74c3c;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
}

.featured-content-item:hover {
    transform: translateY(-10px);
}

.featured-content-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.featured-content-item:hover img {
    transform: scale(1.05);
}

.featured-content-item .content {
    padding: 20px;
    background: #fff;
    color: #333;
    border-radius: 8px;
}

@media (max-width: 1024px) {
    .featured-content-item {
        flex: 1 1 100%;
    }
}

.featured-button-container {
    text-align: center;
    margin-top: 40px;
}

.featured-cta-button {
    display: inline-block;
    padding: 20px 40px;
    background: #e67e22;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 20px;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.featured-cta-button:hover {
    background: #d35400;
    transform: translateY(-5px);
}

/* Styles pour des animations modernes */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideInFromLeft {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

@keyframes slideInFromRight {
    0% { transform: translateX(100%); }
    100% { transform: translateX(0); }
}

.animate-fade-in {
    animation: fadeIn 1s ease-in-out;
}

.animate-slide-in-left {
    animation: slideInFromLeft 1s ease-in-out;
}

.animate-slide-in-right {
    animation: slideInFromRight 1s ease-in-out;
}

/* Transition pour les boutons */
button, .btn {
    transition: background-color 0.3s, transform 0.3s;
}

button:hover, .btn:hover {
    background-color: #f3a047;
    transform: scale(1.05);
}

/* Styles des cartes d'information */
.card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

/* Effets de survol pour les images */
img {
    transition: transform 0.3s, filter 0.3s;
}

img:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* Typographie et espacement modernisés */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Amélioration de la mise en page */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}
  
    /* Style pour la barre de navigation défilante */
    nav1.scrolled {
        background-color: rgba(70, 39, 39, 0.8);
        transition: background-color 0.3s;
    }

    nav1 a {
        color: #fff;
        transition: color 0.3s;
    }

    nav1 a:hover {
        color: #f3a047;
    }








    /*style contact et dons */

    .body6 {
        font-family: 'Playfair Display', serif;
        background-color: var(--bs-green);
        padding: 50px 0;
      
        
    }

    .header6 {
       background-color: var(--bs-green);
        padding: 50px 0;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        text-shadow:  0 4px 8px rgba(0, 0, 0, 0.8);
        
    }

    .header6-title {
        margin: 0;
        font-size: 2em;
        animation: slide-in 1s ease-in-out;
        text-shadow:  0 4px 8px rgba(0, 0, 0, 0.8);
    }

    @keyframes slide-in {
        from {
            opacity: 0;
            transform: translateY(-100%);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .section6 {
       
       margin: 10%;
        background: #4d4444;
       
    }

    .container6 {
        max-width: 1200px;
        margin: 5px;
        padding: 0 00px;
       
    }

    .section6-heading {
        text-align: center;
       
    }

    .section6-heading h2 {
        font-size: 1.5rem;
        
        animation: fade-in 1.5s ease-in-out;
        text-shadow:  0 4px 8px rgba(0, 0, 0, 0.8);
    }
    h4 {
        font-size: 1.2rem;
        margin: 5px;
        animation: fade-in 1.5s ease-in-out;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-bottom: 1.8rem;
        line-height: 1.2;
        color: black;
    }
    h3 {
        font-size: 1rem;
        animation: fade-in 1.5s ease-in-out;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-bottom: 1rem;
        line-height: 1;
        color: black;
    }

    @keyframes fade-in {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    .contact-info, .donation-info, .team-info, .program-info, .contact-form, .legal-info {
        margin-bottom: 40px;
       margin: 15px;
        background: #e5e4e4;
        border: 10px solidrgb(0, 0, 0)d;
        border-radius: 5px;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
    }

    .contact-info:hover, .donation-info:hover, .team-info:hover, .program-info:hover, .contact-form:hover, .legal-info:hover {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transform: translateY(-5px);
    }

    .contact-info i, .donation-info i, .team-info i, .program-info i, .contact-form i, .legal-info i {
        font-size: 1.5em;
        margin-right: 20px;
        color: var(--bs-orange);
    }

    .info-title {
        display: flex;
        align-items: center;
        font-size: 2em;
        margin-bottom: 10px;
    }

    .info-content {
        font-size: 1.2em;
        color: #333;
    }

    .contact-form form {
        display: flex;
        flex-direction: column;
    }

    .contact-form input, .contact-form textarea {
        width: 100%;
        padding: 15px;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 5px;
        transition: box-shadow 0.3s;
    }

    .contact-form input:focus, .contact-form textarea:focus {
        box-shadow: 0 0 5px #35A965;
    }

    .contact-form button {
        padding: 15px 20px;
        border: none;
        background: #35A965;
        color: #fff;
        font-size: 1.2em;
        border-radius: 5px;
        cursor: pointer;
        transition: background 0.3s, transform 0.3s;
    }

    .contact-form button:hover {
        background: var(--bs-green);
        transform: scale(1.05);
    }

    .socials {
        
            font-size: 1.5rem;
            
            padding: 20px;
            transition: color 0.3s;    
    }
  .socials:hover {
            color: var(--bs-pink);
            }
            
    .socials a {
        margin: 0 1px;
        color: var(--bs-green);
        font-size: 1.7em;
        transition: color 0.3s;
        
    }

    .socials a:hover {
        color: var(--bs-pink);
        transform: scale(1.1);
    }

    @media (max-width: 768px) {
        .container6 {
            padding: 0 10px;
        }
        
        

        .info-title {
            font-size: 1.5em;
        }

        .info-content {
            font-size: 1em;
        }
        h4 {
            font-size: 0.8rem;
            margin: 0px;
            animation: fade-in 1.5s ease-in-out;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin-bottom: 1.8rem;
            line-height: 1.2;
            color: black;
        }
    }
 /* Styles du main */
 .main4 {
    flex: 1;
 background-color: var(--bs-green);
    
    display: flex;
    align-items: center; /* Centre le formulaire verticalement */
    justify-content: center; /* Centre le formulaire horizontalement */
    }
    
    /* Styles du formulaire */
    .form-container {
        margin: 10px;
      
        backdrop-filter: blur(50px); /* Effet de flou pour le fond */
        -webkit-backdrop-filter: blur(50px);
        border-radius: 20px;
        box-shadow: 0 0px 30px rgba(0, 0, 0, 5);
        border-radius: 150px 0px 150px 0px; /* Bords arrondis */
        border: 5px solid rgba(0, 0, 0, 0.3); /* Bordure légèrement visible */
        padding: 40px;
        max-width: 500px;
        width: 100%;
      
        
        }
        
        
        .form-group {
            
        position: relative;
        margin-bottom: 20px;
        }
        
        .form-control {
        width: calc(100% - 10px); /* Réduit la largeur pour faire de la place pour l'icône */
        border: 3px solid #ddd;
        border-radius: 10px;
        padding: 10px 20px 10px 40px; /* Padding gauche plus grand pour l'icône */
        font-size: 16px;
        background: transparent;
        }
        
        .form-control:focus {
        outline: none;
        border-color: var(--bs-pink);
        box-shadow: 0 0 10px #000000;
        }
        
        label {
        position: absolute;
        top: 10px;
        left: 50px; /* Décalage pour l'icône */
        pointer-events: none;
        transition: all 0.3s ease;
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
        
        }
        
        .form-control:focus + label,
        .form-control:not(:placeholder-shown) + label {
        top: -10px;
        left: 5px;
        font-size: 5px;
        
        }
        
        /* Styles des icônes */
        .form-group i {
        position: absolute;
        top: 11px;
        left: 15px;
        color: var(--bs-orange);
        transition: all 0.3s ease;
        
        }
    
        
        .btn {
           
        width: 50%;
        padding: 15px;
        margin: 5% 20%;
        top: 0;
        left: 150%;
        border: none;
        border-radius: 10px;
        background: var(--bs-pink);
        color: white;
        cursor: pointer;
        transition: background 0.3s ease;
        }
        
        .btn:hover {
        background: var(--bs-pink);
        }
        
        /* Animation pour les éléments du formulaire */
        @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
        }
        
        /* Appliquer l'animation fadeIn à tous les éléments du formulaire */
        .form-container * {
        animation: fadeIn 1s ease-in-out;
        }
        
        /* Animation pour le focus sur les champs de saisie */
        .form-control:focus {
        animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7); }
        10% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 7); }

        70% { box-shadow: 0 0 10px 10px rgba(158, 202, 237, 0); }
        100% { box-shadow: 0 0 0 0 rgba(158, 202, 237, 0); }
        }
        
        /* Animation pour le survol des boutons */
        .btn:hover {
            animation: jello-horizontal 1.2s ease;
            }
            
            @keyframes jello-horizontal {
            0%, to {
            transform: scale3d(1, 1, 1);
            }
            30% {
            transform: scale3d(1.25, 0.75, 1);
            }
            40% {
            transform: scale3d(0.75, 1.25, 1);
            }
            50% {
            transform: scale3d(1.15, 0.85, 1);
            }
            65% {
            transform: scale3d(0.95, 1.05, 1);
            }
            75% {
            transform: scale3d(1.05, 0.95, 1);
            }
            }
        
        /* Effet de flottement pour les labels lorsqu'ils sont actifs */
        .form-control:focus + label,
        .form-control:not(:placeholder-shown) + label {
        animation: floatLabel 0.7s ease forwards;
        }
        
        @keyframes floatLabel {
        from { top: 10px; font-size: 16px; color: var(--bs-gray); }
        to { top: -20px; font-size: 12px; color: var(--bs-gray); }
        }
        
        /* Ajouter un effet de transition pour les icônes lors du focus */
        .form-group i {
        transition: color 0.9s ease;
        }
        
      
        
        .text1{
          text-align: center;
          margin-top: 10px;
          margin-bottom: 40px;
          font-weight: 900;
          color: var(--bs-blue);
          
        }
        
        h1{
            display: block;
            font-size: 2em;
            font-weight: 900;
            color: var(--bs-gray);
            text-align: center;
        }
        
    /*fin main du conctact*/    


    