.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 6rem;
}

/* Boutons génériques, cohérents */
.btn {
    display: inline-block;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.25s ease;
}

.btn.primary {
    background: #4e9af1;
    color: #fff;
}

.btn.primary:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(78, 154, 241, 0.3);
}

.btn.ghost {
    background: rgba(255,255,255,0.08);
    color: #ddd;
}

.btn.ghost:hover {
    background: rgba(255,255,255,0.16);
}

/* Cartes glassmorphism */
.card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* Section Héros */
.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-content h1 {
    font-size: 2.2rem;
    color: #c1bdc1;
    margin-bottom: 1rem;
}

.hero-content p {
    color: #a2a0a2;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.hero-media img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* Section À propos */
.about { margin-bottom: 3rem; }

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.about-item h3 { color: #c1bdc1; margin-bottom: 0.4rem; }
.about-item p { color: #a2a0a2; line-height: 1.6; }

/* Section Projets phares */
.featured { margin-bottom: 3rem; }

.featured h2 { color: #c1bdc1; margin-bottom: 1rem; }

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.project-card {
    display: block;
    background: rgba(255,255,255,0.08);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}

.project-card:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(0,0,0,0.22); }

.project-card img { width: 100%; height: 170px; object-fit: cover; display: block; }

.project-info { padding: 1rem; }
.project-info h3 { color: #c1bdc1; margin-bottom: 0.4rem; }
.project-info p { color: #a2a0a2; }

.featured-actions { margin-top: 1.2rem; }

/* Section Pourquoi moi */
.why-me { margin-bottom: 3rem; }
.why-me h2 { color: #c1bdc1; margin-bottom: 0.8rem; }
.why-list { list-style: none; margin: 0; padding: 0; }
.why-list li { color: #a2a0a2; margin: 0.5rem 0; }
.why-list li span { color: #c1bdc1; font-weight: 700; }

/* Section Contact */
.contact { margin-bottom: 3rem; }
.contact h2 { color: #c1bdc1; margin-bottom: 0.8rem; }
.contact p { color: #a2a0a2; margin-bottom: 1rem; }

.contact-form { display: grid; gap: 0.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }

.contact-form input,
.contact-form textarea {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #ddd;
    border-radius: 10px;
    padding: 0.9rem 1rem;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #9f9f9f; }

/* Responsive */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; }
    .hero-media img { height: 260px; }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .home-container { padding: 1rem; padding-top: 5rem; }
    .about-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}
