.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    background: rgba(255, 240, 210, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow var(--transition), background var(--transition);
}

body.scrolled .site-header {
    box-shadow: 0 12px 32px rgba(63, 30, 10, 0.16);
    background: rgba(255, 235, 196, 0.96);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 18px;
}

.logo a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--primary-dark);
    white-space: nowrap;
}

.logo a::before {
    content: "♪";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff8ee;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
}

.nav-right {
    min-width: 0;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
}

.main-nav::-webkit-scrollbar {
    display: none;
}

.main-nav a {
    position: relative;
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 10px 12px;
    border-radius: 999px;
    font-size: 0.90rem;
    font-weight: 700;
    color: var(--text-soft);
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.main-nav a:hover {
    background: rgba(163, 58, 29, 0.10);
    color: var(--primary-dark);
    transform: translateY(-1px);
}

.main-nav a.active {
    color: var(--primary-dark);
    background: rgba(163, 58, 29, 0.14);
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 5px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.burger {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface-strong);
    color: var(--primary-dark);
    font-size: 1.4rem;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.site-footer {
    margin-top: 80px;
    padding-top: 26px;
    background:
        linear-gradient(180deg, rgba(163, 58, 29, 0.08) 0%, rgba(63, 30, 10, 0.18) 100%);
    border-top: 1px solid var(--line);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 26px;
    padding: 28px 0 24px 0;
}

.footer-col {
    padding: 22px;
    border-radius: var(--radius-md);
    background: rgba(255, 240, 210, 0.74);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.footer-col strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.02rem;
    color: var(--primary-dark);
}

.footer-col p {
    margin-bottom: 8px;
    color: var(--text-soft);
}

.footer-col a {
    color: var(--text-soft);
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--primary-dark);
}

.footer-bottom {
    padding: 16px 0 28px 0;
    text-align: center;
    color: var(--text-soft);
    font-size: 0.92rem;
}
/* BANDE IMAGE HAUT DE PAGE */

.page-banner {
    width: 100%;
    margin-bottom: 28px;
}

.page-banner img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}
.page-banner {
    position: relative;
    width: 100%;
    margin-bottom: 28px;
    overflow: hidden;
    border-radius: 18px;
}

.page-banner img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.page-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.5)
    );
}

.page-banner-title {
    position: absolute;
    bottom: 18px;
    left: 24px;
    right: 24px;
    z-index: 2;
}

.page-banner-title h1 {
    margin: 0;
    color: white;
    font-size: 2rem;
    line-height: 1.2;
    text-shadow: 0 4px 14px rgba(0,0,0,0.4);
}
.site-header {
    padding: 18px 0;
    background: linear-gradient(180deg, rgba(255,240,210,0.95), rgba(255,240,210,0.85));
    border-bottom: 1px solid var(--line);
}

.header-inner {
    align-items: center;
}

.logo a {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.main-nav {
    gap: 12px;
}

.main-nav a {
    font-size: 0.95rem;
    padding: 10px 14px;
}