/* ----------------------------------------------------------------------------
   3. QUICK NAVIGATION - 10 fichiers
   Fichier cible: 04-components/navigation.css
   ---------------------------------------------------------------------------- */

.quick-nav {
    display: block;
    margin: 2rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.quick-nav h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .quick-nav-grid {
        grid-template-columns: 1fr;
    }
}

.quick-nav-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.quick-nav-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.quick-nav-item:active {
    transform: translateY(-2px);
}

.nav-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-count {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: #ecf0f1;
    color: #7f8c8d;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    min-width: 24px;
    text-align: center;
}

/* ----------------------------------------------------------------------------
   9. BACK ARROW - 5 fichiers
   Fichier cible: 04-components/navigation.css
   ---------------------------------------------------------------------------- */

.back-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: #f8f9fa;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    border: 1px solid #dee2e6;
}

.back-arrow:hover {
    background: #3498db;
    color: white;
    border-color: #3498db;
    transform: translateX(-4px);
}

.back-arrow::before {
    content: "←";
    font-size: 1.2rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .back-arrow {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

