/* ── Variables P2C ────────────────────────────────────────────────────────── */
:root {
    --bg:        #f1f1f1;
    --surface:   #ffffff;
    --surface2:  #f9f9f9;
    --border:    #e2e8f0;
    --border2:   #c3c4c7;
    --nav-bg:    #050d1f;
    --nav-bg2:   #0a1128;
    --primary:   #ffd700;
    --primary-h: #e6c200;
    --primary-d: #050d1f;
    --text:      #050d1f;
    --text2:     #0a1128;
    --muted:     #55555e;
    --muted2:    #64748b;
    --success:   #16a34a;
    --warning:   #d97706;
    --danger:    #dc2626;
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: system-ui, -apple-system, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ── Layout ───────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── Animations ───────────────────────────────────────────────────────────── */
@keyframes float-note {
    0%   { transform: translateY(0)     rotate(-10deg); opacity: 0; }
    15%  { opacity: 0.25; }
    85%  { opacity: 0.15; }
    100% { transform: translateY(-280px) rotate(15deg);  opacity: 0; }
}

@keyframes eq-bar {
    0%, 100% { transform: scaleY(0.2); }
    50%       { transform: scaleY(1); }
}

@keyframes pulse-ring {
    0%   { transform: scale(1);   opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ── Header ───────────────────────────────────────────────────────────────── */
.site-header { background: var(--nav-bg); border-bottom: 3px solid var(--primary); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; gap: 24px; height: 64px; }

.logo { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.logo-badge { background: var(--primary); color: var(--nav-bg); font-weight: 900; font-size: 0.9rem; padding: 4px 9px; border-radius: 4px; letter-spacing: 0.05em; display: flex; align-items: center; gap: 4px; }
.logo-badge .note { font-size: 1rem; }
.logo-name { font-size: 1rem; font-weight: 700; color: #ffffff; }

/* Égaliseur animé dans le logo */
.equalizer { display: inline-flex; align-items: flex-end; gap: 2px; height: 16px; margin-left: 4px; }
.equalizer span {
    width: 3px; background: var(--primary); border-radius: 2px 2px 0 0;
    transform-origin: bottom; animation: eq-bar 0.9s ease-in-out infinite alternate;
}
.equalizer span:nth-child(1) { animation-duration: 0.7s; height: 16px; }
.equalizer span:nth-child(2) { animation-duration: 1.1s; animation-delay: 0.15s; height: 16px; }
.equalizer span:nth-child(3) { animation-duration: 0.8s; animation-delay: 0.3s;  height: 16px; }
.equalizer span:nth-child(4) { animation-duration: 1.0s; animation-delay: 0.05s; height: 16px; }

.nav { display: flex; gap: 20px; }
.nav a { color: #94a3b8; font-size: 0.8rem; font-weight: 600; transition: color 0.15s; text-transform: uppercase; letter-spacing: 0.04em; }
.nav a:hover { color: var(--primary); }

.search-wrap { flex: 1; max-width: 340px; position: relative; margin-left: auto; }
.search-wrap input { width: 100%; background: var(--nav-bg2); border: 1px solid #2c3338; color: #ffffff; padding: 8px 14px; border-radius: 6px; font-size: 0.875rem; }
.search-wrap input::placeholder { color: #64748b; }
.search-wrap input:focus { outline: none; border-color: var(--primary); }
.search-results { position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: var(--surface); border: 1px solid var(--border2); border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); display: none; z-index: 200; }
.search-results.show { display: block; }
.search-result-item { padding: 10px 14px; font-size: 0.875rem; cursor: pointer; display: flex; justify-content: space-between; color: var(--text); }
.search-result-item:hover { background: var(--surface2); }
.search-result-type { color: var(--muted2); font-size: 0.75rem; }

/* ── Hero avec notes flottantes ───────────────────────────────────────────── */
.hero {
    background:
        linear-gradient(rgba(2,8,18,0.72) 0%, rgba(5,13,31,0.82) 100%),
        url('/img/banner-p2c.png') center / cover no-repeat;
    padding: 80px 0; text-align: center;
    position: relative; overflow: hidden;
}

/* Notes flottantes via pseudo-éléments */
.floating-notes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.floating-notes span {
    position: absolute; font-size: 1.8rem; color: var(--primary);
    animation: float-note linear infinite;
    bottom: -20px; opacity: 0;
}
.floating-notes span:nth-child(1)  { left:  5%; animation-duration: 7s;  animation-delay: 0s;   font-size: 1.4rem; }
.floating-notes span:nth-child(2)  { left: 12%; animation-duration: 9s;  animation-delay: 1.5s; font-size: 2.2rem; }
.floating-notes span:nth-child(3)  { left: 22%; animation-duration: 6s;  animation-delay: 0.8s; font-size: 1.2rem; }
.floating-notes span:nth-child(4)  { left: 35%; animation-duration: 8s;  animation-delay: 2.2s; font-size: 1.8rem; }
.floating-notes span:nth-child(5)  { left: 48%; animation-duration: 10s; animation-delay: 0.3s; font-size: 1.5rem; }
.floating-notes span:nth-child(6)  { left: 58%; animation-duration: 7.5s;animation-delay: 1.8s; font-size: 1rem;  }
.floating-notes span:nth-child(7)  { left: 70%; animation-duration: 8.5s;animation-delay: 0.6s; font-size: 2rem;  }
.floating-notes span:nth-child(8)  { left: 80%; animation-duration: 6.5s;animation-delay: 2.8s; font-size: 1.3rem; }
.floating-notes span:nth-child(9)  { left: 90%; animation-duration: 9.5s;animation-delay: 1.1s; font-size: 1.7rem; }
.floating-notes span:nth-child(10) { left: 96%; animation-duration: 7.2s;animation-delay: 3.5s; font-size: 1.1rem; }

.hero-content { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.02em; color: #ffffff; }
.hero h1 span { color: var(--primary); }
.hero-sub { color: #94a3b8; font-size: 1rem; margin-bottom: 32px; }
.hero-form { display: flex; gap: 12px; max-width: 560px; margin: 0 auto; }
.hero-form input { flex: 1; background: #0a1128; border: 1px solid #2c3338; color: #ffffff; padding: 14px 18px; border-radius: 6px; font-size: 1rem; }
.hero-form input::placeholder { color: #64748b; }
.hero-form input:focus { outline: none; border-color: var(--primary); }
.hero-form button { background: var(--primary); color: var(--nav-bg); border: none; padding: 14px 24px; border-radius: 6px; font-size: 1rem; font-weight: 800; cursor: pointer; text-transform: uppercase; letter-spacing: 0.05em; }
.hero-form button:hover { background: var(--primary-h); }

/* Waveform décoratif en bas du hero */
.hero::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 6px;
    background: repeating-linear-gradient(
        90deg,
        var(--primary) 0px, var(--primary) 4px,
        transparent 4px, transparent 12px
    );
    opacity: 0.4;
}

/* ── Info bar ─────────────────────────────────────────────────────────────── */
.info-bar { background: var(--surface); border-bottom: 1px solid var(--border); padding: 14px 0; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.info-bar-inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 12px; }
.info-item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--muted); }
.info-item strong { color: var(--text); }

/* ── Sections ─────────────────────────────────────────────────────────────── */
.section { padding: 60px 0; }
.section-dark { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-title {
    font-size: 1.4rem; font-weight: 800; margin-bottom: 24px;
    text-transform: uppercase; letter-spacing: 0.05em; color: var(--text2);
    display: flex; align-items: center; gap: 10px;
}
.section-title .note-icon { color: var(--primary); font-size: 1.3rem; }
.section-title::after { content: ''; flex: 0 0 40px; height: 3px; background: var(--primary); border-radius: 2px; }

/* ── City grid ────────────────────────────────────────────────────────────── */
.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.city-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
    padding: 20px; text-align: center;
    transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
    display: flex; flex-direction: column; gap: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.city-card::before { content: '♪'; display: block; color: var(--primary); font-size: 1.2rem; margin-bottom: 4px; opacity: 0; transition: opacity 0.2s; }
.city-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.city-card:hover::before { opacity: 1; }
.city-name { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.city-count { color: var(--muted); font-size: 0.78rem; }

/* ── Concert grid ─────────────────────────────────────────────────────────── */
.concert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-bottom: 32px; }
.concert-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
    padding: 20px; display: flex; flex-direction: column; gap: 6px;
    transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    position: relative; overflow: hidden;
}
/* Barre colorée en haut de la carte au hover */
.concert-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--primary); transform: scaleX(0); transform-origin: left;
    transition: transform 0.25s ease;
}
.concert-card:hover::before { transform: scaleX(1); }
.concert-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.card-date   { color: var(--primary-d); background: var(--primary); display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; width: fit-content; }
.card-artist { font-size: 1.05rem; font-weight: 700; text-transform: uppercase; color: var(--text); margin-top: 4px; }
.card-venue  { color: var(--muted); font-size: 0.85rem; }
.card-city   { color: var(--muted2); font-size: 0.78rem; }
.card-genre  { background: var(--surface2); border: 1px solid var(--border); color: var(--muted); padding: 2px 8px; border-radius: 6px; font-size: 0.7rem; display: inline-block; width: fit-content; }
.card-cta    { color: var(--primary-d); background: var(--primary); font-size: 0.78rem; font-weight: 700; margin-top: auto; padding: 7px 12px; border-radius: 5px; text-align: center; margin-top: 10px; text-transform: uppercase; letter-spacing: 0.04em; display: flex; align-items: center; justify-content: center; gap: 6px; }

/* ── Artist chips ─────────────────────────────────────────────────────────── */
.artist-list { display: flex; flex-wrap: wrap; gap: 10px; }
.artist-chip { background: var(--surface); border: 1px solid var(--border2); border-radius: 20px; padding: 6px 14px; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 8px; transition: all 0.15s; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.artist-chip:hover { border-color: var(--primary); background: var(--primary); color: var(--nav-bg); font-weight: 600; }
.artist-chip:hover .chip-count { background: var(--nav-bg); color: var(--primary); }
.chip-count  { background: var(--surface2); color: var(--muted); padding: 1px 7px; border-radius: 10px; font-size: 0.7rem; }

/* ── Page concerts ────────────────────────────────────────────────────────── */
.page-concerts { padding: 40px 0; }
.page-concerts h1 { font-size: 1.8rem; font-weight: 800; text-transform: uppercase; margin-bottom: 8px; color: var(--text); }
.concerts-layout { display: grid; grid-template-columns: 220px 1fr; gap: 32px; margin-top: 32px; }
.filters-panel { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 20px; height: fit-content; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.filter-group { margin-bottom: 20px; }
.filter-group label { display: block; font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; font-weight: 600; }
.filter-group select { width: 100%; background: var(--surface2); border: 1px solid var(--border2); color: var(--text); padding: 8px 10px; border-radius: 6px; font-size: 0.875rem; }
.filter-group select:focus { outline: none; border-color: var(--primary); }
.btn-reset { display: block; text-align: center; color: var(--muted2); font-size: 0.8rem; margin-top: 8px; }
.btn-reset:hover { color: var(--danger); }
.result-count { color: var(--muted); font-size: 0.875rem; margin-bottom: 16px; }
.empty { text-align: center; color: var(--muted2); padding: 48px; font-size: 1.1rem; }
.empty::before { content: '♫'; display: block; font-size: 2.5rem; color: var(--border2); margin-bottom: 12px; }

/* ── Pagination ───────────────────────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; align-items: center; gap: 20px; margin-top: 32px; }
.pagination a { background: var(--surface); border: 1px solid var(--border2); color: var(--text); padding: 8px 16px; border-radius: 6px; font-size: 0.875rem; font-weight: 600; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.pagination a:hover { border-color: var(--primary); background: var(--primary); color: var(--nav-bg); }
.pagination span { color: var(--muted); font-size: 0.875rem; }

/* ── Page concert ─────────────────────────────────────────────────────────── */
.page-concert { padding: 32px 0; }
.breadcrumb { font-size: 0.78rem; color: var(--muted2); margin-bottom: 24px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--primary-d); text-decoration: underline; }
.concert-hero { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 32px; margin-bottom: 32px; border-left: 5px solid var(--primary); box-shadow: 0 2px 8px rgba(0,0,0,0.07); position: relative; overflow: hidden; }
.concert-hero::after { content: '♬'; position: absolute; right: 24px; top: 20px; font-size: 4rem; color: var(--primary); opacity: 0.12; line-height: 1; }
.concert-hero h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: 4px; text-transform: uppercase; color: var(--text); }
.concert-event-name { color: var(--muted); font-size: 1rem; margin-bottom: 16px; }
.concert-meta { display: flex; flex-wrap: wrap; gap: 20px; font-size: 0.875rem; color: var(--muted); }
.concert-meta a { color: var(--nav-bg); font-weight: 600; }

/* ── Price table ──────────────────────────────────────────────────────────── */
.price-section { margin-bottom: 40px; }
.price-section h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text); display: flex; align-items: center; gap: 8px; }
.price-section h2::before { content: '♪'; color: var(--primary); }
.price-table-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.07); }
.price-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.price-table thead th { background: var(--nav-bg); padding: 12px 16px; text-align: left; color: #94a3b8; font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; }
.price-table tbody tr { border-bottom: 1px solid var(--border); }
.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: #fffbeb; }
.price-table td { padding: 14px 16px; color: var(--text); }
.platform-cell { font-weight: 700; }
.price-good   { color: var(--success); font-weight: 700; }
.price-medium { color: var(--warning); font-weight: 700; }
.price-high   { color: var(--danger);  font-weight: 700; }
.price-na     { color: var(--muted2); }
.price-note   { color: var(--muted2); font-size: 0.72rem; margin-top: 8px; }
.row-unavailable td { opacity: 0.5; }
.badge-available   { background: #dcfce7; color: var(--success); padding: 2px 8px; border-radius: 6px; font-size: 0.72rem; font-weight: 600; }
.badge-unavailable { background: var(--surface2); color: var(--muted2); padding: 2px 8px; border-radius: 6px; font-size: 0.72rem; }
.btn-buy { background: var(--primary); color: var(--nav-bg); padding: 7px 16px; border-radius: 6px; font-size: 0.8rem; font-weight: 800; display: inline-block; text-transform: uppercase; letter-spacing: 0.04em; }
.btn-buy:hover { background: var(--primary-h); }
.btn-secondary-buy { background: var(--surface2); color: var(--text); border: 2px solid var(--border2); }
.btn-secondary-buy:hover { background: var(--primary); color: var(--nav-bg); border-color: var(--primary); }
.platform-logo { height: 18px; vertical-align: middle; margin-right: 6px; }
.badge-official { background: #dcfce7; color: var(--success); padding: 3px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 600; }
.badge-resale   { background: #fef9c3; color: #854d0e; padding: 3px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 600; }
.loading { padding: 32px; text-align: center; color: var(--muted2); }
.loading::before { content: '♫ '; color: var(--primary); }

/* ── Pages artiste / salle ────────────────────────────────────────────────── */
.page-artiste, .page-salle { padding: 40px 0; }
.page-artiste h1, .page-salle h1 { font-size: 1.8rem; font-weight: 800; text-transform: uppercase; margin-bottom: 8px; color: var(--text); }
.page-sub { color: var(--muted); margin-bottom: 32px; }

/* ── Boutons ──────────────────────────────────────────────────────────────── */
.btn-outline { display: inline-block; border: 2px solid var(--nav-bg); color: var(--nav-bg); padding: 10px 24px; border-radius: 6px; font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; transition: all 0.15s; }
.btn-outline:hover { background: var(--primary); border-color: var(--primary); color: var(--nav-bg); }
.center { text-align: center; margin-top: 32px; }

/* ── Footer (dark) ────────────────────────────────────────────────────────── */
.site-footer { background: var(--nav-bg); border-top: 3px solid var(--primary); padding: 40px 0; margin-top: 60px; }
.footer-inner { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { font-size: 1.1rem; font-weight: 800; text-transform: uppercase; display: flex; align-items: center; gap: 8px; color: #ffffff; }
.footer-logo .logo-badge { background: var(--primary); color: var(--nav-bg); font-weight: 900; font-size: 0.85rem; padding: 3px 7px; border-radius: 4px; }
.footer-desc { color: #64748b; font-size: 0.85rem; max-width: 500px; }
.footer-nav  { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-nav a { color: #64748b; font-size: 0.85rem; }
.footer-nav a:hover { color: var(--primary); }
.footer-copy { color: #3c434a; font-size: 0.72rem; border-top: 1px solid #1d2327; padding-top: 16px; margin-top: 8px; }

/* ── Contenu ville ───────────────────────────────────────────────────────── */
.city-info { margin-top: 48px; padding-top: 40px; border-top: 2px solid var(--border); }
.city-intro { margin-bottom: 32px; }
.city-intro h2 { font-size: 1.4rem; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.city-intro p { color: var(--text-muted); line-height: 1.75; max-width: 820px; }
.city-venues h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.venues-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-bottom: 32px; }
.venue-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; padding: 20px; }
.venue-name { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.venue-capacity { font-size: 0.8rem; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.venue-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.city-seo-note { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; max-width: 820px; padding: 16px; background: var(--card-bg); border-left: 3px solid var(--primary); border-radius: 0 6px 6px 0; }

/* ── Pages légales ────────────────────────────────────────────────────────── */
.page-legal { max-width: 760px; padding-top: 40px; padding-bottom: 60px; }
.legal-section { margin-top: 36px; }
.legal-section h2 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.legal-section h3 { font-size: 1rem; font-weight: 600; margin: 18px 0 8px; color: var(--muted); }
.legal-section p { color: var(--text); line-height: 1.75; margin-bottom: 10px; font-size: 0.95rem; }
.legal-section a { color: var(--primary); text-decoration: underline; }
.legal-copy { margin-top: 48px; font-size: 0.85rem; color: var(--muted); }

/* ── Page contact ─────────────────────────────────────────────────────────── */
.page-contact { max-width: 680px; padding-top: 40px; padding-bottom: 60px; }
.contact-form { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.form-group input,
.form-group textarea {
    border: 1px solid var(--border2); border-radius: 8px;
    padding: 10px 14px; font-size: 1rem; background: var(--surface);
    color: var(--text); transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { resize: vertical; }
.required { color: var(--danger); }
.btn-submit {
    align-self: flex-start; background: var(--primary); color: var(--primary-d);
    border: none; border-radius: 8px; padding: 12px 32px;
    font-size: 1rem; font-weight: 700; cursor: pointer; transition: background .2s;
}
.btn-submit:hover { background: var(--primary-h); }
.contact-success {
    margin-top: 32px; padding: 20px 24px; border-radius: 10px;
    background: #dcfce7; color: #15803d; font-weight: 600;
}
.contact-error {
    margin-bottom: 16px; padding: 14px 18px; border-radius: 8px;
    background: #fee2e2; color: var(--danger); font-size: 0.95rem;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ── Charger plus ─────────────────────────────────────────────────────────── */
.load-more-wrap { text-align: center; margin: 32px 0; }
.btn-load-more {
    background: var(--primary); color: var(--primary-d);
    border: none; border-radius: 8px; padding: 12px 32px;
    font-size: 1rem; font-weight: 700; cursor: pointer;
    transition: background .2s;
}
.btn-load-more:hover:not(:disabled) { background: var(--primary-h); }
.btn-load-more:disabled { opacity: .6; cursor: wait; }

/* ── Texte SEO fiche concert ──────────────────────────────────────────────── */
.concert-seo-text { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border); }
.concert-seo-text h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.concert-seo-text p { color: var(--text-muted); line-height: 1.75; margin-bottom: 12px; font-size: 0.92rem; }
.concert-seo-text p:last-child { font-size: 0.85rem; }
.concert-seo-text a { color: var(--primary); }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .nav { display: none; }
    .concerts-layout { grid-template-columns: 1fr; }
    .filters-panel { order: -1; }
    .hero-form { flex-direction: column; }
    .concert-hero h1 { font-size: 1.6rem; }
    .info-bar-inner { flex-direction: column; align-items: center; }
    .concert-hero::after { display: none; }
}
