
/* TYPOGRAPHIE */
body {
    font-family: 'Libre Baskerville', serif;
    color: #2c2c2c;
}

/* TITRE PRINCIPAL */
h1 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    letter-spacing: 2px;
    border-bottom: 2px solid #c8b38e;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 30px;
    
    
}

/* CONTENEUR PRINCIPAL */
.container-stats {
    max-width: 1200px;
    margin: 40px auto;
    background: #fff;
    border: 1px solid #d6c7a1;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 40px;
    text-align: center;
}

/* CARTELS MUSÉE */
.info-box {
    background: #f8f5f0;
    border-left: 6px solid #a68b5b;
    padding: 15px 20px;
    margin: 20px auto;
    max-width: 600px;
    text-align: left;
    font-size: 17px;
    position: relative;
}

/* PETIT EFFET ÉTIQUETTE */
.info-box::before {
    content: "●";
    color: #a68b5b;
    margin-right: 10px;
}

/* TITRE SECTION */
.graph-box h2 {
    font-family: 'Cinzel', serif;
    margin-top: 30px;
}

/* GRAPHIQUE = OBJET EXPOSÉ */
canvas {
    width: 100% !important;
    max-width: 900px;
    margin: 40px auto;
    display: block;
    background: #ffffff;
    padding: 25px;
    border: 1px solid #d6c7a1;
    border-radius: 8px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.03);
}

/* EFFET CADRE GLOBAL */
.container-stats::before {
    content: "";
    display: block;
    height: 4px;
    background: linear-gradient(to right, #a68b5b, transparent);
    margin-bottom: 20px;
}


/* CARTOUCHE MUSÉE */
.cartouche {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 10px;
    border-top: 2px solid #c8b38e;
    border-bottom: 2px solid #c8b38e;
}

/* TITRE */
.cartouche h1 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    letter-spacing: 2px;
    margin: 0;
}

/* SOUS-TITRE */
.subtitle {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    font-style: italic;
    letter-spacing: 1px;
}

/* VITRINE MUSÉE */
.graph-box {
    background: #fdfcf9;
    border: 2px solid #c8b38e;
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
    position: relative;
}

/* REFLET VITRE */
.graph-box::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    height: 40%;
    background: linear-gradient(
        rgba(255,255,255,0.4),
        rgba(255,255,255,0)
    );
    border-radius: 10px;
    pointer-events: none;
}

/* CADRE INTERIEUR */
canvas {
    background: #ffffff;
    border: 1px solid #d6c7a1;
    border-radius: 8px;
}


/* CONTENEUR */
.fiche-musee {
    margin: 30px auto;
    max-width: 900px;
}

/* GRILLE (clé du problème) */
.fiche-musee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

/* CARTE PAYS */
.fiche-item {
    background: #f8f5f0;
    border: 1px solid #d6c7a1;
    border-left: 5px solid #a68b5b;
    padding: 15px;
    text-align: center;
    transition: transform 0.2s ease;
}

.fiche-item:hover {
    transform: translateY(-3px);
}

/* TITRE PAYS */
.fiche-item h3 a {
    text-decoration: none;
    color: #5a3e2b;
}

/* TEXTE */
.fiche-item p {
    margin-top: 5px;
    font-size: 14px;
    color: #555;
}

/* GALERIE PROPRE */
.galerie {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 25px;
    padding: 20px;
}
/* ===== GALERIE PROPRE ===== */

.galerie {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 25px;
    padding: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* ===== CARTE TIMBRE ===== */

.timbre {
    background: #f8f5ef;
    border: 2px solid #c8b38e;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: 0.25s;

    display: flex;
    flex-direction: column;
    align-items: center;
}

/* IMAGE */
.timbre img {
    width: 100%;
    height: 120px;
    object-fit: contain;   
    border-radius: 6px;
    padding: 6px;
    margin-bottom: 10px;
}

/* TEXTE */
.timbre p {
    margin: 5px 0 0;
    font-size: 14px;
}

.timbre small {
    font-size: 12px;
    color: #777;
}

/* HOVER */
.timbre:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.timbre.manquant img {
    filter: grayscale(100%);
    opacity: 0.6;
}


/* CONTINENT */
.continent-menu {
    margin: 15px 0;
    border-left: 4px solid #a68b5b;
}

/* TITRE CONTINENT */
.continent-header {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    padding: 10px;
    cursor: pointer;
    background: #f5f1e8;
}

/* LISTE PAYS */
.continent-content {
    padding-left: 15px;
}

/* ITEM PAYS */
.pays-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 10px;
    font-size: 14px;
}

/* LIENS */
.pays-item a {
    text-decoration: none;
    color: #5a3e2b;
}

.pays-item a:hover {
    text-decoration: underline;
}

/* NOMBRE */
.pays-item span {
    color: #777;
}
.continent-content {
    display: none;
}

.continent-content.open {
    display: block;
}






