/* ----------------------------------------------
    RESET & BASE
---------------------------------------------- */
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body{
    font-family:"Poppins", system-ui, sans-serif;
    background:#ffffff;            /* ✅ fond blanc */
    color:#1a1a1a;                 /* ✅ texte foncé */
    line-height:1.6;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
.container{ width:90%; max-width:1200px; margin:0 auto; }

/* ----------------------------------------------
    THEME (BLANC + #936A2C)
---------------------------------------------- */
:root{
    --brand:#936A2C;         /* couleur principale */
    --brand-2:#b68436;       /* hover */
    --bg:#ffffff;
    --bg-2:#f6f6f6;          /* sections alternées */
    --panel:#ffffff;         /* cartes */
    --text:#1a1a1a;
    --muted:#4f4f4f;
    --line:rgba(0,0,0,.10);
    --white:#ffffff;
    --shadow: rgba(0,0,0,.10);
}

/* ----------------------------------------------
    LOGO TEXTE (sans image)
---------------------------------------------- */
.nav-logo-text{
    font-size:24px;
    font-weight:800;
    color:#111;
    text-transform:uppercase;
    letter-spacing:.5px;
}
.nav-logo-text img{ display:none; }

/* ----------------------------------------------
    COOKIE BANNER
---------------------------------------------- */
.cookie-banner{
    position:fixed; bottom:15px; left:50%; transform:translateX(-50%);
    background:#111; color:#fff;
    padding:10px 18px;
    border-radius:999px;
    display:flex; align-items:center; gap:12px;
    font-size:.85rem;
    z-index:9999;
    box-shadow:0 10px 25px rgba(0,0,0,.35);
    border:1px solid rgba(255,255,255,.10);
}
.cookie-banner a{ color:var(--brand); text-decoration:underline; }
.cookie-banner button{
    border:none;
    background:var(--brand);
    color:#fff;
    border-radius:999px;
    padding:6px 12px;
    font-size:.8rem;
    cursor:pointer;
    font-weight:700;
}
.cookie-banner button:hover{ background:var(--brand-2); }

/* ----------------------------------------------
    NAVBAR
---------------------------------------------- */
.navbar{
    position:fixed; top:0; left:0; width:100%;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(10px);
    padding:10px 0;
    z-index:999;
    border-bottom:1px solid var(--line);
}
.nav-container{
    width:90%; max-width:1200px; margin:0 auto;
    display:flex; align-items:center; justify-content:space-between;
}
.nav-logo img{ height:42px; }

/* LINKS */
.nav-links{
    list-style:none;
    display:flex;
    align-items:center;
    gap:18px;
}
.nav-links a{
    color:#222;
    font-size:.95rem;
    font-weight:600;
    position:relative;
    padding-bottom:3px;
}
.nav-links a::after{
    content:""; position:absolute; left:0; bottom:0;
    width:0; height:2px; background:var(--brand);
    transition:width .25s ease-out;
}
.nav-links a:hover::after{ width:100%; }

/* CTA button */
.nav-cta{
    background:var(--brand);
    padding:8px 16px;
    border-radius:999px;
    font-weight:800;
    color:#fff !important;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}
.nav-cta:hover{ background:var(--brand-2); }
.nav-cta::after{ display:none; }

/* Phone CTA */
.nav-phone{
    border:1px solid rgba(0,0,0,.18);
    border-radius:999px;
    padding:7px 14px;
    display:flex; align-items:center; gap:6px;
    font-size:.9rem;
    color:#111;
    background:#fff;
}
.nav-phone:hover{
    border-color:rgba(0,0,0,.28);
}

/* BURGER */
.nav-toggle{
    display:none;
    flex-direction:column;
    gap:4px;
    background:none;
    border:none;
    cursor:pointer;
}
.nav-toggle span{
    width:22px; height:2px; background:#111; border-radius:999px;
    transition:.25s;
}

/* ----------------------------------------------
    HERO (clair, logo visible)
---------------------------------------------- */
.hero{
    height:100vh;
    background:
        radial-gradient(900px 600px at 20% 25%, rgba(147,106,44,.16), transparent 60%),
        radial-gradient(700px 500px at 80% 35%, rgba(147,106,44,.10), transparent 55%),
        linear-gradient(135deg, #f8f8f8, #ffffff 55%, #f1f1f1);
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    padding-top:80px;
}

/* Overlay léger (✅ moins foncé) */
.hero .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(255,255,255,0.35),
        rgba(147,106,44,0.06)
    );
}

.hero-inner{
    position:relative;
    text-align:center;
    color:#111;
    padding:20px;
    max-width:820px;
}

/* Boutons hero */
.hero-actions{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}

.btn-hero{
    display:inline-block;
    background:var(--brand);
    color:white;
    padding:12px 28px;
    border-radius:999px;
    font-weight:900;
    transition:.25s;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}
.btn-hero:hover{
    background:var(--brand-2);
    transform:translateY(-2px);
}

/* Variante bouton outline */
.btn-hero-outline{
    background:transparent;
    border:1px solid rgba(0,0,0,.25);
    color:#111;
    box-shadow:none;
}
.btn-hero-outline:hover{
    border-color:rgba(0,0,0,.40);
    background:rgba(0,0,0,.04);
    transform:translateY(-2px);
}

/* Sous-typos hero */
.hero-subtitle{
    font-size:1.25rem;
    font-weight:500;
    opacity:.95;
    margin-bottom:15px;
    color:#111;
}
.hero-zone{
    font-size:1.1rem;
    margin-bottom:12px;
    opacity:.92;
    color:#222;
}
.hero-assurance{
    font-size:1rem;
    opacity:.90;
    margin-bottom:22px;
    color:#2b2b2b;
}

/* LOGO DANS LE HERO */
.hero-logo{
    max-width:360px;
    width:100%;
    margin:0 auto 22px auto;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.18));
}

