/* GLOBAL */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #ffd8b0, #ffb347, #ff7e00); /* Orange pastel dégradé */
    color: white;
}


/* HEADER + MENU */
.hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.2); /* Garder la transparence */
    backdrop-filter: blur(6px); /* Optionnel : effet flou sur fond */
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    width: 100%;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: #ff8800;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    vertical-align: middle;
    margin-right: 10px;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding-right: 50px;
}

.menu a {
    text-decoration: none;
    color: #ff8800;
    font-weight: bold;
    font-size: 18px;
}

.menu a:hover {
    color: #ffd3a6;
}

/* IMAGE EN HAUT */
.image-entreprise {
    width: 100%;
    height: auto;
    margin-top: 0;
}

/* CONTENU */
main {
    padding-top: 120px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

/* BLOCS GÉNÉRAUX */
.title-box {
    background: rgba(255, 255, 255, 0.3);
    padding: 20px;
    margin: 40px 0 20px;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.place-entreprise {
    background: rgba(255, 182, 219, 0.4);
    border-radius: 15px;
    padding: 25px;
    margin: 20px auto;
    max-width: 900px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
}

/* BULLES MISSIONS / COMPÉTENCES */
.missions,
.competences {
    background: rgba(255, 182, 219, 0.4);
    border-radius: 15px;
    padding: 25px;
    margin: 30px auto;
    max-width: 650px;
    text-align: center;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
}

.competences ul,
.mission-bloc {
    text-align: left;
    display: inline-block;
}

/* OUTILS */
.tools-section {
    margin: 60px 0;
    text-align: center;
}

.tools-section h2 {
    margin-bottom: 20px;
}

.tool-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.tool-card {
    background: rgba(255, 182, 219, 0.4);
    width: 180px;
    height: 180px;
    border-radius: 20px;
    padding: 15px;
    text-align: center;
    color: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.tool-card:hover {
    transform: scale(1.05);
    box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.4);
}

/* GALERIE IMAGE AVEC ZOOM */
.gallery-section {
    margin-top: 50px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.gallery img {
    width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery img:active {
    transform: scale(1.7);
    z-index: 1000;
    position: relative;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .menu ul {
        flex-direction: column;
        padding-right: 0;
        gap: 15px;
    }

    .tool-card {
        width: 140px;
        height: 140px;
    }

    .tool-card img {
        width: 50px;
        height: 50px;
    }

    .gallery img {
        width: 90%;
    }

    .missions,
    .competences {
        width: 90%;
    }
}
