/* -----------------------------------
   BASE GÉNÉRALE — Noir & Or Premium
----------------------------------- */

body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #f2f2f2;
    font-family: "Inter", sans-serif;
    line-height: 1.6;
}

/* Conteneur des pages */
section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}

/* Titres premium */
h1, h2 {
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Liens */
a {
    color: #d4af37;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #b8922c;
}

/* -----------------------------------
   HEADER PREMIUM
----------------------------------- */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background-color: #000;
    border-bottom: 1px solid #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 1px;
}

/* Menu desktop */
.desktop-menu a {
    margin-left: 25px;
    font-size: 15px;
    opacity: 0.85;
}

.desktop-menu a:hover,
.desktop-menu .active {
    opacity: 1;
    color: #d4af37;
}

/* Icône hamburger */
.hamburger {
    font-size: 28px;
    cursor: pointer;
    display: none;
    color: #f2f2f2;
}

/* -----------------------------------
   MENU MOBILE PREMIUM
----------------------------------- */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100%;
    background-color: #111;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    transition: 0.35s ease-in-out;
    z-index: 999;
}

.mobile-menu a {
    padding: 15px 25px;
    border-bottom: 1px solid #1f1f1f;
    font-size: 17px;
}

.mobile-menu a:hover {
    background-color: #1a1a1a;
    color: #d4af37;
}

/* -----------------------------------
   BOUTONS PREMIUM
----------------------------------- */

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.35);
    backdrop-filter: blur(6px);
    color: #d4af37;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: rgba(212,175,55,0.35);
    border-color: rgba(212,175,55,0.55);
    color: #000;
}

/* -----------------------------------
   FOOTER
----------------------------------- */

.footer {
    text-align: center;
    padding: 25px;
    background-color: #000;
    border-top: 1px solid #1a1a1a;
    color: #777;
    font-size: 14px;
}

/* -----------------------------------
   RESPONSIVE
----------------------------------- */

/* MOBILE */
@media (max-width: 768px) {

    .desktop-menu {
        display: none;
    }

    .hamburger {
        display: block;
    }

    section {
        padding: 40px 20px;
    }
}

/* DESKTOP */
@media (min-width: 769px) {

    .mobile-menu {
        display: none;
    }

    .hamburger {
        display: none;
    }
}
