* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


/* ================= HERO (BANNIÈRE) ================= */
.hero {
    background: linear-gradient(135deg, #E97240, #C49667);
    color: #fff;
    text-align: center;

    padding: 50px 20px 60px;
    border-bottom-left-radius: 45% 12%;
    border-bottom-right-radius: 45% 12%;
}

/* CONTENEUR VERTICAL FORCÉ */
.hero * {
    display: block;
}

/* Logo */
.hero .logo {
    width: 300px;
    margin: -70px auto -70px auto;
}

/* Titre */
.hero h1 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

/* Texte / infos / contact */
.hero p {
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto 20px auto;
}

/* Bouton */
.hero .cta {
    display: inline-block;
    margin-top: 10px;
    background: #fff;
    color: #C49667;
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
}

/* Mobile */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero .logo {
        width: 65px;
    }
}

/* ================= SECTIONS ================= */
section {
    padding: 64px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

section h2 {
    color: #E97240;
    font-size: clamp(20px, 2.6vw, 30px);
    margin-bottom: 28px;
    text-align: center;
}

/* Light card container */
.light {
    background: #fff;
    border-radius: 18px;
    padding: 36px 24px;
    margin-bottom: 32px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* ================= CARDS ================= */
.card {
    background: #fff;
    padding: 22px 20px;
    border-radius: 14px;
    margin-bottom: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.card h3 {
    color: #C49667;
    font-size: 20px;
    margin-bottom: 10px;
}

.card p {
    font-size: 15px;
    color: #2a2a2a;
    line-height: 1.5;
}

/* Si une image est incluse dans la card */
.card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin-bottom: 14px;
}

/* ================= LISTES ================= */
ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 15px;
}

ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #E97240;
    font-weight: 700;
}

/* ================= FORMULAIRES ================= */
form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

input, textarea, select {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #d5d5d5;
    font-size: 15px;
    transition: border-color .18s ease, box-shadow .18s ease;
    width: 100%;
    background: #fff;
    color: #222;
}

input:focus, textarea:focus, select:focus {
    border-color: #E97240;
    box-shadow: 0 6px 18px rgba(233,114,64,0.18);
    outline: none;
}

button {
    padding: 12px 0;
    background: #E97240;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease;
}

button:hover {
    background: #C49667;
    transform: translateY(-2px);
}

/* ================= CONTACT / INFO ================= */
.contact-info {
    margin-top: 16px;
    font-size: 15px;
    text-align: center;
}

.contact-info strong {
    color: #E97240;
}

/* ================= FOOTER ================= */
/* fond full-width mais contenu centré et limité en largeur */
footer {
    background: #2C2A2F;
    color: #f8f6f2;
    text-align: center;
    padding: 28px 20px;
    font-size: 14px;
}

/* limiter la largeur du contenu du footer sans supprimer le fond */
footer .footer-inner,
footer p,
footer address,
footer .footer-logo,
footer .footer-text {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* petit ajustement logo footer */
.footer-logo {
    width: 200px;
    height: auto;
    display: block;
    margin: -50px auto -50px auto;
}

/* si tu veux un bloc texte plus étroit dans le footer */
footer p {
    margin: 6px auto 0 auto;
    line-height: 1.5;
    color: #f1efe9;
    opacity: 0.95;
}

/* ================= ACCESSIBILITÉ ================= */
a { text-decoration: none; color: inherit; }
button:focus, a:focus { outline: 3px solid rgba(233,114,64,0.18); outline-offset: 3px; }

/* ================= RESPONSIVE ================= */
/* Tablettes / petits écrans */
@media (max-width: 900px) {
    .hero {
        padding: clamp(28px, 8vh, 56px);
        min-height: clamp(200px, 30vh, 360px);
    }
    .hero h1 { font-size: clamp(20px, 5.2vw, 30px); }
    .hero p { font-size: 15px; }
    section { padding: 48px 16px; }
    .card { padding: 18px; }
    .light { padding: 28px 18px; }
}

/* Mobiles */
@media (max-width: 600px) {
    .hero {
        padding: 22px 14px;
        min-height: 180px;
        border-bottom-left-radius: 36% 12%;
        border-bottom-right-radius: 36% 12%;
    }
    .hero h1 { font-size: 22px; }
    .hero p { font-size: 14px; max-width: 92%; }
    .hero .logo { width: 64px; margin-bottom: 10px; }
    section { padding: 36px 12px; }
    .card h3 { font-size: 16px; }
    .card p, ul li { font-size: 14px; }
    button { padding: 10px 0; font-size: 14px; }
    footer { padding: 22px 14px; font-size: 13px; }
}

/* petite astuce : si tu as des images en background (CSS), garde-les centrées et couvres */
.bg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
