:root {
    --bg-color: #0a0a0c;      
    --bg-accent: #121216;     
    --text-color: #f5f5f7;   
    --text-muted: #8e8e93;    
    --accent-color: #dadada43;  
    --font-title: 'Cocogoose Pro Trial', sans-serif;
    --font-body: 'Cocogoose Pro Trial', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    scroll-behavior: smooth; 
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden; 
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }

h2 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

@keyframes explodeIn {
    0% { 
        transform: scale(0.05) rotate(-35deg); 
        opacity: 0; 
        filter: blur(40px) brightness(4) contrast(2); 
    }
    45% { 
        transform: scale(1.25) rotate(8deg); 
        opacity: 1; 
        filter: blur(4px) brightness(1.8) contrast(1.2); 
    }
    70% { 
        transform: scale(0.92) rotate(-3deg); 
        filter: blur(0px) brightness(1);
    }
    100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.95; 
    }
}

/* --- Boutons --- */
.btn-primary {
    display: inline-block;
    color: var(--text-color);
    font-family: var(--font-title);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 14px 35px;          
    border-radius: 50px;         
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(10px);          
    -webkit-backdrop-filter: blur(10px);  
    border: 2px solid var(--text-color);  
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px); 
}

.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 60px; 
    background: rgba(10, 10, 12, 0.2); 
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px); 
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.4s ease, border-color 0.4s ease;
    transform: translate3d(0, 0, 0);       
    -webkit-backface-visibility: hidden;   
    backface-visibility: hidden;
    isolation: isolate;                     /
}

.logo-container { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 60px; width: auto; object-fit: contain; transition: filter 0.4s ease; }
.navbar nav ul { display: flex; list-style: none; align-items: center; }
.navbar nav ul li { margin-left: 35px; }

/* ⚡ CORRECTION : Texte blanc bien visible et pur sur l'accueil */
.navbar nav ul li a {
    text-decoration: none; 
    color: #ffffff;
    font-weight: 700; font-size: 1.1rem; text-transform: uppercase;
    transition: color 0.3s;
}
.navbar nav ul li a:hover { color: var(--accent-color); }

/* --- ⚡ NAVBAR UNIQUEMENT DANS LE BLOC À PROPOS (Zone Blanche) --- */
.navbar.light-zone { 
    background: rgba(255, 255, 255, 0.25); /* Blanc transparent flouté */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); 
}
.navbar.light-zone .logo-img { filter: invert(1); }
.navbar.light-zone nav ul li a { color: #0a0a0c; } /* Texte noir */
.navbar.light-zone nav ul li a:hover { color: var(--accent-color); }

.menu-toggle {
    display: none; 
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1010;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* Changement de couleur du bouton dans la zone blanche */
.navbar.light-zone .menu-toggle .bar {
    background-color: #0a0a0c;
}
/* --- Section Accueil (Hero) --- */
.hero {
    height: 110vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden; 
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(10, 10, 12, 0.4), rgba(10, 10, 12, 0.75)), 
                url('img/DSC07780\ \(1\).jpg') no-repeat center 20%/cover;
    transform: scale(1.05);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    text-align: center; 
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px; 
}

.hero-main-img {
    max-width: 100%; height: auto; max-height: 320px;   
    object-fit: contain; opacity: 0;        
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.7));
    animation: explodeIn 1.3s cubic-bezier(0.1, 0.9, 0.2, 1.05) forwards;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    height: 220px; 
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.6) 60%, #ffffff 100%);
    z-index: 2;
    pointer-events: none;
}


/* --- Section À Propos --- */
.about-section {
    position: relative;
    padding: 100px 0; 
    background: #ffffff; 
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr; 
    gap: 60px; max-width: 1150px; margin: 0 auto; padding: 0 40px;
    align-items: center; 
}

.about-image-wrapper {
    grid-column: 1; grid-row: 1;
    width: 100%; 
    display: flex; 
    justify-content: flex-start; 
    z-index: 10; 
}

.about-img {
    width: 100%; 
    max-width: 550px; 
    height: auto; 
    object-fit: contain; 
    
    -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
    
    opacity: 0;
    transform: translateX(-180px); 
    transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease;
}

.about-img.slide-in-active {
    opacity: 1;
    transform: translateX(0);
}

