/* --- VARIABLES --- */
:root {
    --primary-green: #9cbd31; 
    --dark-grey: #333333;
    --light-bg: #f4f4f4;     
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; line-height: 1.6; color: var(--dark-grey); background: var(--light-bg); font-size: 18px; }

/* --- NAVIGATION & HERO --- */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 0 8%; height: 100px; background: var(--dark-grey); position: fixed; width: 100%; top: 0; z-index: 2000; border-bottom: 4px solid var(--primary-green); }
.site-logo { height: 75px; width: auto; }
.nav-links { display: flex; list-style: none; }
.nav-links li a { text-decoration: none; color: var(--white); margin-left: 2rem; font-weight: 700; text-transform: uppercase; }

.hero { height: 100vh; background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('img/photo2.jpg') center/cover; display: flex; align-items: center; justify-content: center; text-align: center; color: white; padding-top: 100px; }
.hero-content h1 { font-size: 4.5rem; }
.hero-content h1 span { color: var(--primary-green); }
.hero-btns { display: flex; justify-content: center; gap: 25px; margin-top: 50px; }

/* --- BOUTONS --- */
.btn-primary { background: var(--primary-green); color: white !important; padding: 15px 40px; border-radius: 50px; text-decoration: none; font-weight: bold; display: inline-block; }
.btn-secondary { border: 2px solid white; color: white !important; padding: 15px 40px; border-radius: 50px; text-decoration: none; font-weight: bold; }

/* --- SECTIONS GÉNÉRALES --- */
section { padding: 120px 10% 80px; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
.section-title { text-align: center; margin-bottom: 60px; font-size: 3.5rem; text-transform: uppercase; font-weight: 800; }
.section-title::after { content: ''; display: block; width: 80px; height: 6px; background: var(--primary-green); margin: 20px auto; }

/* --- SERVICES & PAIEMENT --- */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto 50px; }
.service-card, .payment-info { background: white; padding: 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-bottom: 8px solid var(--primary-green); text-align: center; }

/* Style pour TOUTES les icônes (T-shirt, Maison et €) */
.service-card i, .payment-info i { 
    color: var(--primary-green); 
    font-size: 3.5rem; 
    margin-bottom: 20px; 
    display: block; 
    font-style: normal; /* Pour que le symbole € ne soit pas en italique si c'est une balise <i> */
}

.payment-info { max-width: 900px; margin: 0 auto; }

/* --- NOS CENTRALES --- */
.location-flex { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; max-width: 1100px; margin: 0 auto; }
.loc-item { background: var(--white); padding: 40px; border-radius: 15px; box-shadow: 0 10px 25px rgba(0,0,0,0.08); border-left: 10px solid var(--primary-green); text-align: left; }
.loc-item h4 { color: var(--primary-green); font-size: 1.8rem; margin-bottom: 20px; text-transform: uppercase; }

/* --- RECRUTEMENT --- */
.recrutement-wrapper { display: flex; align-items: center; justify-content: center; gap: 60px; max-width: 1300px; margin: 0 auto; }
.board-container { flex: 0 0 580px; background: #dcb35c; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 30px; border: 12px solid #8b5a2b; border-radius: 10px; box-shadow: inset 0 0 50px rgba(0,0,0,0.3); }
.pinned-card { background: #fff; height: 300px; padding: 10px; position: relative; box-shadow: 0 8px 15px rgba(0,0,0,0.2); }
.pinned-card::before { content: ''; position: absolute; top: -10px; left: 50%; transform: translateX(-50%); width: 16px; height: 16px; background: radial-gradient(circle at 30% 30%, #ff4d4d, #b30000); border-radius: 50%; z-index: 10; }
.pinned-card img { width: 100%; height: 100%; object-fit: cover; }

.recrutement-text-side { flex: 1; }
.recrutement-list { list-style: none; margin: 25px 0; padding: 0; }
.recrutement-list li { margin-bottom: 12px; display: flex; align-items: flex-start; }
.recrutement-list i { color: var(--primary-green); margin-right: 15px; margin-top: 5px; }

/* --- RESPONSIVE SIMPLE --- */
@media (max-width: 1100px) {
    .recrutement-wrapper { flex-direction: column; }
    .board-container { width: 100%; flex: none; }
}