body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #222;
    line-height: 1.6;
}

h1, h2, h3 {
    font-weight: 700;
}

a { text-decoration: none; }

/* HERO */
.hero {
    background: url('voiture_hero_og.avif') center/cover no-repeat;
    /* background-color: #111; */
    background-blend-mode: multiply;
    color: white;
    padding: 120px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin: 20px 0;
    @media screen and (max-width: 700px) {
        font-size: 2.1rem;
      }
}

h2 {
    @media screen and (max-width: 700px) {
        font-size: 1.3rem;
      }
}


.hero-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* BUTTONS */
.btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-primary {
    background: #E67E22;
    color: white;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
}

.btn-small {
    background: #2D6A2D;
    color: white;
    padding: 8px 16px;
    font-size: 0.9rem;
}

.center { display: block; margin: 40px auto; }

/* TRUST */
.trust {
    padding: 60px 20%;
    text-align: center;
    background: #e2ffed;
    background: linear-gradient(90deg,
    rgba(247, 255, 250, 1) 0%,
     rgba(226, 255, 237, 1) 35%,
     rgba(226, 255, 237, 1) 65%,
      rgba(173, 255, 210, 1) 100%
      );
      @media screen and (max-width: 700px) {
        padding: 60px 20px;
      }
    }

/* PILLARS */
.pillars {
    padding: 60px 20px;
    background: #fbfbfb;
}

.pillar-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.pillar {
    border-left: 4px solid #2D6A2D;
    padding-left: 16px;
}

.link-green {
    color: #2D6A2D;
    font-weight: 600;
}

/* VEHICLES */
.vehicles {
    padding: 60px 20px;
}

.vehicle-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.vehicle-card {
    border: 1px solid #ddd;
    padding: 16px;
    border-radius: 8px;
}

.vehicle-img {
    background: #ccc;
    height: 160px;
    border-radius: 6px;
}

/* ABOUT */
.about {
    padding: 60px 20px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.about-photos .photo {
    background: #ccc;
    height: 180px;
    width: 180px;
    border-radius: 8px;
}

/* MANDAT */
.mandat {
    background: #2D6A2D;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

/* CTA FINAL */
.cta-final {
    background: #2D6A2D;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.micro {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* FOOTER */
footer {
    background: #111;
    color: #ccc;
    padding: 40px 20px;
}

.footer-cols {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.legal {
    margin-top: 20px;
    font-size: 0.8rem;
    text-align: center;
}
