/* --- HERO LOCAL & ARTISANAL (V2 - Affiné) --- */
.hero {
    position: relative;
    padding: 100px 0 140px 0; /* Plus d'espace pour respirer */
    background: linear-gradient(135deg, #fffbf2 0%, #fff 100%);
    overflow: hidden;
}

/* Formes organiques (Blobs) - inchangé car ça marchait bien */
.hero::before {
    content: ''; position: absolute; top: -50px; right: -100px;
    width: 600px; height: 600px;
    background: #f4b458; opacity: 0.1;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 0; animation: blob 20s infinite alternate;
}
.hero::after {
    content: ''; position: absolute; bottom: -50px; left: -100px;
    width: 400px; height: 400px;
    background: #40604e; opacity: 0.05;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 0; animation: blob 15s infinite alternate-reverse;
}
@keyframes blob {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(20px, 40px) rotate(10deg); }
}

.hero-content {
    position: relative; z-index: 2;
    text-align: left;
    padding-right: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 25px;
}
.hero h1 span { 
    color: var(--primary); 
    position: relative; 
    white-space: nowrap;
}
/* Soulignement effet "marqueur" plus doux */
.hero h1 span::after {
    content: ''; position: absolute; bottom: 5px; left: 0; width: 100%; height: 12px;
    background: #f4b458; opacity: 0.25; z-index: -1; transform: rotate(-2deg);
    border-radius: 10px;
}

.hero p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 35px;
    max-width: 550px;
    line-height: 1.6;
}

/* Boutons : Centrage vertical parfait */
.btn-cta, .btn-outline-dark {
    display: inline-flex;          /* Clé du centrage */
    align-items: center;           /* Vertical */
    justify-content: center;       /* Horizontal */
    height: 54px;                  /* Hauteur fixe pour uniformité */
    padding: 0 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-cta {
    background-color: var(--primary); /* Vert plus "pro" */
    color: white;
    box-shadow: 0 8px 20px rgba(64, 96, 78, 0.25);
    border: 2px solid var(--primary);
}
.btn-cta:hover {
    background-color: var(--primary); /* Vert plus "pro" */
    color: white;
    box-shadow: 3px 8px 20px rgba(64, 96, 78, 0.75);
    border: 2px solid var(--primary);
}
.btn-outline-dark {
    border: 2px solid #ddd;
    color: #333;
    background: white;
}
.btn-outline-dark:hover {
    border-color: #333;
    background: white;
    color: #000;
}

/* Badges de réassurance (Mis en avant) */
.trust-badges {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
}
.badge-trust {
    background: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.2s;
}
.badge-trust:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0,0,0,0.06); }
.badge-trust i { color: var(--secondary); font-size: 1.1rem; } /* Icône jaune */

/* Composition Images (Droite) */
.hero-visual {
    position: relative;
    height: 480px;
    display: flex; /* Centrage global */
    align-items: center;
    justify-content: center;
}

.hero-img {
    position: absolute;
    border-radius: 20px; /* Un peu moins rond pour faire plus moderne */
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 5px solid white;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Transition fluide */
}
/* Animation survol beaucoup plus douce */
.hero-img:hover { transform: scale(1.03) translateY(-5px); z-index: 10; }

/* Dimensions ajustées */
.img-main {
    width: 300px; height: 380px;
    z-index: 2;
    background: #eee url('https://images.unsplash.com/photo-1488459716781-31db52582fe9?auto=format&fit=crop&w=600&q=80') center/cover;
}
.img-sub-1 {
    width: 190px; height: 190px;
    z-index: 3;
    bottom: 30px; left: 10px;
    background: #eee url('https://images.unsplash.com/photo-1556742502-ec7c0e9f34b1?auto=format&fit=crop&w=400&q=80') center/cover;
}
.img-sub-2 {
    width: 170px; height: 170px;
    z-index: 1;
    top: 50px; right: 20px;
    background: #eee url('https://images.unsplash.com/photo-1509440159596-0249088772ff?auto=format&fit=crop&w=400&q=80') center/cover;
}

/* Responsive */
@media (max-width: 991px) {
    .hero { text-align: center; padding: 60px 0; }
    .hero-content { margin: 0 auto; padding-right: 0; }
    .hero h1 { font-size: 2.5rem; }
    .trust-badges { justify-content: center; }
    .hero-visual { display: none; } 
    .btn-cta, .btn-outline-dark { width: 100%; margin-bottom: 10px; }
}
