/* 
 * STYLES POUR CATÉGORIE NETACAD
 * Design spécifique pour les certifications netacad
 * Auteur: Manley.B
 */

/* ==================== CATÉGORIE NETACAD ==================== */

.netacad-category {
    margin: 3em 0;
    padding: 2em;
    background: linear-gradient(135deg, #388b00 0%, #49b800 100%);
    border-radius: 20px;
    border: 2px solid rgba(168, 85, 247, 0.3);
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.netacad-category .category-header {
    display: flex;
    align-items: center;
    gap: 1.5em;
    margin-bottom: 2em;
    padding-bottom: 1em;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.netacad-category .platform-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #ffffff;
    padding: 8px;
}

.netacad-category .category-header h3 {
    color: #ffffff;
    font-size: 1.8em;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* ==================== CARTES NETACAD ==================== */

.netacad-card {
    background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
    border: 2px solid rgba(168, 85, 247, 0.2);
    position: relative;
    overflow: hidden;
}

.netacad-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #388b00 0%, #388b00 100%);
}

.netacad-card .cert-icon {
    background: linear-gradient(135deg, #388b00 0%, #388b00 100%);
    color: #ffffff;
    border: none;
}

.netacad-card .cert-level {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    color: #388b00;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.netacad-card h4 {
    color: #388b00;
    font-weight: bold;
}

/* ==================== BOUTON NETACAD ==================== */

.netacad-btn {
    background: linear-gradient(135deg, #388b00 0%, #388b00 100%);
    color: #ffffff;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.netacad-btn:hover {
    background: linear-gradient(135deg, #388b00 0%, #388b00 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px 388b;
}

/* ==================== RESPONSIVE NETACAD ==================== */

@media (max-width: 57vh) {
    .netacad-category .category-header {
        flex-direction: column;
        text-align: center;
        gap: 1em;
    }

    .netacad-category .platform-logo {
        width: 80px;
        height: 80px;
    }

    .netacad-btn {
        font-size: 1.1em;
        transform: none !important;
        transition: background 0.3s ease, color 0.3s ease !important;
    }

    .netacad-btn:hover {
        transform: none !important;
        box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2) !important;
    }
}