/* --- Import des polices --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600&family=Inter:wght@400&display=swap');

/* --- Reset / body --- */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
}

/* --- Titre --- */
h1 {
    font-family: 'Cormorant Garamond', serif;
    text-align: center;
    font-size: 3rem;       /* plus grand et élégant */
    margin: 30px 0;
    letter-spacing: 1px;
}

/* --- Galerie Masonry --- */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    padding: 20px;
    grid-auto-rows: 200px; /* base pour JS */
}

/* --- Conteneur d'image --- */
.gallery div {
    position: relative;
}

/* --- Images --- */
.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* garde les proportions et crop si nécessaire */
    display: block;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

/* --- Micro-zoom au survol --- */
.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255,255,255,0.4);
}

/* --- Lightbox --- */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    z-index: 1000;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 50px rgba(255,255,255,0.5);
    border-radius: 10px;
}
