/* Section Technologies - Design moderne et thématique */

#technology {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid rgba(0, 123, 255, 0.1);
    margin-bottom: 67vh; /* Espace pour laisser voir le Canvas (2/3 de page) */
}

#technology h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color, #007bff);
    margin-bottom: 1rem;
    font-weight: 700;
}

#technology .subTitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--secondary-color, #6c757d);
    margin-bottom: 2rem;
    font-style: italic;
}

#technology > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color, #333);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Catégories de technologies */
.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tech-category {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tech-category h3 {
    font-size: 1.4rem;
    color: var(--primary-color, #007bff);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-color, #007bff);
    padding-bottom: 0.5rem;
}

/* Liste des technologies */
.tech-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tech-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color, #007bff);
    transition: background-color 0.3s ease;
}

.tech-item:hover {
    background: #e9ecef;
}

.tech-item h4 {
    font-size: 1.1rem;
    color: var(--text-color, #333);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tech-item p {
    font-size: 0.9rem;
    color: var(--secondary-color, #6c757d);
    margin: 0;
    line-height: 1.4;
}

/* Section expertise */
.tech-expertise {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.tech-expertise h3 {
    font-size: 1.4rem;
    color: var(--primary-color, #007bff);
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid var(--primary-color, #007bff);
    padding-bottom: 0.5rem;
}

.tech-expertise ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-expertise li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 1rem;
    line-height: 1.5;
}

.tech-expertise li:last-child {
    border-bottom: none;
}

.tech-expertise strong {
    color: var(--primary-color, #007bff);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    #technology {
        padding: 2rem 1rem;
    }
    
    #technology h2 {
        font-size: 2rem;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-category {
        padding: 1.5rem;
    }
    
    .tech-expertise {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    #technology h2 {
        font-size: 1.8rem;
    }
    
    .tech-category h3 {
        font-size: 1.2rem;
    }
    
    .tech-item h4 {
        font-size: 1rem;
    }
}