.about-text {
    grid-column: 2; grid-row: 1;
    display: flex; flex-direction: column; gap: 18px; 
    max-width: 440px; justify-self: end; text-align: left; 
}

.about-title {
    font-family: var(--font-title); font-size: 1.4rem; font-weight: 900; 
    text-transform: uppercase; letter-spacing: 3px; color: #0a0a0c; margin: 0;
}

.about-section .lead, .about-intro { font-size: 0.92rem; line-height: 1.7; color: #1c1c1e; margin: 0; }
.about-section .lead { font-weight: 400; }
.about-intro { font-weight: 300; color: #636366; }

.about-list { list-style: none; padding: 0; margin: 6px 0 0 0; display: flex; flex-direction: column; gap: 12px; }
.about-list li { font-size: 0.85rem; line-height: 1.6; color: #2c2c2e; margin: 0; }
.about-list li strong { color: #0a0a0c; font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; display: inline-block; margin-right: 5px; }


/* --- Section Events --- */
.events-section {
    position: relative;
    padding: 120px 0;
    background: #0a0a0c;
}

.events-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%;
    height: 160px; 
    background: linear-gradient(to bottom, #ffffff 0%, rgba(10, 10, 12, 0.4) 50%, #0a0a0c 100%);
    transform: translateY(-100%); 
    pointer-events: none;
}

.section-title { font-size: 2rem; letter-spacing: 3px; margin-bottom: 60px; font-weight: 900; text-transform: uppercase; }
.events-split-container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: start; }
.events-sub-title { font-family: var(--font-title); font-size: 1rem; text-transform: uppercase; letter-spacing: 4px; color: var(--text-muted); margin-bottom: 25px; border-left: 2px solid var(--accent-color); padding-left: 10px; }

.animate-card { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, box-shadow 0.4s; }
.animate-card:hover { transform: translateY(-5px) scale(1.01); border-color: rgba(250, 6, 6, 0.3); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4); }

.list-events-future { display: flex; flex-direction: column; gap: 15px; }
.event-row { display: flex; align-items: center; justify-content: space-between; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.04); padding: 20px 25px; border-radius: 8px; }

.date-box { display: flex; flex-direction: column; align-items: center; min-width: 65px; }
.date-box .day { font-size: 1.6rem; font-weight: 900; color: var(--text-color); }
.date-box .month { font-size: 0.75rem; color: var(--accent-color); font-weight: 700; letter-spacing: 1px; }
.event-details { flex-grow: 1; padding: 0 30px; }
.event-details h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 3px; }
.event-details p { color: var(--text-muted); font-size: 0.85rem; }

.btn-ticket { display: inline-block; padding: 9px 20px; background: transparent; border: 1px solid var(--text-color); color: var(--text-color); text-decoration: none; font-weight: 700; text-transform: uppercase; font-size: 0.75rem; border-radius: 4px; letter-spacing: 1px; transition: all 0.3s; }
.btn-ticket:hover { background: var(--text-color); color: var(--bg-color); }

.grid-events { display: grid; grid-template-columns: 1fr; gap: 20px; }
.event-card-past { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.04); border-radius: 8px; overflow: hidden; }
.event-img { height: 160px; background-size: cover; background-position: center; filter: grayscale(100%); transition: filter 0.4s; }
.event-card-past:hover .event-img { filter: grayscale(20%); }
.event-info { padding: 20px; }
.event-info h3 { font-size: 1.2rem; margin-bottom: 4px; }
.event-info .date { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 12px; font-weight: 600; }
.event-info .desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; margin-bottom: 15px; }
.btn-open-event { background: transparent; color: var(--text-color); border: 1px solid rgba(255, 255, 255, 0.15); padding: 7px 16px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; border-radius: 4px; cursor: pointer; transition: all 0.3s; }
.btn-open-event:hover { border-color: var(--text-color); background: rgba(255, 255, 255, 0.05); }

