/* Variables CSS */
:root {
    /* Couleurs principales (noirs, blancs, gris) */
    --primary-color: #0D1B2A; /* Bleu très foncé, presque noir, pour les accents */
    --primary-dark: #0A141F;  /* Encore plus foncé */
    --secondary-color: #343A40; /* Gris foncé */
    --danger-color: #D62828;  /* Rouge plus sombre */
    --warning-color: #F7B801; /* Jaune/orange pour l'avertissement */
    --success-color: #28A745; /* Vert plus sombre */
    --dark-color: #212529;    /* Noir presque absolu pour le texte */
    --light-color: #F8F9FA;   /* Blanc cassé pour le fond */
    --gray-100: #E9ECEF;
    --gray-200: #DEE2E6;
    --gray-300: #CED4DA;
    --gray-600: #6C757D;
    --gray-800: #343A40;
    --shadow: rgba(0, 0, 0, 0.2); /* Ombre plus prononcée sur fond clair */
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color); /* Texte principal en noir foncé */
    background-color: var(--light-color); /* Fond en blanc cassé */
}

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

/* Header */
.header {
    /* Utilisation de teintes de noir/gris pour le dégradé */
    background: linear-gradient(135deg, var(--dark-color), var(--gray-800));
    color: white; /* Texte du header en blanc */
    padding: 1rem 0;
    box-shadow: 0 2px 10px var(--shadow);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo i {
    font-size: 2rem;
    color: var(--primary-color); /* Utilise la couleur primaire foncée comme accent */
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-balance {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1); /* Fond légèrement transparent blanc */
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: bold;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.logout-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.logout-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Navigation Tabs */
.nav-tabs {
    background: white; /* Fond blanc pour les onglets */
    border-bottom: 1px solid var(--gray-200);
    padding: 0;
}

.nav-tabs .container {
    display: flex;
    gap: 0;
    overflow-x: auto;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    color: var(--gray-600); /* Couleur de texte des onglets inactifs */
}

.tab-btn:hover {
    background: var(--gray-100);
    color: var(--primary-color); /* Couleur primaire pour le survol */
}

.tab-btn.active {
    color: var(--primary-color); /* Couleur primaire pour l'onglet actif */
    border-bottom-color: var(--primary-color);
    background: var(--gray-100);
}

/* Main Content */
.main-content {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-header h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-color);
    font-size: 1.75rem;
}

.filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filters select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    background: white;
    cursor: pointer;
    transition: var(--transition);
    color: var(--dark-color); /* Texte des selects en noir foncé */
}

.filters select:focus {
    outline: none;
    border-color: var(--primary-color); /* Accent sur la couleur primaire */
    box-shadow: 0 0 0 3px rgba(13, 27, 42, 0.1); /* Ombre de la couleur primaire */
}

/* Grilles */
.courses-grid,
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Cartes de cours */
.course-card,
.document-card {
    background: white; /* Fond blanc pour les cartes */
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.course-card:hover,
.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25); /* Ombre plus prononcée au survol */
}

.course-thumbnail {
    width: 100%;
    height: 180px;
    /* Dégradé de gris pour la miniature par défaut */
    background: linear-gradient(135deg, var(--gray-600), var(--gray-800));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
}

.course-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.course-thumbnail i {
    z-index: 1;
    position: relative;
}

.course-content,
.document-content {
    padding: 1.5rem;
}

.course-title,
.document-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.course-description,
.document-description {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.course-meta,
.document-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.course-price,
.document-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color); /* Prix en couleur primaire foncée */
}

.price.free {
    color: var(--success-color); /* Vert pour "Gratuit" */
}

.course-actions,
.document-actions {
    display: flex;
    gap: 0.5rem;
}

/* Boutons */
.btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-color); /* Couleur primaire foncée */
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--gray-200);
    color: var(--dark-color); /* Texte sur bouton secondaire */
}

