:<!DOCTYPE html>
<html lang="fr">
:root {
    --creme-soie: #F9F7F2;   /* Beige très clair, chic et moderne */
    --pourpre-royal: #4B2C6D; /* Le pourpre de votre logo */
    --or-mat: #C5A059;       /* L'or pour les détails */
    --anthracite: #2D2D2D;   /* Pour le texte lisible */
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--creme-soie);
    color: var(--anthracite);
}

/* Header & Navbar Centrale */
header {
    background: white;
    padding: 20px 0;
    display: flex;
    flex-direction: column; /* On empile logo puis menu */
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.main-logo {
    height: 120px; /* Logo bien grand et central */
    margin-bottom: 20px;
}

.navbar-center {
    width: 100%;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center; /* Centrage horizontal parfait */
    padding: 0;
    margin: 0;
}

.nav-links li {
    margin: 0 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--pourpre-royal);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--or-mat);
}

/* Section Hero */
.hero {
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    color: var(--pourpre-royal);
    margin-bottom: 10px;
}

.divider {
    height: 3px;
    width: 60px;
    background: var(--or-mat);
    margin: 20px auto;
}

/* Footer */
footer {
    background: var(--pourpre-royal);
    color: white;
    padding: 40px 0;
    text-align: center;
    position: relative;
}

.footer-socials {
    margin-bottom: 20px;
}

.footer-socials a {
    color: var(--or-mat);
    font-size: 1.5rem;
    margin: 0 15px;
    transition: transform 0.3s;
    display: inline-block;
}

.footer-socials a:hover {
    transform: translateY(-5px);
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.8;
}