/* ----------------------------------------------
    SECTIONS
---------------------------------------------- */
.section{ padding:90px 0; }
.section-title{
    font-size:2.2rem;
    text-align:center;
    margin-bottom:50px;
    color:#111;
    letter-spacing:.2px;
}

/* ----------------------------------------------
    ABOUT (clair, premium)
---------------------------------------------- */
.about{
    background:var(--bg-2);
    color:var(--text);
    text-align:center;
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
}
.about .section-title{ color:#111; }
.about p{
    max-width:860px;
    margin:0 auto 20px auto;
    font-size:1.05rem;
    opacity:.98;
    color:#222;
}
.about a{
    color:var(--brand);
    text-decoration:underline;
}

/* ----------------------------------------------
    SERVICES
---------------------------------------------- */
.services{ background:var(--bg); }
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap:24px;
}
.card{
    background:#ffffff;
    border-radius:18px;
    padding:22px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.25s;
    border:1px solid rgba(0,0,0,.08);
}
.card h3{
    margin-bottom:8px;
    color:#111;
}
.card p{
    font-size:.95rem;
    color:var(--muted);
}
.card a{ color:var(--brand); text-decoration:underline; }
.card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(0,0,0,.10);
    border-color:rgba(147,106,44,.35);
}

/* ----------------------------------------------
    GALLERY
---------------------------------------------- */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap:22px;
}
.gallery-item{
    aspect-ratio:4/3;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.25s;
    border:1px solid rgba(0,0,0,.08);
    background:#fff;
}
.gallery-item img{ width:100%; height:100%; object-fit:cover; }
.gallery-item:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);
    border-color:rgba(147,106,44,.35);
}

/* ----------------------------------------------
    CONTACT
---------------------------------------------- */
.contact{ background:#fafafa; }
.contact-form{
    max-width:700px;
    margin:0 auto;
    background:#ffffff;
    padding:28px;
    border-radius:20px;
    box-shadow:0 16px 45px rgba(0,0,0,.10);
    border:1px solid rgba(0,0,0,.08);
}
.field-row{ display:flex; gap:15px; margin-bottom:14px; }
.field-row input{ flex:1; }

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:13px;
    border-radius:12px;
    border:1px solid rgba(0,0,0,.16);
    background:#ffffff;
    color:#111;
    font-size:.95rem;
    outline:none;
    transition:border-color .2s, box-shadow .2s, background .2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:rgba(0,0,0,.55);
}
.contact-form input:focus,
.contact-form textarea:focus{
    border-color:rgba(147,106,44,.70);
    box-shadow:0 0 0 4px rgba(147,106,44,.14);
    background:#fff;
}
textarea{
    min-height:150px;
    resize:vertical;
}

