/* ========================================
   STYLES Eduyeye - Version Autonome
   (Sans dépendance à Tailwind CSS)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #0f172a;
    overflow-x: hidden;
}

/* Couleurs personnalisées */
.bg-tropical-blue { background-color: #003366; }
.text-tropical-blue { color: #003366; }
.bg-tropical-gold { background-color: #FFCC00; }
.text-tropical-gold { color: #FFCC00; }

/* Bouton doré */
.btn-gold {
    background-color: #FFCC00;
    color: #003366;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.btn-gold:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(255, 204, 0, 0.4);
}

/* Ligne décorative */
.section-line {
    width: 60px;
    height: 4px;
    background: #FFCC00;
    margin-bottom: 1.5rem;
}

/* Classes utilitaires récréées (simplifiées) */
.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.text-center { text-align: center; }
.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 0.75rem; }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.w-full { width: 100%; }

/* Styles pour le menu sidebar desktop */
.sidebar-item {
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-item:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateX(5px);
}

.sidebar-item.active {
    background-color: #FFFBEB;
    color: #003366;
    border-left-color: #FFCC00;
    font-weight: bold;
}

/* Pour les écrans très petits */
@media (max-width: 480px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
}