/* ================================================
   COMPOSANTS - PROJETS
   ================================================ */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-card {
    background: var(--card-bg);
    border-radius: 15px;
    border: 2px solid var(--primary);
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.3);
}

.project-image {
    height: 150px;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.2), rgba(0, 255, 234, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.project-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    min-height: 100px;
}

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

.project-link {
    padding: 0.7rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--darker);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.project-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.4);
}

/* FOOTER */
footer {
    background: var(--darker);
    padding: 2rem;
    text-align: center;
    border-top: 2px solid var(--primary);
}

footer p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.footer-social a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    text-shadow: var(--neon-glow);
}
