/* ==========================================================
   1. BASES ET FOND DE PAGE
   ========================================================== */
body {
    margin: 0;
    min-height: 100vh;
    font-family: Georgia, serif;
    background: #1f3a2d;
    color: #d4b24a;
}

.page {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* ==========================================================
   2. TITRES
   ========================================================== */
h1, .titre-projets {
    font-family: Riesling, serif; 
    font-size: 55px;
    color: #d4b24a;
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 40px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

h3, .titre-projet {
    color: #d4b24a; 
    font-family: Baskerville Old Face; 
    font-size: 25px;
    margin-left: 0; /* Aligné avec le texte */
    margin-top: 0;
    margin-bottom: 0px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}
/* ==========================================================
   2. PHOTOS
   ========================================================== */

.photo-presentation, .bloc-photo {
    width: 280px !important; /* Les photos ne prendront plus toute la place */
    flex-shrink: 0;         /* Elles ne s'écrasent pas */
}

.photo-presentation img, .photo-gauche {
    width: 100% !important;
    height: auto !important;
    border: 2px solid #d4b24a;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.photo-presentation img:hover {
    transform: scale(1.05); /* Petit effet au survol */
}

.legendphoto {
    font-family: "Comic Sans MS", cursive;
    font-size: 13px;
    margin-top: 5px;
    text-align: center;
}

/* ==========================================================
   5. NAVIGATION ET DÉCO
   ========================================================== */
.menu-bas {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(212, 178, 74, 0.3);
    padding: 40px 0;
}

.menu-bas a {
    color: #d4b24a;
    font-family: "Comic Sans MS", cursive;
    font-size: 18px;
    text-decoration: none;
}

.separateur {
    height: 1px;
    background: rgba(212, 178, 74, 0.2);
    margin: 40px auto;
    width: 80%;
}

/* Espacement des retours ligne */
br {
    content: "";
    display: block;
    margin-bottom: 5px;
}

/* ==========================================================
   6. MOBILE
   ========================================================== */
@media screen and (max-width: 950px) {
    .bloc-contenu {
        flex-direction: column;
        align-items: center;
    }
    .formulaire-contact, .galerie {
        width: 100%;
        max-width: 300px;
    }
}

img {
    cursor: zoom-in; /* Ça transforme la souris en petite loupe quand on survole l'image */
}