body {
    margin: 0;
    min-height: 100vh;
    font-family: Georgia, serif;
    background: #1f3a2d;
    color: #d4b24a;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* ==========================================================
   2. TITRES
   ========================================================== */
h1 {
    font-family: Riesling, serif;
    font-size: 55px;
    color: #d4b24a;
    
    /* MODIFICATIONS ICI */
    text-align: left;         /* Aligne le texte à gauche */
    margin-left: -95px;        /* Ajoute un léger décalage par rapport au bord */
    
    margin-top: 20px;
    margin-bottom: 40px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}, .titre-projets {
    font-family: Riesling, serif; /* Si Riesling n'est pas là, Georgia prendra le relais */
    font-size: 55px;
    color: #d4b24a;
    margin-left: -40px; /* Le fameux décalage vers la gauche */
    margin-top: 0px;
    margin-bottom: 40px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

/* La grille Flexbox propre */
.galerie {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.item {
    width: 150px; /* Largeur fixe pour alignement parfait */
    text-align: center;
}

.galerie img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 2px solid #d4b24a;
    border-radius: 5px;
    cursor: pointer;
}

.item p { font-size: 12px; margin-top: 5px; }

/* Menu bas */
.menu-bas {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #d4b24a;
}

.menu-bas a { color: #d4b24a; text-decoration: none; font-size: 16px; }

/* Zoom */
#zoom-box {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
#zoom-box img { max-width: 90%; max-height: 90%; border: 3px solid #d4b24a; }