/* === Brand fonts === */
@font-face {
    font-family: 'DMSansLocal';
    src: url('../fonts/_Fonts/DM Sans/DMSans-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fractul';
    src: url('../fonts/_Fonts/Fractul/Fractul-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fractul';
    src: url('../fonts/_Fonts/Fractul/Fractul-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-base: 'DMSansLocal', 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --font-head: 'Fractul', 'DMSansLocal', 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body {
    font-family: var(--font-base);
}

h1,
h2,
h3,
.h1,
.h2,
.h3,
.brand {
    font-family: var(--font-head);
    letter-spacing: .3px
}

:root {
    /* Charte */
    --blue: #12314c;
    /* Prussian blue */
    --blue-alt: #1f5686;
    /* secondaire */
    --gold: #c9a173;
    /* Gold lion */
    --beige: #cab99f;
    --gray-100: #f2f2f2;
    --black: #080c11;
    --white: #fff;

    /* UI */
    --radius: 14px;
    --shadow: 0 6px 18px rgba(0, 0, 0, .08);
    --container: 1100px;
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0
}

body {
    font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--blue);
    background: var(--gray-100);
    line-height: 1.6;
}

.container {
    max-width: var(--container);
    margin: auto;
    padding: 0 20px
}

/* Header */
.site-header {
    background: #12314c;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 50px 0;
}



/* Nav */
.site-nav ul {
    list-style: none;
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 0;
    justify-content: center
}

.site-nav a {
    display: inline-block;
    padding: 10px 12px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.site-nav a[aria-current="page"],
.site-nav a.active {
    background: rgba(201, 161, 115, .18);
    /* or chic */
    outline: 2px solid var(--gold);
}

/* Mobile burger (optionnel) */
.nav-toggle {
    display: none
}

/* Hero */
.hero {
    background: var(--blue);
    color: var(--white);
    padding: 72px 0;
    text-align: center;
}

.hero h1 {
    font-size: clamp(28px, 4vw, 44px);
    margin: 0 0 10px
}

.hero p {
    opacity: .9;
    margin: 0 0 22px
}

.cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

/* Buttons */
.btn {
    border: 0;
    padding: 12px 18px;
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    display: inline-block
}

.btn-primary {
    background: var(--gold);
    color: var(--blue)
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, .6)
}

.btn-primary:hover {
    filter: brightness(.95)
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .1)
}

/* Layout blocs */
.cols {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, 1fr);
    margin: 36px 0
}

.cols article {
    background: var(--white);
    padding: 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

h2 {
    margin: 0 0 8px
}

/* Footer */
.site-footer {
    background: var(--blue);
    color: var(--white);
    margin-top: 40px;
    padding: 32px 0
}

.footer-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: 2fr 1fr 1fr
}

.footer-logo {
    height: 34px;
    margin-bottom: 10px;
    filter: drop-shadow(0 1px 0 rgba(0, 0, 0, .2))
}

.small {
    opacity: .85;
    font-size: .9rem
}

.footer-links,
.socials {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-links li,
.socials li {
    margin: 6px 0
}

.footer-links a,
.socials a {
    color: var(--white);
    text-decoration: none
}

.footer-links a:hover,
.socials a:hover {
    opacity: .85
}

/* Utilitaires */
.link {
    color: var(--blue-alt);
    text-decoration: none;
    font-weight: 600
}

.link:hover {
    text-decoration: underline
}

/* Responsive */
@media (max-width:900px) {
    .cols {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }
}

.header-col {
    display: flex;
    flex-direction: column;
    /* empile logo et menu */
    align-items: center;
    /* centre horizontalement */
    gap: 12px;
    /* espace entre logo et liens */
    padding: 14px 0;
}

.logo1 {
    width: clamp(90px, 22vw, 150px);
    height: auto;
    display: block;
}


.site-nav ul {
    display: flex;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex-wrap: wrap;
    /* permet retour à la ligne sur petit écran */
}

.menu .muted {
    opacity: .75;
    margin-top: 4px
}

.menu-section {
    margin: 28px 0
}

.menu-title {
    color: var(--white);
    background: var(--blue);
    display: inline-block;
    padding: 6px 12px;
    border-radius: 10px;
    margin: 0 0 12px;
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px
}

.menu-item {
    background: var(--white);
    border-radius: 12px;
    padding: 12px;
    box-shadow: var(--shadow)
}

.item-line {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: baseline
}

.item-title {
    font-weight: 700;
    color: var(--blue)
}

.item-title .unit {
    font-weight: 400;
    opacity: .8;
    margin-left: 6px
}

.item-price {
    font-weight: 800;
    color: var(--blue)
}

.item-desc {
    margin: 6px 0 0;
    opacity: .9
}

.badge {
    display: inline-block;
    margin-left: 8px;
    font-size: .8rem;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(201, 161, 115, .18);
    border: 1px solid var(--gold);
    color: var(--blue)
}

.sep {
    border: none;
    height: 1px;
    background: rgba(0, 0, 0, .1);
    margin: 24px 0
}

