@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@300;400;600;700&display=swap');

/* ── BASE ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #111111;
    color: #e8e8e8;
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ── HEADER ── */
header {
    position: sticky;
    top: 0;
    background-color: #0a0a0a;
    z-index: 999;
    border-bottom: 3px solid #f0c040;
}

header ul {
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0;
    max-width: 1000px;
}

header li {
    padding: 18px 22px;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.2s;
}

header li:first-child {
    margin-right: 40px;
    padding: 4px 16px;
}

header li:first-child img {
    height: 60px;
    width: 60px;
    object-fit: contain;
    border-radius: 50%;
    display: block;
}

header ul li:hover {
    color: #f0c040;
    cursor: pointer;
}

/* ── TITRES ── */
h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    line-height: 1;
}

h1 span {
    color: #f0c040;
}

h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    margin: 60px 0 30px;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #f0c040;
    margin: 10px auto 0;
}

h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 10px;
}

p {
    text-align: center;
    color: #aaaaaa;
    font-weight: 300;
    line-height: 1.8;
}

/* ── HERO ── */
.hero {
    background-color: #0a0a0a;
    padding: 90px 20px 80px;
    text-align: center;
    border-bottom: 1px solid #222222;
}

.hero p {
    font-size: 1.15rem;
    margin-top: 16px;
    color: #888888;
    letter-spacing: 0.03em;
}

.hero-btn {
    display: inline-block;
    margin-top: 36px;
    background-color: #f0c040;
    color: #0a0a0a;
    padding: 16px 44px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.2s;
}

.hero-btn:hover {
    background-color: #ffffff;
    cursor: pointer;
}

/* ── CARTES ── */
.carte {
    background-color: #1a1a1a;
    border-left: 4px solid #f0c040;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.2s;
}

.carte:hover {
    background-color: #1f1f1f;
    transform: translateY(-3px);
}

/* ── GRILLE 3 COLONNES ── */
.grille-3 {
    display: flex;
    justify-content: center;
    gap: 2px;
    width: 900px;
    margin: 30px auto;
}

.grille-3 .carte {
    width: 33%;
}

/* ── GRILLE 2 COLONNES ── */
.grille-2 {
    display: flex;
    justify-content: center;
    gap: 2px;
    width: 900px;
    margin: 30px auto;
    flex-wrap: wrap;
}

.grille-2 .carte {
    width: 49.5%;
}

/* ── BLOC CENTRÉ ── */
.bloc-centre {
    background-color: #1a1a1a;
    border-left: 4px solid #f0c040;
    width: 600px;
    margin: 30px auto;
    padding: 30px 40px;
    text-align: left;
}

.bloc-centre p {
    text-align: left;
    padding: 6px 0;
    border-bottom: 1px solid #252525;
    color: #aaaaaa;
}

.bloc-centre p:last-child {
    border-bottom: none;
}

/* ── PRIX ── */
.prix {
    font-family: 'Bebas Neue', sans-serif;
    color: #f0c040;
    font-size: 2rem;
    letter-spacing: 0.1em;
    margin: 12px 0;
    text-align: center;
}

/* ── LISTE ── */
.carte ul {
    text-align: left;
    margin: 14px auto 0;
    padding-left: 18px;
    color: #888888;
    line-height: 2.1;
    font-weight: 300;
    width: fit-content;
}

/* ── TABLEAU ── */
table {
    margin: 30px auto;
    border-collapse: collapse;
    width: 700px;
}

th {
    background-color: #1a1a1a;
    color: #f0c040;
    padding: 16px 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    border-bottom: 2px solid #f0c040;
}

td {
    background-color: #141414;
    border-bottom: 1px solid #222222;
    padding: 14px 20px;
    text-align: center;
    color: #aaaaaa;
    font-weight: 300;
}

tr:hover td {
    background-color: #1a1a1a;
    color: #e8e8e8;
}

/* ── FOOTER ── */
footer {
    background-color: #0a0a0a;
    border-top: 3px solid #f0c040;
    margin-top: 80px;
    padding: 40px 20px;
    text-align: center;
}

footer p {
    color: #555555;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ── CITATION ── */
.citation {
    background-color: #0a0a0a;
    padding: 50px 20px;
    text-align: center;
    border-top: 1px solid #1f1f1f;
    border-bottom: 1px solid #1f1f1f;
    margin: 60px 0;
}

.citation p {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.12em;
    color: #333333;
    text-transform: uppercase;
}

.citation span {
    color: #f0c040;
}

/* ── RESPONSIVE TELEPHONE ── */

@media (max-width: 768px) {

    /* Header */
    header ul {
        width: 95%;
        flex-wrap: wrap;
        border-radius: 20px;
        justify-content: center;
    }

    header li {
        padding: 8px 10px;
        font-size: 0.85rem;
    }

    header li:first-child {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-right: 0;
    }

    /* Titres */
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    /* Hero */
    .hero {
        padding: 40px 15px 30px;
    }

    /* Grilles — tout passe en colonne */
    .grille-3 {
        flex-direction: column;
        width: 90%;
    }

    .grille-3 .carte {
        width: 100%;
    }

    .grille-2 {
        flex-direction: column;
        width: 90%;
    }

    .grille-2 .carte {
        width: 100%;
    }

    /* Bloc centré */
    .bloc-centre {
        width: 90%;
    }

    /* Tableau */
    table {
        width: 90%;
        font-size: 0.85rem;
    }

    th, td {
        padding: 10px 8px;
    }

    /* Footer */
    footer {
        padding: 20px 15px;
    }
}