/* --- RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    margin: 0;
    padding-top: 80px;
    background-color: #fff;
    color: #222;
}

  .page-container {
            max-width: 1200px;
            width: 100%;
            margin: 50px auto;
            padding: 0 20px;
            flex: 1;
        }
/* --- SECTION PRINCIPALE --- */
.about-section {
 margin-bottom: 0;
    padding-bottom: 20px; /* Ajustez si nécessaire */    max-width: 1200px;
    text-align: center;
}

/* TITRE */
.title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
}

/* CONTENEUR FLEXIBLE */
.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* TEXTE */
.about-text {
    flex: 1;
    max-width: 550px;
    text-align: left;
}

.about-text h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #000;
}

.about-text p {
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
}

/* IMAGE */
.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: scale(0.95);
    transition: transform 0.4s ease-in-out;
}

.about-image img:hover {
    transform: scale(1);
}

/* --- ANIMATIONS --- */
.hidden-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1s ease-in-out;
}

.hidden-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 1s ease-in-out;
}

.show {
    opacity: 1;
    transform: translateX(0);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .about-text {
        text-align: center;
    }
    .about-image img {
        max-width: 80%;
    }
}

.team-section {
  padding: 60px 20px;
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
}

.team-header h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #777;
}

.team-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 10px 0;
}

.team-header p {
  color: #555;
  margin-bottom: 40px;
}

/* Carrousel */
.team-carousel {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

/* Carte membre */
.team-member {
  min-width: 280px;
  max-width: 300px;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  scroll-snap-align: start;
  transition: transform 0.3s ease, opacity 0.6s;
  opacity: 0;             /* cachée avant animation */
  transform: translateY(30px);
}

.team-member.show {
  opacity: 1;
  transform: translateY(0);
}

/* Avatar rond */
.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
  display: block;
}

/* Texte */
.team-member h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-member span {
  font-size: 0.9rem;
  color: #777;
  display: block;
  margin-bottom: 10px;
}

.team-member p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Réseaux sociaux */
.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  font-size: 1.2rem;
  color: #333;
  transition: color 0.3s;
}

.socials a:hover {
  color: #0077b5; /* linkedin bleu par ex */
}

/* Responsive */
@media(max-width: 768px) {
  .team-carousel {
    gap: 15px;
  }
  .team-member {
    min-width: 240px;
  }
}

        
        .team-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            position: relative;
        }
        
        /* En-tête */
        .team-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        .team-header h4 {
            font-size: 1.1rem;
            color: #3498db;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
            font-weight: 600;
        }
        
        .team-header h2 {
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .team-header p {
            font-size: 1.1rem;
            color: #7f8c8d;
            line-height: 1.6;
        }
        
        /* Carrousel d'équipe */
        .team-carousel {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 30px 0;
            gap: 30px;
            margin-bottom: 80px;
        }
        
        .team-carousel::-webkit-scrollbar {
            display: none;
        }
        
        .team-member {
            flex: 0 0 auto;
            width: 320px;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            scroll-snap-align: start;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            opacity: 1;
            transform: translateY(50px);
            transition: opacity 0.6s ease, transform 0.6s ease;
            display: flex;
            flex-direction: column;
        }
        
        .team-member.show {
            opacity: 1;
            transform: translateY(0);
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
        }
        
        .avatar {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
        }
        
        .team-member-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .team-member h3 {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .team-member span {
            color: #3498db;
            font-weight: 600;
            margin-bottom: 15px;
            display: block;
            font-size: 1rem;
        }
        
        .team-member p {
            color: #7f8c8d;
            font-size: 0.95rem;
            margin-bottom: 20px;
            line-height: 1.6;
            flex-grow: 1;
        }
        
        .socials {
            display: flex;
            gap: 15px;
        }
        
        .socials a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #f4f7fb;
            border-radius: 50%;
            color: #3498db;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .socials a:hover {
            background: #3498db;
            color: white;
            transform: translateY(-3px);
        }
        
        /* Section Recrutement */
        .recrutement {
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            border-radius: 16px;
            padding: 40px;
            text-align: center;
            color: white;
            margin-top: 40px;
        }
        
        .recrutement h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .recrutement p {
            font-size: 1.1rem;
            margin-bottom: 25px;
            opacity: 0.9;
        }
        
        .btn {
            display: inline-block;
            background: white;
            color: #3498db;
            padding: 14px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .team-header {
                margin-bottom: 40px;
            }
            
            .team-header h2 {
                font-size: 2.4rem;
            }
        }
        
        @media (max-width: 768px) {
            .team-section {
                padding: 40px 20px;
            }
            
            .team-header {
                margin-bottom: 30px;
            }
            
            .team-header h2 {
                font-size: 2rem;
            }
            
            .team-member {
                width: 280px;
            }
            
            .avatar {
                height: 240px;
            }
            
            .recrutement {
                padding: 30px 20px;
            }
            
            .recrutement h3 {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .team-header {
                padding: 0 10px;
            }
            
            .team-header h2 {
                font-size: 1.8rem;
            }
            
            .team-header p {
                font-size: 1rem;
            }
            
            .team-member {
                width: 260px;
            }
            
            .team-member-content {
                padding: 20px;
            }
            
            .recrutement {
                padding: 25px 15px;
            }
            
            .btn {
                padding: 12px 25px;
            }
        }
.blockchain-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 20px;
    background-color: #fff;
    color: #222;
    gap: 40px; /* espace entre texte et image */
    max-width: 1200px;   /* limite la largeur */
    margin: 0 auto;      /* centre la section */
}

/* Contenu texte */
.content {
    flex: 1;
    max-width: 600px;
}

h1 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #111;
}

.description {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

/* Features */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.feature {
    flex: 1;
    min-width: 200px;
}

.feature h3 {
    font-size: 18px;
    color: #111;
    margin-bottom: 6px;
}

.feature p {
    font-size: 15px;
    color: #333;
}

/* Image */
.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    /* retiré le zoom */
    transition: none;
}

.image-container img:hover {
    transform: none; /* plus de zoom au hover */
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .blockchain-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 30px;
    }

    .features {
        justify-content: center;
    }

    .image-container img {
        max-width: 300px;
    }
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 22px;
    }

    .description {
        font-size: 14px;
    }

    .feature h3 {
        font-size: 16px;
    }

    .feature p {
        font-size: 13px;
    }
}

/* Conteneur global pour max-width */
.container {
    max-width: 1200px;
    margin: 0 auto; /* centre sur la page */
    padding: 0 15px;
}

