/* css/style.css */

/* Reset de base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation simple */
nav {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    margin-left: 20px;
}

/* Hero Section */
.project-hero {
    background: #fff;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.project-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.badge {
    background: #3498db;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-links {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 0 10px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #2ecc71;
    color: white;
}

.btn-secondary {
    background-color: #34495e;
    color: white;
}

/* Images */
.project-media img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin: 12px 0;
}

/* Sections générales */
section {
    padding: 50px 0;
    background: #fff;
    margin-bottom: 20px;
}

h2 , h3,h4,h5,h6 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    border-left: 5px solid #3498db;
    padding-left: 15px;
}

/* Stack Technique Tags */
.tech-stack .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tag {
    background: #ecf0f1;
    color: #7f8c8d;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Grille de fonctionnalités */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: none;
    margin: 0 0 15px 0;
}

/* Stats */
.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-item {
    margin: 20px;
}

.stat-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #2ecc71;
}

.stat-item .label {
    color: #7f8c8d;
    font-size: 1.1rem;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .project-hero h1 { font-size: 2rem; }
    .stats-grid { flex-direction: column; }
    .btn { display: block; margin: 10px 0; width: 100%; text-align: center; }
}

.nav-skill{
    margin-left: 5%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2em;
    font-style: bold;
    font-weight: 200;
    color:#2c3e50;
}
