@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Montserrat:wght@200;400;600&display=swap');

:root {
    --bg: #0A192F;
    --text: #F5F5DC;
    --accent: #C5A059;
    --transition: all 0.3s ease-in-out;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

/* --- HEADER FIN & HORIZONTAL --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background: rgba(10, 25, 47, 0.95);
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.logo-link { display: flex; align-items: center; text-decoration: none; }

nav { display: flex; gap: 30px; }

nav a {
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 400;
    position: relative;
    padding: 10px 0;
    transition: var(--transition);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: var(--transition);
}

nav a:hover::after { width: 100%; }
nav a:hover { color: var(--accent); }

/* --- FOOTER STRUCTURÉ --- */
footer {
    background: #06101f;
    border-top: 1px solid var(--accent);
    padding: 60px 5% 20px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    color: var(--accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text); text-decoration: none; font-size: 0.85rem; opacity: 0.7; }
.footer-col ul li a:hover { opacity: 1; color: var(--accent); }

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    font-size: 0.75rem;
    opacity: 0.5;
    letter-spacing: 1px;
}

/* --- CONTENU --- */
.container { max-width: 1100px; margin: 0 auto; padding: 40px 20px; }
h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--accent); text-transform: uppercase; }