/* Import de la police Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');


body {
    background-color: #f7f3e9;
font-family: 'Inter', "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

/* Conteneur principal */
.archives-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Titres de sections */
.archives-section {
    font-size: 1.6em;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

/* Panneaux */
.archives-panel {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Listes */
.archives-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

/* Items — style identique à archives.html */
.archives-item {
    margin-bottom: 10px;
    font-size: 1.1em;
    font-weight: 500;   /* semi-bold, comme dans archives.html */
    line-height: 1.4;   /* hauteur de ligne plus élégante */
}


/* Liens */
.archives-item a {
    color: #0066cc;
    text-decoration: none;
}

.archives-item a:hover {
    text-decoration: underline;
}

/* Masquer les panneaux par défaut */
.archives-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* Afficher le panneau au survol */
.archives-item:hover .archives-panel {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Style du titre des thèmes et années */
/* Option A — style original */
.archives-item {
    font-weight: normal;
    font-size: 1em;
    margin-bottom: 15px;
}


/* Espacement entre les panneaux */
.archives-panel {
    margin-top: 10px;
}
