body {
    font-family: Georgia, 'Times New Roman', serif;
    background-color: #0d0d0d;
    color: #e8e8e8;
    line-height: 1.7;
}

/* ===== NAVBAR ===== */
.nav {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 100;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 5px;
    color: #fff;
    text-transform: uppercase;
    font-family: Georgia, serif;
}

.Annexes {
    display: flex;
    flex: 1;
    justify-content: center;
    gap: 4px;
}

.Annexes a {
    color: #aaa;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    padding: 9px 18px;
    border-radius: 4px;
    transition: color 0.2s ease, background 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.Annexes a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.btn-rdv {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: #c9a84c;
    color: #0d0d0d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
}

.btn-rdv:hover {
    background: #e0c06a;
    transform: scale(1.02);
}

.btn-rdv:active {
    transform: scale(0.97);
}
