/* ================== STYLE GLOBAL ================== */
body {
    background-color: #253439;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

* {
    transition: all 0.3s ease;
}

/* ================== EN-TÊTE ================== */

.logo {
    width: clamp(60px, 8vw, 120px);
    height: auto;
    display: block;
    z-index: 10;
    transform: translateY(10%);
    margin-left: 1vw;
}

/* ================== NAVIGATION ================== */
nav {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 3em;
    padding-right: 2rem;
    padding-bottom: 1em;
    margin-top: -2vw;
}

nav a {
    color: #b29e84;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 1.2em;
}

nav a {
    position: relative;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -4px;
    background: #253439; /* couleur normale */
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
    background: #253439;
}

/* Lien actif (.page) */
nav a.page {
    color: #b29e84; /* texte blanc */
}

nav a.page::after {
    background: #b29e84; /* ligne blanche pour le lien actif */
}


/* ================== CORPS DE PAGE ================== */

.h1accueil{
    display: flex;
    justify-content: center;
}

h1{
    color: #b29e84;
    font-size: 4vw;
}

.paraacc{
    display: flex;
    justify-content: center;
    text-align: center;
}

.paraacc p{
    color: #f6f4f1;
    font-size: 1rem;
}