/* Couleurs chaudes et vertes */
:root {
    --vert-fonce: #355E3B;
    --vert-clair: #A8D5BA;
    --brun-chaud: #8B4513;
    --beige: #FFFBEF;
    --blanc: #ffffff;
}

/* Réinitialisation */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: var(--beige);
    color: var(--vert-fonce);
    scroll-behavior: smooth;
    margin: 0px;
}

.header-spacer {
    height: 96px; /* ou la hauteur exacte de ta navbar, ici 80px + padding éventuel */
}

.logo img{
    height: 80px;
    width: auto;
    margin-right: 10px;
} 


/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 50; /* supérieur à tout le reste */
    background: var(--blanc);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


.navbar.hide {
    top: -100%;
    box-shadow: none;
}

.nav-links a {
    margin: 0 1rem;
    text-decoration: none;
    color: var(--vert-fonce);
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: var(--brun-chaud);
    font-size: 1.5rem;
}