/* --- MODAL --- */
.event-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 2000; display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.event-modal.active { opacity: 1; pointer-events: all; }
.modal-overlay { position: absolute; width: 100%; height: 100%; background: rgba(5, 5, 7, 0.85); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); }
.modal-card { position: relative; background: #111114; border: 1px solid rgba(255, 255, 255, 0.08); width: 90%; max-width: 600px; max-height: 80vh; overflow-y: auto; padding: 40px; border-radius: 16px; z-index: 5; transform: scale(0.95); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.event-modal.active .modal-card { transform: scale(1); }
.modal-close { position: absolute; top: 15px; right: 20px; background: transparent; border: none; color: rgba(255, 255, 255, 0.5); font-size: 2rem; cursor: pointer; transition: color 0.2s; }
.modal-close:hover { color: #fff; }
.modal-header-meta { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; margin-bottom: 12px; }
.modal-date { color: var(--accent-color); }
.meta-separator { color: rgba(255, 255, 255, 0.2); }
.modal-location { color: #86868b; }
#modal-title { font-size: 1.8rem; margin-bottom: 12px; text-transform: uppercase; }
.modal-desc { color: #d1d1d6; font-size: 0.95rem; line-height: 1.6; margin-bottom: 25px; }
.modal-gallery { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px; 
}

@media (min-width: 600px) {
    .modal-gallery { grid-template-columns: repeat(3, 1fr); }
}

.modal-gallery img { 
    width: 100%; 
    height: 120px; 
    object-fit: cover; 
    border-radius: 6px; 
}

.modal-actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    width: 100%;
}
.btn-download-photos {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent; /* Fond transparent pour plus d'élégance */
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Bordure fine et discrète */
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 20px;
}

.btn-download-photos:hover {
    background: #ff0000; /* Ton rouge DSR au survol */
    border-color: #ff0000;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
    transform: translateY(-2px);
}
.image-viewer {
    display: none; /* Caché par défaut */
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.full-image {
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.close-viewer {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}
/*- Footer --- */
.site-footer {
    background-color: #050507; /* Noir encore plus dense pour sceller la page */
    padding: 100px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    font-family: var(--font-body);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: start;
}

/* --- 1. Colonne Logo --- */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo-link {
    display: inline-block;
    width: fit-content;
}

.footer-logo {
    height: 95px; 
    width: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.footer-logo:hover {
    transform: scale(1.03);
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.site-footer h4 {
    color: #ffffff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    font-weight: 800;
    position: relative;
}

.footer-contact-box {
    display: flex;
    flex-direction: column;
}

.contact-text {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-email {
    display: inline-block;
    width: fit-content;
    color: #ffffff;
    font-size: 1.05rem;
    text-decoration: none;
    font-weight: 700;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 0.5px;
}

.footer-email:hover {
    color: #0a0a0c;
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.footer-social-box {
    display: flex;
    flex-direction: column;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon-link svg {
    width: 22px;
    height: 22px;
}

.social-icon-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.05);
}

/* --- Ligne de fin (Copyright) --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 35px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.author-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.author-link:hover {
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    gap: 10px;
    font-size: 0.8rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #ffffff;
}

.footer-legal .separator {
    color: var(--text-muted);
}

.footer-bottom-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

/* --- Adaptations Mobile & Tablette Mises à Jour --- */
@media (max-width: 968px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-brand { grid-column: span 2; text-align: center; align-items: center; }
    .footer-logo { height: 85px; }
}

@media (max-width: 768px) {
    .site-footer { padding: 80px 0 30px 0; }
    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 50px;
        text-align: center;
    }
    .footer-brand { grid-column: span 1; }
    .footer-email { margin: 0 auto; width: 100%; max-width: 320px; }
    .social-icons-grid { justify-content: center; }
    .footer-bottom-content {
        flex-direction: column !important;
        gap: 15px;
        text-align: center;
    }
.hero-bg {
        background-position: 40% 20% !important; 
        background-size: cover; 
    }

}

.merch-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%;
    height: 120px; /* Réduit à 120px */
    background: linear-gradient(to bottom, #0a0a0c 0%, rgba(10, 10, 12, 0.2) 50%, #ffffff 100%);
    transform: translateY(-100%);
    pointer-events: none;
}

.merch-section {
    position: relative;
    padding: 180px 0 120px 0;
    background: #ffffff; /* Fond blanc comme À Propos */
}

/* Force le titre à être noir sur fond blanc */
.merch-section .section-title {
    color: #0a0a0c;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.merch-card {
    background: #f5f5f7;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s;
}

.merch-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

.merch-img-container {
    position: relative;
    background: #e5e5ea; /* Gris clair moderne en fallback */
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.merch-img {
    width: 85%;          
    height: 80%;         
    object-fit: cover;    /* 💡 Changé : "cover" va remplir proprement le carré sans déformer l'image */
    opacity: 1;           /* ⚡ FIX : On remet l'opacité à 100% pour voir ta photo normalement ! */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.merch-card:hover .merch-img {
    transform: scale(1.08) rotate(3deg);
}

.merch-badge {
    position: absolute;
    top: 15px; left: 15px;
    background: #0a0a0c;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.merch-meta {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #ffffff;
    flex-grow: 1;
}

.merch-cat {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #8e8e93;
    font-weight: 700;
    letter-spacing: 1px;
}

.merch-title {
    font-size: 1.05rem;
    color: #0a0a0c;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -0.5px;
}

.merch-price {
    font-size: 1.1rem;
    color: #0a0a0c; 
    font-weight: 700;
    margin-bottom: 8px;
}

.btn-merch {
    background: #0a0a0c;
    color: #ffffff;
    border: none;
    padding: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.2s;
    margin-top: auto;
}

.btn-merch:hover {
    background: #0a0a0c;
    color: #ffffff;                  /* Force le texte à rester blanc */
    transform: translateY(-2px);     /* Micro-animation de levée */
    box-shadow: 0 8px 20px rgba(250, 6, 6, 0.3); /* Effet néon au sol */
    transition: all 0.3s ease;
}

/* --- ⚡ ANIMATIONS FONDUES & APPARITION (Fade Up Cascade) --- */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.fade-up.fade-up-active {
    opacity: 1;
    transform: translateY(0);
}

.merch-grid .merch-card:nth-child(1) { transition-delay: 0.1s; }
.merch-grid .merch-card:nth-child(2) { transition-delay: 0.25s; }
.merch-grid .merch-card:nth-child(3) { transition-delay: 0.4s; }

.matos-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--bg-color); 
}

.matos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.matos-card {
    background: var(--bg-accent); 
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s;
}

.matos-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(250, 6, 6, 0.2); 
}

.matos-img-container {
    position: relative;
    background: #18181c;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.matos-img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    opacity: 0.85;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
    transform: scale(0.9); 
}

.matos-card:hover .matos-img {
    transform: scale(0.85); 
    opacity: 1;
}

.matos-badge {
    position: absolute;
    top: 15px; left: 15px;
    background: var(--accent-color); 
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.matos-meta {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.matos-cat {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 1px;
}

.matos-title {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -0.5px;
}

.matos-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 5px;
}

.matos-price {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 700;
    margin-top: auto; 
    margin-bottom: 12px;
}

.matos-price span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

.btn-matos {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-matos:hover {
    background: #ffffff;
    color: #0a0a0c;
    border-color: #ffffff;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.matos-grid .matos-card:nth-child(1) { transition-delay: 0.1s; }
.matos-grid .matos-card:nth-child(2) { transition-delay: 0.25s; }
.matos-grid .matos-card:nth-child(3) { transition-delay: 0.4s; }


@media (max-width: 968px) {
    .navbar { padding: 15px 25px; }
    .navbar nav ul li { margin-left: 20px; }
    .navbar nav ul li a { font-size: 0.9rem; }
    .logo-img { height: 45px; }
    
    .about-container { grid-template-columns: 1fr; gap: 40px; padding: 0 25px; }
    .about-image-wrapper { grid-column: 1; grid-row: 2; justify-content: center; }
    .about-text { grid-column: 1; grid-row: 1; max-width: 100%; justify-self: center; text-align: center; align-items: center; }
    .about-img { transform-origin: center center; transform: translateX(-100px) scale(1.15); }
    .about-img.slide-in-active { transform: translateX(0) scale(1.15); }
    
    .events-split-container { grid-template-columns: 1fr; gap: 50px; }
    .merch-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .matos-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    
    .footer-container { gap: 40px; grid-template-columns: 1.2fr 1fr 1fr; }
}

/* 📱 SMARTPHONES (MOBILE) */
@media (max-width: 768px) {
    h2 { font-size: 2rem; }
    
    /* Navigation Mobile */
    .navbar { 
        padding: 15px 25px; 
        flex-direction: row; 
        justify-content: space-between;
        position: fixed; 
        background: rgba(10, 10, 12, 0.25); 
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    .menu-toggle { display: flex; }
    .navbar.light-zone { background: rgba(255, 255, 255, 0.25); }
    .nav-menu { display: none; }
    
    .nav-menu.active {
        display: block;
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background: rgba(10, 10, 12, 0.95);
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar nav ul { width: 100%; flex-direction: column; gap: 15px; }
    .navbar nav ul li { margin: 0; text-align: center; }
    
    /* Sections */
    .hero { padding-top: 120px; }
    .hero-main-img { max-height: 240px; }
    .event-row { flex-direction: column; text-align: center; gap: 15px; padding: 20px; }
    .event-details { padding: 0; }
    
    /* Grilles Produits & Matos repassent sur 1 seule colonne */
    .merch-grid { grid-template-columns: 1fr; gap: 30px; }
    .matos-grid { grid-template-columns: 1fr; gap: 30px; }

    /* ⚡ FIX FOOTER MOBILE : Tout est centré proprement, aucun vieux style qui traîne */
    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .footer-brand {
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        align-self: center !important;
    }
    
    .footer-tagline {
        margin: 0 auto;
    }
    
    .footer-bottom-content {
        flex-direction: column !important;
        gap: 12px;
        text-align: center;
    }
    
    .social-links a:hover {
        transform: translateY(-3px); /* Animation verticale plus naturelle sur mobile */
    }
}
.modal-gallery img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

#image-viewer {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

#image-viewer img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

/*PRESSKIT */
.pk-container { max-width: 1000px; margin: 150px auto; padding: 0 40px; }

.pk-header { text-align: center; margin-bottom: 80px; }
.pk-header h1 { font-size: 4rem; text-transform: uppercase; letter-spacing: -2px; }

.pk-section { margin-bottom: 80px; }
.pk-section-title { font-size: 1.5rem; margin-bottom: 30px; border-left: 3px solid #ff0000; padding-left: 15px; }

.pk-card { background: #121216; padding: 40px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); }

.event-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.event-item { background: #121216; padding: 20px; border-radius: 12px; }
.media-placeholder { height: 200px; background: #1a1a1f; margin-top: 15px; border-radius: 8px; border: 1px dashed #333; }

.btn-download { 
    display: inline-block; padding: 15px 30px; background: #fff; color: #000; 
    text-decoration: none; font-weight: 800; border-radius: 6px; 
    transition: 0.3s;
}
.btn-download:hover { background: #ff0000; color: #fff; }
.event-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
}

.event-item { 
    background: #121216; 
    padding: 25px; 
    border-radius: 12px; 
    border: 1px solid rgba(255,255,255,0.05);
}

.media-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px; 
    margin-top: 15px; 
}

.media-grid img { 
    width: 100%; 
    height: 120px; 
    object-fit: cover; 
    border-radius: 4px; 
    cursor: pointer;
    transition: transform 0.3s;
}

.media-grid img:hover { transform: scale(1.05); }

.video-wrapper video { 
    width: 100%; 
    height: 120px; 
    border-radius: 4px; 
    background: #000; 
}
.legal-page {
    max-width: 800px;
}

.legal-page h1 {
    font-family: var(--font-title);
    font-size: 2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #fff;
}

.legal-section {
    margin-bottom: 40px;
    padding: 20px;
    background: var(--bg-accent);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-section h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ff0000; /* Rappel de ton accent rouge */
}

.legal-section p {
    color: var(--text-muted);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.legal-section a {
    color: #fff;
    text-decoration: underline;
}
#newsletter-popup {
    display: none; 
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85); /* Fond noir transparent */
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px); /* Effet flou moderne */
}

.modal-content {
    background: #0a0a0c; /* La couleur de ton body */
    padding: 40px;
    border: 1px solid #333;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
    text-transform: uppercase;
}

.modal-content p {
    color: #8e8e93;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.modal-content input[type="email"] {
    width: 100%;
    padding: 12px;
    background: #121216;
    border: 1px solid #333;
    color: #fff;
    border-radius: 6px;
    margin-bottom: 15px;
}

.checkbox-group {
    font-size: 0.75rem;
    color: #8e8e93;
    text-align: left;
    margin-bottom: 20px;
}

.modal-content button {
    width: 100%;
    padding: 12px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.modal-content button:hover {
    background: #ccc;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}
.nav-menu.active a {
    color: #ffffff !important;
}

.nav-menu.active a:hover {
    color: var(--accent-color) !important;
}