/* ----------------------------------------------------------------------------
   6. METHODOLOGY NAVIGATION - 6 fichiers
   Fichier cible: 05-pages/methodology.css
   ---------------------------------------------------------------------------- */

.methodology-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.methodology-nav a {
    padding: 0.6rem 1.2rem;
    background: #ffffff;
    border-radius: 6px;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-weight: 500;
}

.methodology-nav a:hover {
    background: #3498db;
    color: white;
    border-color: #2980b9;
    transform: translateY(-2px);
}

.methodology-nav a.active {
    background: #3498db;
    color: white;
}

@media (max-width: 768px) {
    .methodology-nav {
        flex-direction: column;
    }
    
    .methodology-nav a {
        text-align: center;
    }
}