:root {
    --vert-pernet: #afca12;
    --dark-bg: #1a1a1a;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f5f5f5;
    color: #222;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.info-band { margin-top: auto; }

/* ── TOPBAR ── */
.topbar {
    background: var(--dark-bg);
    color: #ccc;
    font-size: .82rem;
    padding: 6px 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
}
.topbar a { color: #ccc; text-decoration: none; }
.topbar a:hover { color: var(--vert-pernet); }

/* ── HEADER ── */
.site-header {
    position: relative;
    background: url('../img/MAISON-PERNET-fond-Header.jpg') center center / cover no-repeat;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px;
}
.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
}
.site-header > * { position: relative; z-index: 1; }

.header-logo img {
    max-width: 200px;
    width: 100%;
}

.header-title {
    text-align: center;
    color: #fff;
    flex: 1;
    padding: 0 30px;
    text-transform: uppercase;
}
.header-title h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: .5px;
}
.header-title p {
    font-size: 1.15rem;
    opacity: .9;
    margin: 0;
}

.header-brand img {
    max-width: 160px;
    width: 100%;
    opacity: .9;
}

/* ── CHOIX DÉPÔT ── */
.depot-block {
    background: #fff;
    text-align: center;
    padding: 44px 20px;
    border-bottom: 3px solid #eee;
}
.depot-label {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #111;
    margin-bottom: 20px;
}
.depot-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}
.btn-depot {
    background: var(--vert-pernet);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 999px;
    text-decoration: none;
    letter-spacing: .3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background .2s, transform .15s;
    width: 300px;
    line-height: 1.1;
}
.btn-depot:hover {
    background: #96b00f;
    color: #fff;
    transform: translateY(-2px);
}
.btn-depot--pernet { background: #b52373; }
.btn-depot--pernet:hover { background: #96195e; }
.btn-depot--demange { background: #f5cc00; }
.btn-depot--demange:hover { background: #d4af00; }

.btn-depot img {
    height: 80px;
    width: auto;
}


/* ── VIDEO ── */
.video-block {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
}
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
}
.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

/* ── INFO BAND ── */
.info-band {
    background: var(--dark-bg);
    color: #eee;
    text-align: center;
    padding: 22px 20px;
    font-size: 1.05rem;
    letter-spacing: .3px;
}
.info-band strong { color: var(--vert-pernet); }

/* ── FOOTER ── */
footer {
    background: #111;
    color: #aaa;
    padding: 40px 50px 24px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 28px;
    border-bottom: 1px solid #333;
}
.footer-logo img { max-width: 160px; }
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: .85rem;
    transition: color .2s;
}
.footer-links a:hover { color: var(--vert-pernet); }
.footer-links span { color: #555; }

.footer-c10 img {
    max-width: 100px;
    border-radius: 0px;
    padding: 6px 10px;
}

.footer-legal {
    margin-top: 22px;
    font-size: .75rem;
    color: #fff;
    line-height: 1.7;
    text-align: center;
}
.footer-legal .legal-icons {
    display: flex;
    gap: 22px;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.legal-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: .7rem;
    color: #555;
}
.legal-icon-item img { height: 50px; width: auto; }


/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        min-height: auto;
        gap: 20px;
    }
    .header-brand { display: none; }
    .header-title h1 { font-size: 1.7rem; }
    .promos-section { padding: 36px 16px; }
    footer { padding: 30px 20px 20px; }
    .footer-top { flex-direction: column; align-items: center; text-align: center; }
    .footer-links { justify-content: center; }
}
