/* Couleurs Signature */
:root {
    --bordeaux: #4A0E0E;
    --gold: #C5A059;
    --off-white: #F9F7F2;
    --black: #1A1A1A;
}

body {
    background-color: var(--off-white);
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

h1, h2 {
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Navigation */
nav {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav ul { list-style: none; display: flex; justify-content: center; align-items: center; }
nav ul li { margin: 0 40px; }
.logo { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--bordeaux); }

/* Section Hero */
.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('ton-image-perleon.jpg');
    background-size: cover;
    color: white;
}

.btn-gold {
    padding: 15px 35px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    transition: 0.3s;
    margin-top: 20px;
}

.btn-gold:hover {
    background-color: var(--gold);
    color: white;
}