.btn-submit{
    margin-top:8px;
    background:var(--brand);
    color:white;
    padding:12px 26px;
    border:none;
    border-radius:999px;
    font-weight:900;
    cursor:pointer;
    transition:.25s;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}
.btn-submit:hover{
    background:var(--brand-2);
    transform:translateY(-1px);
}

/* ----------------------------------------------
    FOOTER (3 COLONNES) - on garde sombre (pro)
---------------------------------------------- */
footer{
    background:#111;
    color:#eee;
    padding:60px 0 20px 0;
    border-top:1px solid rgba(0,0,0,.08);
}
.footer-top{
    width:90%;
    max-width:1300px;
    margin:0 auto;
    display:flex;
    justify-content:space-between;
    gap:40px;
}
.footer-col{ flex:1; }
.footer-col h4{
    font-size:1.1rem;
    margin-bottom:12px;
    color:#fff;
}
.footer-col p{ margin-bottom:8px; opacity:.92; line-height:1.5; color:#dcdcdc; }
.footer-col ul{ list-style:none; }
.footer-col ul li{ margin-bottom:8px; }
.footer-col ul li a{ color:#d2d2d2; }
.footer-col ul li a:hover{ color:#fff; }
.footer-col a{ color:var(--brand); }
.footer-col a:hover{ color:#fff; }

/* Bas du footer → UNE SEULE LIGNE */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,.10);
    margin-top:30px;
    padding-top:15px;
    text-align:center;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
    font-size:.9rem;
    opacity:.88;
}
.footer-bottom a{ color:var(--brand); }
.footer-bottom a:hover{ color:#fff; }
.footer-sep{ opacity:.45; }

/* ----------------------------------------------
    FORCE : logo texte visible dans la navbar
---------------------------------------------- */
.navbar .nav-container .nav-logo.nav-logo-text{
    font-size:26px !important;
    font-weight:900 !important;
    color:#111 !important;
    text-decoration:none !important;
    letter-spacing:.6px !important;
    text-transform:uppercase !important;
    line-height:1 !important;
    padding:8px 10px !important;
    border-radius:10px !important;
}

/* ----------------------------------------------
    POPUP CONFIRM
---------------------------------------------- */
.popup-confirm{
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.popup-confirm.active{ display:flex; }

.popup-content{
    background:#ffffff;
    padding: 30px;
    max-width: 420px;
    width: 90%;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 20px 55px rgba(0,0,0,0.18);
    border:1px solid rgba(0,0,0,.10);
}
.popup-content h3{
    margin-bottom: 10px;
    color: #111;
}
.popup-content p{
    color: #444;
    margin-bottom: 20px;
    line-height: 1.5;
}
.popup-btn{
    background: var(--brand);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 900;
    transition:.25s;
}
.popup-btn:hover{
    background: var(--brand-2);
    opacity:1;
}

/* ----------------------------------------------
    RESPONSIVE
---------------------------------------------- */
@media(max-width:900px){
    .footer-top{
        flex-direction:column;
        text-align:center;
    }
    .footer-col{ text-align:center; }
}

@media(max-width:780px){
    .nav-toggle{ display:flex; }
    .nav-links{
        position:absolute;
        top:100%; right:0;
        background:#ffffff;
        flex-direction:column;
        align-items:flex-start;
        padding:12px 18px;
        gap:10px;
        min-width:240px;
        display:none;
        border-radius:0 0 0 16px;
        box-shadow:0 12px 30px rgba(0,0,0,.12);
        border:1px solid rgba(0,0,0,.10);
    }
    .navbar.nav-open .nav-links{ display:flex; }
}

@media(max-width:600px){
    .section{ padding:70px 0; }
    .field-row{ flex-direction:column; }
    .hero-logo{ max-width:240px; }
}
