/* ============================================================================
   MAIN.CSS - Styles communs à toutes les pages (NAVIGATION SUPPRIMÉE)
   ============================================================================ */

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    overflow-x: hidden;
    /* Navigation moderne gère le padding-top maintenant */
}

/* ============================================================================
   UTILITAIRES COMMUNS
   ============================================================================ */

.section {
    min-height: 100vh;
    padding: 4rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Bouton retour général */
.back-home {
    position: fixed;
    top: 2rem;
    left: 2rem;
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 999;
}

.back-home:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* ============================================================================
   RESPONSIVE MOBILE - Navigation moderne gère tout maintenant
   ============================================================================ */

@media (max-width: 768px) {
    .section {
        padding: 2rem 1rem;
    }
    
    .back-home {
        top: 80px; /* Ajusté pour la nouvelle navigation */
    }
}

/* ============================================================================
   STYLES SPÉCIAUX POUR COMPATIBILITY
   ============================================================================ */

/* Classes pour les éléments qui dépendent de la navigation */
.page-with-navigation {
    padding-top: 70px; /* Géré automatiquement par navigation.css */
}

@media (max-width: 768px) {
    .page-with-navigation {
        padding-top: 60px;
    }
}