:root {
    --bg-dark: #111111;      /* Noir Profond */
    --bg-card: #1A1A1A;      /* Gris Anthracite pour les blocs */
    --text-primary: #EDEDED; /* Blanc cassé lisible */
    --text-secondary: #A0A0A0; /* Gris moyen */
    --accent: #D4AF37;       /* Or subtil pour les CTA (Optionnel) */
    --font-brand: 'Playfair Display', serif; /* Look "Grand" Luxe */
    --font-body: 'Lato', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    margin: 0;
    line-height: 1.6;
}

/* BRANDING HEADER */
.brand-name {
    font-family: var(--font-brand);
    font-size: clamp(2rem, 5vw, 4rem); /* Responsive typography */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FFF;
    text-align: center;
    margin-top: 1rem;
}

.brand-sub {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* IMAGES & PLACEHOLDERS */
.placeholder-box {
    background-color: #222;
    border: 1px dashed #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-family: monospace;
}

/* BOUTONS CTA */
.btn-cta {
    background-color: #FFF;
    color: #000;
    padding: 12px 30px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #FFF;
}
.btn-cta:hover {
    background-color: transparent;
    color: #FFF;
}

/* --- RESET & VARIABLES --- */
:root {
    --bg-dark: #0f0f0f;       /* Noir profond mais pas absolu */
    --bg-card: #1a1a1a;       /* Gris anthracite */
    --text-main: #e0e0e0;     /* Blanc cassé pour le confort */
    --text-muted: #999999;    /* Gris pour les infos secondaires */
    --accent: #D4AF37;        /* Or antique (subtil) */
    --font-title: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --spacing: 20px;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: 0.3s; }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; display: block; }

/* --- TYPOGRAPHIE BRANDING --- */
h1, h2, h3 { font-family: var(--font-title); font-weight: 400; text-transform: uppercase; letter-spacing: 0.05em; }

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    display: inline-block;
}

/* --- HEADER & NAV --- */
header {
    background: rgba(15, 15, 15, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand { text-align: left; }
.brand h1 { font-size: 1.8rem; margin: 0; letter-spacing: 0.15em; color: #fff; }
.brand span { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.3em; display: block; }

.nav-menu ul { list-style: none; display: flex; gap: 30px; }
.nav-menu a { font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; }
.nav-menu a.active { color: var(--accent); border-bottom: 1px solid var(--accent); }

/* Mobile Menu Trigger */
.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; }

/* --- LAYOUTS --- */
.container { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }
.narrow-container { max-width: 800px; margin: 0 auto; }

/* Grid System */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

/* --- CARDS (Galeries & Presse) --- */
.card {
    background: var(--bg-card);
    transition: transform 0.3s ease;
    overflow: hidden;
}
.card:hover { transform: translateY(-5px); }
.card-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card:hover img { transform: scale(1.05); }
.card-content { padding: 20px; }
.card-title { font-size: 1.2rem; margin-bottom: 5px; color: #fff; }
.card-meta { font-size: 0.85rem; color: var(--text-muted); font-style: italic; }
.card-text { font-size: 0.9rem; margin-top: 10px; color: #ccc; }

/* --- FORMS --- */
input, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: #222;
    border: 1px solid #333;
    color: #fff;
    font-family: var(--font-body);
}
input:focus, textarea:focus { border-color: var(--accent); outline: none; }
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
}
.btn:hover { background: #fff; color: #000; }

/* --- FOOTER --- */
footer {
    background: #000;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #222;
    margin-top: 60px;
}
.footer-links { margin: 20px 0; }
.footer-links a { margin: 0 15px; font-size: 0.9rem; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .header-container { flex-direction: column; align-items: flex-start; }
    .nav-menu { display: none; width: 100%; margin-top: 20px; }
    .nav-menu.active { display: block; }
    .nav-menu ul { flex-direction: column; gap: 15px; }
    .menu-toggle { display: block; position: absolute; right: 20px; top: 25px; }
    .grid-2 { grid-template-columns: 1fr; }
    .section-title { font-size: 2rem; }
}


/* --- GESTION DU MENU MOBILE --- */
@media (max-width: 768px) {
    /* 1. On affiche l'icône Hamburger */
    .menu-toggle {
        display: block !important; /* Force l'affichage du bouton ☰ */
        color: #fff;
        font-size: 2rem;
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 20px; /* Ajuste selon la hauteur de ton logo */
    }

    /* 2. On cache la liste des liens par défaut */
    .nav-menu ul {
        display: none; /* Caché par défaut */
        flex-direction: column;
        background-color: #000;
        position: absolute;
        top: 80px; /* Juste sous le header */
        left: 0;
        width: 100%;
        padding: 20px;
        border-bottom: 1px solid #333;
    }

    /* 3. Quand on clique (classe .active ajoutée par le JS), on affiche */
    .nav-menu.active ul {
        display: flex !important;
    }
    
    .nav-menu ul li {
        margin: 10px 0;
        text-align: center;
    }
}

@media (min-width: 769px) {
    .menu-toggle { display: none !important; } /* Caché sur PC */
    .nav-menu ul { display: flex !important; } /* Toujours visible sur PC */
}