.btn-secondary:hover {
    background: var(--gray-300);
}

.btn-success {
    background: var(--success-color); /* Vert pour succès */
    color: white;
}

.btn-success:hover {
    background: #218838; /* Vert un peu plus foncé */
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Tags */
.tag {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-right: 0.5rem;
}

.tag.free {
    background: rgba(40, 167, 69, 0.1); /* Vert succès transparent */
    color: var(--success-color);
}

.tag.paid {
    background: rgba(13, 27, 42, 0.1); /* Primaire foncée transparent */
    color: var(--primary-color);
}

.tag.level {
    background: rgba(247, 184, 1, 0.1); /* Jaune/orange avertissement transparent */
    color: var(--warning-color);
}

.tag.category {
    background: rgba(52, 58, 64, 0.1); /* Gris foncé transparent */
    color: var(--secondary-color); /* Utilise la couleur secondaire pour un peu de contraste */
}

/* Section Info */
.info-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px var(--shadow);
    border-left: 4px solid var(--primary-color); /* Couleur primaire pour la bordure */
}

.info-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.info-card h3 i {
    color: var(--primary-color); /* Couleur primaire pour l'icône */
}

.info-card ul {
    list-style: none;
    margin-left: 1rem;
}

.info-card ul li {
    margin-bottom: 0.5rem;
    position: relative;
}

.info-card ul li::before {
    content: '▶';
    color: var(--primary-color); /* Couleur primaire pour la puce */
    position: absolute;
    left: -1rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: var(--primary-color); /* Couleur primaire pour l'icône */
    width: 20px;
}

/* Messages */
.message {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.message.success {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.message.error {
    background: rgba(214, 40, 40, 0.1);
    color: var(--danger-color);
    border: 1px solid rgba(214, 40, 40, 0.2);
}

.message.warning {
    background: rgba(247, 184, 1, 0.1);
    color: var(--warning-color);
    border: 1px solid rgba(247, 184, 1, 0.2);
}

.message.hidden {
    display: none;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Fond de modal plus sombre */
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.modal-content.video-modal {
    max-width: 90%;
    width: 800px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.modal-header h3 {
    margin: 0;
    color: var(--dark-color);
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-600);
    padding: 0.25rem;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    background: var(--gray-100);
    color: var(--danger-color);
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.balance-info {
    background: var(--gray-100);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.balance-info p {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.balance-info p:last-child {
    margin-bottom: 0;
    font-weight: bold;
    color: var(--primary-color); /* Balance en couleur primaire */
}

/* Vidéo */
.video-container {
    margin-bottom: 1rem;
}

.video-info {
    margin-top: 1rem;
}

.video-progress {
    margin-top: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
    margin: 0.5rem 0;
}

.progress-fill {
    height: 100%;
    /* Dégradé de gris/primaire pour la barre de progression */
    background: linear-gradient(90deg, var(--primary-color), var(--gray-600));
    width: 0%;
    transition: width 0.3s ease;
}

/* États spéciaux */
.no-content-message {
    text-align: center;
    padding: 3rem;
    color: var(--gray-600);
    font-size: 1.1rem;
    grid-column: 1 / -1;
}

.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 0.5rem;
    }

    .header-right {
        gap: 0.5rem;
    }

    .user-balance {
        display: none;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .filters {
        width: 100%;
    }

    .filters select {
        flex: 1;
    }

    .courses-grid,
    .documents-grid {
        grid-template-columns: 1fr;
    }

    .course-actions,
    .document-actions {
        flex-direction: column;
    }

    .info-content {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 1rem;
    }

    .modal-content.video-modal {
        width: 95%;
        margin: 1rem;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem;
    }

    .course-price,
    .document-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-tabs .container {
        padding: 0;
    }

    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .tab-btn i {
        display: none;
    }

    .logo span {
        display: none;
    }

    .user-info span {
        display: none;
    }
}