/* --- YOLVENZA STYLE CORE (LOI UNIQUE) --- */
/* Vibration: Noir, Blanc, 777, Chocolat Luxe */

:root {
    --bg-color: #000000;       /* Noir Pur - Le Void */
    --text-main: #FFFFFF;      /* Blanc Pur - La Lumière */
    --text-sub: #777777;       /* Gris 777 - L'Équilibre */
    --choco-dark: #3E2723;     /* Chocolat Profond - La Terre */
    --choco-light: #5D4037;    /* Brun Roi - Le Luxe */
    --choco-hover: #795548;    /* Touche Cuivrée */
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- CORPS DE PAGE & FOOTER STICKY --- */
body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    
    /* La magie pour que le footer reste en bas */
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
}

/* --- NAVIGATION --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid var(--choco-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-main);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-sub); /* 777 par défaut */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-main); /* Blanc au survol */
}

/* --- CONTENEUR PRINCIPAL (Pour pousser le footer) --- */
/* S'applique à .hero-section (landing) ou .page-container (gallery) */
.hero-section, .page-container {
    flex: 1; /* Prend tout l'espace disponible */
    display: flex;
    flex-direction: column;
}

/* Style spécifique Landing Page */
.hero-section {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
}

.content-box {
    max-width: 800px;
    animation: fadeIn 1.5s ease-in-out;
}

.title-main {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.subtitle-777 {
    color: var(--text-sub);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 5px;
    margin-bottom: 30px;
}

.separator {
    width: 60px;
    height: 3px;
    background-color: var(--choco-light);
    margin: 0 auto 30px auto;
}

.description {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* --- BOUTONS CHOCOLAT LUXE --- */
.cta-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-chocolate {
    background-color: var(--choco-dark);
    color: var(--text-main);
    border: 1px solid var(--choco-dark);
}

.btn-chocolate:hover {
    background-color: var(--choco-hover);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(93, 64, 55, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-sub);
    border: 1px solid var(--text-sub);
}

.btn-outline:hover {
    color: var(--text-main);
    border-color: var(--text-main);
    transform: translateY(-3px);
}

/* --- GALERIE & ARTISTES --- */
/* Dans style.css */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    
    /* On augmente le padding haut/bas pour aérer (de 50px à 80px ou 100px) */
    padding: 80px 20px; 
    
    text-align: center;
    width: 100%;
    
    /* Pour centrer verticalement si la page est grande */
    display: flex;
    flex-direction: column;
    justify-content: center; 
    flex: 1; /* Prend l'espace disponible */
}

.section-title {
    font-size: 1.5rem;
    color: var(--text-sub);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.artists-grid, .misc-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centrage automatique */
    gap: 40px;
    margin-bottom: 80px;
}

.artist-card {
    background-color: #0a0a0a;
    border: 1px solid #1a1a1a;
    padding: 30px;
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-5px);
    border-color: var(--choco-light);
}

.artist-logo {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    object-fit: contain;
    
    /* OPTION A : Si tu veux garder tes logos tels quels (recommandé) */
    filter: none; 
    
    /* OPTION B : Si tu veux juste un léger effet blanc sans saturer à fond */
    /* filter: grayscale(100%) brightness(120%); */
}

.artist-name {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.artist-alias {
    color: var(--text-sub);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--choco-dark);
    color: white;
    text-decoration: none;
    border-radius: 2px;
    font-size: 0.8rem;
    transition: background 0.3s;
}

.social-btn:hover {
    background-color: var(--choco-hover);
}

.misc-item {
    width: 300px;
    /* Ligne 'group' supprimée */
}

.misc-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 2px;
    filter: grayscale(80%);
    transition: filter 0.3s, transform 0.3s;
}

.misc-item:hover .misc-image {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.misc-caption {
    color: var(--text-sub);
    margin-top: 10px;
    font-size: 0.9rem;
}

/* --- FOOTER --- */
.footer-modular {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid var(--choco-dark);
    background-color: #050505;
    margin-top: auto; /* Sécurité supplémentaire pour le coller en bas */
}

.footer-text-777 {
    color: var(--text-sub);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.footer-links {
    margin-top: 15px;
}

.link-777 {
    color: var(--text-sub);
    text-decoration: none;
    font-size: 0.85rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.link-777:hover {
    color: var(--text-main);
}

.separator-dot {
    color: var(--choco-dark);
    margin: 0 5px;
}

/* --- ANIMATION --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .title-main {
        font-size: 2rem;
    }
    .cta-container {
        flex-direction: column;
    }
}