/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Header / Navigation */
header {
    background: #003366;
    padding: 15px 0;
}

.menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.menu a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

.menu a:hover {
    color: #ffcc00;
}

/* Titre */
h1 {
    text-align: center;
    margin: 30px 0;
    color: #003366;
}

/* Galerie */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding-bottom: 40px;
}

/* Images */
.gallery img {
    width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: 0.3s;
}

/* Hover effet */
.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .gallery img {
        width: 90%;
        height: auto;
    }

    .menu {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}
