/* Style général pour le corps */
body {
    margin: 0;
    padding: 1000;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Arial', sans-serif;
}

/* ======= HEADER STYLÉ ======= */
header {
    background: linear-gradient(135deg, #2c3e50, #3b2319);
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ======= CONTAINER HEADER ======= */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 100 auto;
}

/* ======= LOGO ======= */
.logo img {
    height: 50px;
    border-radius: 50px;
    transition: transform 0.3s ease-in-out;
}

.logo img:hover {
    transform: scale(1.1);
}

/* ======= NAVIGATION ======= */
nav {
    display: flex;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    padding: 8px 15px;
    transition: all 0.3s ease-in-out;
}

/* Effet souligné */
.nav-links a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #1abc9c;
    transition: width 0.3s;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #1abc9c;
}

/* ======= MENU BURGER (Caché sur grand écran) ======= */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}


/* Formulaire */
form {
    max-width: 500px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

input, select, button {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

/* Boutons */
button {
    background-color: #00bf63;
    color: white;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #00bf63;
    transform: scale(1.05);
}

button:active {
    transform: scale(0.95);
}

/* Menu (position des boutons dans une colonne) */
.menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-left: 50px;
}

/* Boutons dans le menu */
.menu button {
    background: linear-gradient(90deg, #00bf63, #00bf10
    f
    20);
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    margin: 10px 0;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s ease;
}

.menu button:hover {
    transform: translateX(10px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

.menu button:active {
    transform: scale(0.95);
}

/* Overlay semi-transparent */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* ======= NAVIGATION ======= */
nav {
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    padding: 8px 15px;
    transition: all 0.3s ease-in-out;
}

/* Effet souligné au survol */
nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #00bf63;
    transition: width 0.3s;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #00bf63;
}

/* ======= BOUTON PANIER ======= */
nav a i {
    transition: transform 0.3s ease-in-out;
}

nav a:hover i {
    transform: scale(1.2);
}

/* ======= MENU BURGER POUR MOBILE ======= */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.menu-toggle:hover {
    transform: rotate(90deg);
}

/* ======= RESPONSIVE DESIGN ======= */
@media screen and (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        background: #00bf63;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        text-align: center;
        padding: 15px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    }

    nav.active {
        display: flex;
        animation: slideDown 0.3s ease-in-out;
    }

    .menu-toggle {
        display: block;
    }
}

/* ======= ANIMATION DU MENU ======= */
@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* Animation d'apparition pour le menu */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu {
    animation: fadeIn 1s ease-in-out;
}

/* Styles pour les messages */
.message-container {
    margin-bottom: 20px; /* Espace entre les messages et le formulaire */
    max-width: 600px; /* Largeur maximale pour les messages */
}

.message {
    margin: 5px 0; /* Espace entre les messages */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    color: #333;
}

.collaborator-container {
    display: flex;
    flex-wrap: wrap; /* Permet aux cartes de passer à la ligne si nécessaire */
    justify-content: center; /* Centre les cartes horizontalement */
    padding: 2rem; /* Espacement autour du conteneur */
}

/* Carte des collaborateurs */
.collaborator-card {
    background: white; /* Fond blanc pour les cartes */
    border-radius: 8px; /* Coins arrondis */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Ombre légère */
    margin: 1rem; /* Espacement entre les cartes */
    padding: 1.5rem; /* Espacement interne */
    text-align: center; /* Centre le texte */
    width: 250px; /* Largeur fixe pour les cartes */
    transition: transform 0.3s; /* Transition pour l'effet de survol */
}

/* Effet de survol sur les cartes */
.collaborator-card:hover {
    transform: translateY(-5px); /* Légère élévation au survol */
}

/* Image du collaborateur */
.collaborator-card img {
    width: 100%; /* Prend toute la largeur de la carte */
    height: auto; /* Garde les proportions de l'image */
    border-radius: 8px; /* Coins arrondis pour l'image */
}

/* Titre du collaborateur */
.collaborator-card h2 {
    margin: 1rem 0 0.5rem; /* Espacement autour du titre */
    font-size: 1.5rem; /* Taille de la police */
    color: #333; /* Couleur du texte */
}

/* Fonction du collaborateur */
.collaborator-card p {
    margin: 0; /* Supprime les marges par défaut */
    color: #666; /* Couleur du texte pour la fonction */
    font-size: 1rem; /* Taille de la police */
}

/* Responsive design */
@media (max-width: 768px) {
    .collaborator-card {
        width: 90%; /* Prend 90% de la largeur sur mobile */
    }
}

@media screen and (max-width: 768px) {
    /* Empile les éléments affichés à gauche */
    .menu {
        flex-direction: column;
        align-items: center; /* Centre horizontalement sur mobile */
        margin: 0;
        padding: 20px;
    }

    .menu button {
        width: 90%; /* Occupe une grande partie de l'écran */
        margin: 10px auto; /* Centrer les boutons */
    }

    body {
        justify-content: center; /* Aligne tout au centre de l'écran */
        align-items: flex-start; /* Place les éléments en haut sur mobile */
        padding-top: 20px; /* Ajoute de l'espace en haut */
    }

    header {
        display: none; /* Masque le texte sur les écrans de petite largeur */
    }
}

/* Ajustement du header */
.header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

/* Cacher la navigation sur mobile */
.nav-links {
    display: none;
    flex-direction: column;
    background: #00bf63;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

/* Afficher le menu lorsqu'il est actif */
.nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease-in-out;
}

/* Menu burger affiché */
.menu-toggle {
    display: block;
}


/* ======= ANIMATION DU MENU ======= */
@keyframes slideDown {
from {
    transform: translateY(-20px);
    opacity: 0;
}
to {
    transform: translateY(0);
    opacity: 1;
}
}