/* Base */
body {
    font-family: Verdana, sans-serif;
    margin: 0;
    background: #f2f2f2;
    color: #222;
}

/* Navigation */
nav {
    background: #003366;
    color: white;
    padding: 15px 30px;
    text-align: center;
}

/* Bio */
.bio {
    background: white;
    padding: 35px;
    max-width: 900px;
    margin: 30px auto;
    line-height: 1.8;
}

.bio h1 {
    color: #003366;
    text-align: center;
}

/* Galerie vitrine */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 30px;
    max-width: 1200px;
    margin: auto;
}

/* Vitrine images */
figure {
    background: white;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

figure:hover {
    transform: scale(1.05);
}

figure img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
}

figcaption {
    margin-top: 10px;
    font-weight: bold;
}

/* Tableau responsive */
table {
    width: 95%;
    margin: 40px auto;
    background: white;
    border-collapse: collapse;
    overflow-x: auto;
}

td, th {
    border: 1px solid #000;
    padding: 10px;
    text-align: center;
}

/* Footer */
footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 15px;
}

/* 📱 Responsive mobile */
@media (max-width: 600px) {
    nav {
        padding: 12px;
        font-size: 14px;
    }

    .bio {
        padding: 20px;
        margin: 15px;
    }

    figure img {
        height: 220px;
    }

    table {
        font-size: 14px;
    }
}