/*
Theme Name: Kadence Child - Archimede
Template: kadence
Description: Thème enfant Kadence pour le projet Archimede
Version: 1.0
*/

/* ============================================
   STYLES ARCHIMEDE — préfixés .archimede-
   Ces styles ne s'appliquent QUE sur les
   nouvelles pages Archimede, pas sur l'ancien site.
   ============================================ */

/* --- Typographie --- */
.archimede-page {
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 400;
}

.archimede-page h1,
.archimede-page h2,
.archimede-page h3,
.archimede-page h4 {
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 700;
}

/* --- Couleurs de marque --- */
.archimede-color-turquoise { color: #00B5AD; }
.archimede-color-magenta   { color: #E91E8C; }
.archimede-color-jaune     { color: #F5C518; }
.archimede-color-creme     { color: #F9F4EE; }

.archimede-bg-turquoise { background-color: #00B5AD; }
.archimede-bg-magenta   { background-color: #E91E8C; }
.archimede-bg-jaune     { background-color: #F5C518; }
.archimede-bg-creme     { background-color: #F9F4EE; }

/* --- Badge de section --- */
.archimede-badge {
    display: inline-block;
    background-color: #00B5AD;
    color: #ffffff;
    font-family: "brandon-grotesque", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
}

/* --- Boutons --- */
.archimede-btn {
    display: inline-block;
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}
.archimede-btn:hover { opacity: 0.85; }

.archimede-btn-primary {
    background-color: #00B5AD;
    color: #ffffff;
}
.archimede-btn-secondary {
    background-color: transparent;
    border: 2px solid #00B5AD;
    color: #00B5AD;
}

/* --- Barre de navigation flottante (bottom nav) --- */
.archimede-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #ffffff;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
}

.archimede-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "brandon-grotesque", sans-serif;
    font-size: 0.7rem;
    color: #333333;
    text-decoration: none;
    gap: 4px;
}

.archimede-bottom-nav a.active,
.archimede-bottom-nav a:hover {
    color: #00B5AD;
}

/* --- Cards projets --- */
.archimede-card {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.archimede-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.archimede-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* --- Accordéons FAQ --- */
.archimede-accordion-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 16px 0;
}
.archimede-accordion-trigger {
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.archimede-accordion-content {
    padding-top: 12px;
    display: none;
}
.archimede-accordion-item.open .archimede-accordion-content {
    display: block;
}

/* --- Animations fade up --- */
.archimede-fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.archimede-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
