/* Mobile : fond noir, logo + tagline centrés */
@media (max-width: 900px) {
    .hero {
        background-image: none;
        background-color: var(--bg);
        background-attachment: scroll;
        justify-content: center;
        padding-bottom: 0;
    }

    .hero::after {
        display: none;
    }

    .hero-logo {
        transform: none;
        width: min(420px, 78vw);
        margin-bottom: 0.3rem;
    }

    .hero-content p {
        letter-spacing: 3px;
        font-size: 0.75rem;
    }
}

@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image { order: -1; }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-info { flex-direction: row; flex-wrap: wrap; gap: 2rem; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-h);
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(10,10,10,0.98);
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    .nav-links.open { display: flex; }

    .hamburger { display: flex; }

    .show-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }

    .show-ticket {
        grid-column: 2;
        align-self: start;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .photo-gallery { columns: 1; }
}

@media (max-width: 480px) {
    .hero-content h1 { letter-spacing: 6px; }

    .streaming-links,
    .social-links { flex-direction: column; }

    .show-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .show-date { flex-direction: row; gap: 0.4rem; align-items: baseline; }
    .show-date .day { font-size: 1.4rem; }

    .show-ticket { grid-column: 1; justify-self: center; }
}
