/* ==================================================
   ARTNS — STYLE GLOBAL
   ================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #d4d2ce;
    color: #242321;
    font-family: "DM Sans", Arial, sans-serif;
    font-weight: 300;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================
   HEADER
   ========================= */

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 5vw;
}

.logo {
    font-size: 14px;
    letter-spacing: 0.15em;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 12px;
    letter-spacing: 0.12em;
    transition: opacity 0.3s ease;
}

.main-nav a:hover {
    opacity: 0.5;
}

/* =========================
   TITRES
   ========================= */

h1,
h2,
h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 400;
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
    margin: 0 5vw;
    padding: 30px 0 50px;
    border-top: 1px solid rgba(36, 35, 33, 0.25);
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    letter-spacing: 0.08em;
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 700px) {

    .site-header {
        padding: 25px 6vw;
    }

    .main-nav {
        gap: 15px;
    }

    .main-nav a {
        font-size: 10px;
    }

    .site-footer {
        margin: 0 6vw;
    }

```css
}
/* ================================
   MENU DÉROULANT
   ================================ */

.nav-dropdown {
    position: relative;
}

/* Menu principal caché */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    padding-top: 15px;
    z-index: 1000;
}

/* Ouverture au survol */
.nav-dropdown:hover .dropdown-menu {
    display: block;
}

/* Éléments du menu */
.dropdown-menu a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    white-space: nowrap;
}

/* Sous-menu */
.submenu {
    position: relative;
}

/* Sous-menu caché */
.submenu-content {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 180px;
    z-index: 1000;
}

/* Affichage au survol */
.submenu:hover > .submenu-content {
    display: block;
}

/* Liens des sous-menus */
.submenu-content a {
    display: block;
    white-space: nowrap;
}

/* Curseur */
.dropdown-menu .submenu > a {
    cursor: pointer;
}
















