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

/* Navigation */
nav {
    background: #0a3d2e; /* vert foncé */
    color: white;
    padding: 20px 30px;
    text-align: center;
    font-size: 20px;
    letter-spacing: 1px;
}

/* Bio */
.bio {
    background: white;
    padding: 40px;
    max-width: 1000px;
    margin: 40px auto;
    line-height: 1.9;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.bio h1 {
    color: #0a3d2e;
    text-align: center;
    margin-bottom: 25px;
}

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

/* Vitrine images */
figure {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

figure:hover {
    transform: scale(1.07);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

figure img {
    width: 100%;
    height: 380px; /* images plus grandes */
    object-fit: cover;
    border-radius: 12px;
}

figcaption {
    margin-top: 15px;
    font-weight: bold;
    font-size: 18px;
    color: #0a3d2e;
}

/* Tableau */
table {
    width: 95%;
    margin: 50px auto;
    background: white;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

th {
    background: #0a3d2e;
    color: white;
}

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

/* Footer */
footer {
    background: #0a3d2e;
    color: white;
    text-align: center;
    padding: 18px;
    font-size: 15px;
}

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

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

    figure img {
        height: 260px; /* toujours grande mais adaptée mobile */
    }

    figcaption {
        font-size: 16px;
    }

    table {
        font-size: 14px;
    }
}