/*
Theme Name: GAM RATP
Theme URI: https://gamratp.fr
Author: GAM RATP
Author URI: https://gamratp.fr
Description: Thème officiel du Groupement des Activités Musicales de la RATP — chaleureux, élégant, optimisé pour les orchestres.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: gam-ratp
Tags: music, orchestra, association, french
*/

/* ============================================================
   IMPORTS & VARIABLES
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;1,400&family=Nunito:wght@300;400;500;600&display=swap');

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

:root {
    --rouge:       #C0392B;
    --rouge2:      #E74C3C;
    --rouge-pale:  #FDF0EF;
    --creme:       #FDFAF6;
    --blanc:       #FFFFFF;
    --texte:       #2C2C2C;
    --texte-doux:  #4A4440;
    --muted:       #7A7470;
    --border:      #EAE4DC;
    --harmonie:    #2E5C8A;
    --philo:       #27AE60;
    --radius:      14px;
    --radius-sm:   8px;
    --radius-xl:   20px;
}

/* ============================================================
   BASE
   ============================================================ */
html { scroll-behavior: smooth; }
body {
    font-family: 'Nunito', sans-serif;
    background: var(--creme);
    color: var(--texte);
    font-size: 15px;
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--rouge); text-decoration: none; transition: color .2s; }
a:hover { color: var(--rouge2); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   TYPOGRAPHIE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 400;
    line-height: 1.2;
    color: var(--texte);
}
h1 { font-size: clamp(32px, 5vw, 56px); }
h2 { font-size: clamp(24px, 4vw, 42px); }
h3 { font-size: clamp(20px, 3vw, 28px); }
h4 { font-size: 20px; }
em { font-style: italic; color: var(--rouge); }

.section-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--rouge);
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    margin-bottom: .75rem;
}
.separateur {
    width: 40px;
    height: 3px;
    background: var(--rouge);
    border-radius: 2px;
    margin-bottom: 2rem;
}
.separateur-centre { margin: 0 auto 2rem; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 2rem;
}
.section { padding: 4.5rem 0; }
.section-fond-blanc { background: var(--blanc); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-fond-rouge { background: var(--rouge); }
.section-fond-sombre { background: #1a1008; }
.section-fond-pale  { background: var(--rouge-pale); border-top: 1px solid #F0D5D2; border-bottom: 1px solid #F0D5D2; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
    background: var(--blanc);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 2rem;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-cercle {
    width: 38px;
    height: 38px;
    background: var(--rouge);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lora', serif;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    flex-shrink: 0;
}
.logo-texte {
    font-family: 'Lora', serif;
    font-size: 17px;
    color: var(--texte);
    font-weight: 500;
}
.logo-texte span { color: var(--rouge); font-style: italic; }

.main-navigation { display: flex; align-items: center; gap: 1.5rem; }
.main-navigation ul { list-style: none; display: flex; gap: 1.5rem; align-items: center; }
.main-navigation ul li a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
}
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item a {
    color: var(--rouge);
    border-bottom-color: var(--rouge);
}
.nav-cta a {
    background: var(--rouge) !important;
    color: #fff !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    border-bottom: none !important;
}
.nav-cta a:hover { background: var(--rouge2) !important; }

/* Menu burger mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    gap: 5px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--texte);
    border-radius: 2px;
    transition: all .3s;
}

/* ============================================================
   BOUTONS
   ============================================================ */
.btn, button.btn, input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 28px;
    border: none;
    border-radius: 25px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
}
.btn-rouge  { background: var(--rouge); color: #fff; }
.btn-rouge:hover { background: var(--rouge2); color: #fff; }
.btn-blanc-solide { background: #fff; color: var(--rouge); }
.btn-blanc-solide:hover { background: var(--rouge-pale); }
.btn-contour { background: transparent; border: 2px solid var(--rouge); color: var(--rouge); }
.btn-contour:hover { background: var(--rouge); color: #fff; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 2rem;
    overflow: hidden;
    background: #1a1008;
}
.hero-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 16, 8, 0.55);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}
.hero-tag {
    display: inline-block;
    background: var(--rouge);
    color: #fff;
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
}
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero h1 em { color: #F5C6A0; }
.hero-sous-titre {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Hero avec image personnalisée via ACF ou featured image */
.hero.has-bg-image .hero-bg { display: block; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band { padding: 2.5rem 0; }
.stats-inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.stat-item { text-align: center; }
.stat-num {
    font-family: 'Lora', serif;
    font-size: 44px;
    color: var(--rouge);
    line-height: 1;
    font-weight: 400;
}
.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-top: .35rem;
    font-weight: 600;
}

/* ============================================================
   ORCHESTRES CARDS
   ============================================================ */
.orch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.orch-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    min-height: 280px;
    cursor: pointer;
    transition: transform .2s;
    text-decoration: none;
}
.orch-card:hover { transform: translateY(-4px); }
.orch-card-img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.orch-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
}
.orch-overlay-harmonie {
    background: linear-gradient(to top, rgba(46,92,138,.92) 0%, rgba(46,92,138,.3) 60%, transparent 100%);
}
.orch-overlay-philo {
    background: linear-gradient(to top, rgba(39,174,96,.92) 0%, rgba(39,174,96,.3) 60%, transparent 100%);
}
.orch-label { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-bottom: .4rem; font-weight: 600; }
.orch-titre { font-family: 'Lora', serif; font-size: 22px; color: #fff; margin-bottom: .4rem; }
.orch-desc  { font-size: 13px; color: rgba(255,255,255,.8); }

/* ============================================================
   CONCERTS
   ============================================================ */
.concerts-liste { display: flex; flex-direction: column; gap: 1rem; }
.concert-item {
    background: var(--blanc);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: border-color .2s;
}
.concert-item:hover { border-color: var(--rouge); }
.concert-date-box {
    background: var(--rouge-pale);
    border-radius: 10px;
    padding: 12px 16px;
    text-align: center;
    flex-shrink: 0;
    min-width: 64px;
}
.concert-jour { font-family: 'Lora', serif; font-size: 32px; color: var(--rouge); line-height: 1; }
.concert-mois { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--rouge); font-weight: 600; }
.concert-info { flex: 1; }
.concert-titre { font-family: 'Lora', serif; font-size: 18px; margin-bottom: .35rem; }
.concert-lieu  { font-size: 13px; color: var(--muted); margin-bottom: .5rem; }
.concert-prog  { font-size: 12px; color: var(--muted); line-height: 1.6; font-style: italic; }
.concert-reserver { flex-shrink: 0; align-self: center; }

/* Badges orchestres */
.badge-orchestre {
    display: inline-block;
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    margin-right: 5px;
    font-family: 'Nunito', sans-serif;
}
.badge-harmonie  { background: #EBF3FA; color: #1A4A7A; }
.badge-philo     { background: #EAFAF1; color: #1A6B3A; }

/* ============================================================
   CHEF D'ORCHESTRE
   ============================================================ */
.chef-layout { display: grid; grid-template-columns: 300px 1fr; gap: 3.5rem; align-items: start; }
.chef-photo-wrap { position: relative; }
.chef-photo {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #e8ddd0;
}
.chef-photo img { width: 100%; height: 100%; object-fit: cover; }
.chef-badge {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rouge);
    color: #fff;
    font-size: 11px;
    padding: 6px 18px;
    border-radius: 20px;
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: .05em;
    font-family: 'Nunito', sans-serif;
}
.chef-nom  { font-family: 'Lora', serif; font-size: 32px; margin-bottom: .25rem; }
.chef-role { color: var(--rouge); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.5rem; font-family: 'Nunito', sans-serif; }
.chef-bio  { font-size: 14px; line-height: 1.85; color: var(--texte-doux); font-weight: 300; }
.chef-citation {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: var(--rouge-pale);
    border-radius: 12px;
    border-left: 3px solid var(--rouge);
}
.chef-citation blockquote {
    font-family: 'Lora', serif;
    font-size: 15px;
    font-style: italic;
    color: var(--texte-doux);
    line-height: 1.7;
    margin-bottom: .5rem;
}
.chef-citation cite { font-size: 12px; color: var(--rouge); font-weight: 600; font-style: normal; }

/* ============================================================
   GALERIE
   ============================================================ */
.galerie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.galerie-grid .gal-large { grid-column: span 2; }
.gal-item {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    cursor: pointer;
    background: #e8ddd0;
}
.gal-large { aspect-ratio: 16/9; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gal-item:hover img { transform: scale(1.04); }
.gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,16,8,0);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    transition: background .3s;
}
.gal-item:hover .gal-overlay { background: rgba(26,16,8,.4); }
.gal-cap { color: transparent; font-size: 12px; font-weight: 500; transition: color .3s; }
.gal-item:hover .gal-cap { color: #fff; }

/* ============================================================
   RECRUTEMENT
   ============================================================ */
.recru-card {
    background: var(--blanc);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: border-color .2s, transform .2s;
}
.recru-card:hover { border-color: var(--rouge); transform: translateY(-3px); }
.recru-icon { font-size: 32px; margin-bottom: .75rem; }
.recru-instr { font-weight: 600; font-size: 14px; margin-bottom: .25rem; }
.recru-desc  { font-size: 12px; color: var(--muted); }
.badge-urgent { background: #FEF3C7; color: #92400E; padding: 2px 8px; border-radius: 20px; font-size: 10px; font-weight: 600; display: inline-block; margin-top: .5rem; }
.badge-ouvert { background: #EAF3DE; color: #27500A; padding: 2px 8px; border-radius: 20px; font-size: 10px; font-weight: 600; display: inline-block; margin-top: .5rem; }

/* ============================================================
   MÉCÉNAT
   ============================================================ */
.mecenat-wrap {
    background: var(--rouge);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: #fff;
    max-width: 680px;
    margin: 0 auto;
}
.mecenat-wrap h2 { color: #fff; margin-bottom: .75rem; }
.mecenat-wrap h2 em { color: #F5C6A0; }
.mecenat-wrap p { color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 1.5rem; font-size: 14px; }

/* ============================================================
   PRESSE
   ============================================================ */
.presse-card {
    background: var(--blanc);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.presse-icon { font-size: 28px; margin-bottom: .75rem; }
.presse-titre { font-weight: 600; font-size: 14px; margin-bottom: .4rem; font-family: 'Nunito', sans-serif; }
.presse-desc  { font-size: 12px; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }

/* ============================================================
   PAGE HEADER (pages intérieures)
   ============================================================ */
.page-header {
    background: #1a1008;
    padding: 4rem 2rem;
    text-align: center;
}
.page-header .section-tag { color: #F5C6A0; }
.page-header h1 { color: #fff; }
.page-header h1 em { color: #F5C6A0; }
.page-header p { color: rgba(255,255,255,.55); font-size: 14px; max-width: 500px; margin: .75rem auto 0; }

/* ============================================================
   FORMULAIRE DE CONTACT
   ============================================================ */
.contact-form { max-width: 580px; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .5rem; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: var(--texte);
    background: var(--creme);
    transition: border-color .2s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--rouge); box-shadow: 0 0 0 3px rgba(192,57,43,.08); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #1a1008; padding: 3rem 0 2rem; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-brand { font-family: 'Lora', serif; font-size: 20px; color: rgba(255,255,255,.9); margin-bottom: .75rem; }
.footer-brand span { color: #F5C6A0; font-style: italic; }
.footer-info { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; }
.footer-col-title { font-size: 11px; text-transform: uppercase; letter-spacing: .15em; color: rgba(255,255,255,.3); margin-bottom: .75rem; font-weight: 600; }
.footer-liens a { display: block; color: rgba(255,255,255,.45); text-decoration: none; margin-bottom: .4rem; font-size: 13px; transition: color .2s; }
.footer-liens a:hover { color: rgba(255,255,255,.85); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; text-align: center; font-size: 12px; color: rgba(255,255,255,.25); }
.footer-social { display: flex; gap: .75rem; margin-top: 1rem; }
.social-btn {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    font-size: 13px;
    text-decoration: none;
    transition: background .2s;
}
.social-btn:hover { background: var(--rouge); color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .grid-2, .orch-grid, .chef-layout { grid-template-columns: 1fr; }
    .chef-photo-wrap { max-width: 300px; margin: 0 auto; }
    .galerie-grid { grid-template-columns: repeat(2, 1fr); }
    .galerie-grid .gal-large { grid-column: span 2; }
}
@media (max-width: 700px) {
    .main-navigation { display: none; }
    .main-navigation.active { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 1rem 2rem; }
    .main-navigation.active ul { flex-direction: column; gap: .5rem; }
    .menu-toggle { display: flex; }
    .concert-item { flex-direction: column; gap: 1rem; }
    .concert-reserver { align-self: flex-start; }
    .galerie-grid { grid-template-columns: 1fr; }
    .galerie-grid .gal-large { grid-column: span 1; }
    .section { padding: 3rem 0; }
}

/* ============================================================
   WIDGETS WORDPRESS
   ============================================================ */
.widget { margin-bottom: 2rem; }
.widget-title { font-family: 'Lora', serif; font-size: 18px; font-weight: 400; margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--rouge); }

/* ============================================================
   WORDPRESS ALIGNMENTS
   ============================================================ */
.alignleft  { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.aligncenter{ display: block; margin: 0 auto 1rem; text-align: center; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 12px; color: var(--muted); text-align: center; margin-top: .25rem; font-style: italic; }

/* ══ PAGE HERO ══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #1A1209 0%, #2C1810 100%);
  padding: 5rem 0 4rem;
  color: #fff;
}
.page-hero-titre {
  font-family: 'Lora', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: #fff;
  margin: .5rem 0 0;
  line-height: 1.2;
}
.page-hero-sous {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

/* ══ CONTENEUR ÉTROIT ═══════════════════════════════════ */
.container-narrow {
  max-width: 780px;
  margin: 0 auto;
}

/* ══ CONTENU DE PAGE ════════════════════════════════════ */
.page-content-wrap {
  padding: 4rem 0 5rem;
}

/* Paragraphes */
.page-content-wrap p {
  font-size: 1.0rem;
  line-height: 1.9;
  color: #3A3028;
  margin-bottom: 1.25rem;
}

/* Titres H2 */
.page-content-wrap h2 {
  font-family: 'Lora', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: #1A1209;
  margin: 2.5rem 0 .75rem;
  padding-top: 2rem;
  border-top: 1px solid #E8E0D4;
}
.page-content-wrap h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

/* Titres H3 */
.page-content-wrap h3 {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--rouge);
  margin: 1.75rem 0 .5rem;
}

/* Listes */
.page-content-wrap ul {
  margin: 1rem 0 1.5rem 0;
  padding-left: 0;
  list-style: none;
}
.page-content-wrap ul li {
  padding: .4rem 0 .4rem 1.5rem;
  position: relative;
  font-size: .975rem;
  line-height: 1.7;
  color: #3A3028;
}
.page-content-wrap ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .95rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rouge);
}

/* Images */
.page-content-wrap img {
  max-width: 100%;
  border-radius: 10px;
  margin: 1.5rem 0;
}
.page-content-wrap .wp-block-image,
.page-content-wrap .alignright {
  float: right;
  margin: 0 0 1.5rem 2rem;
  max-width: 45%;
  border-radius: 10px;
  overflow: hidden;
}
.page-content-wrap .alignright img {
  margin: 0;
}

/* Iframes (AssoConnect, etc.) */
.page-content-wrap iframe {
  width: 100%;
  min-height: 600px;
  border: none;
  border-radius: 10px;
  margin: 1.5rem 0;
}

/* Blockquote */
.page-content-wrap blockquote {
  border-left: 4px solid var(--rouge);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: #F7F3EE;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #5A4A3A;
}

/* Tableau */
.page-content-wrap table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: .9rem;
}
.page-content-wrap table th {
  background: #1A1209;
  color: #fff;
  padding: .6rem 1rem;
  text-align: left;
}
.page-content-wrap table td {
  padding: .6rem 1rem;
  border-bottom: 1px solid #E8E0D4;
}
.page-content-wrap table tr:nth-child(even) td {
  background: #FAF7F3;
}

/* Strong */
.page-content-wrap strong {
  color: #1A1209;
  font-weight: 600;
}

/* Liens */
.page-content-wrap a {
  color: var(--rouge);
  text-decoration: underline;
  text-decoration-color: rgba(192,57,43,.3);
  text-underline-offset: 2px;
}
.page-content-wrap a:hover {
  text-decoration-color: var(--rouge);
}

/* Clearfix pour les floats */
.page-content-wrap .entry-content::after {
  content: '';
  display: table;
  clear: both;
}

/* ══ RESPONSIVE ═════════════════════════════════════════ */
@media (max-width: 640px) {
  .page-content-wrap .alignright,
  .page-content-wrap .wp-block-image {
    float: none;
    max-width: 100%;
    margin: 1rem 0;
  }
  .page-hero { padding: 3rem 0 2.5rem; }
}

/* ============================================
   Concert items cliquables (cadre entier)
   À ajouter dans functions.php (wp_add_inline_style)
   ou dans style.css
   ============================================ */

.concert-item-cliquable {
  position: relative;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
}

.concert-item-cliquable:hover {
  background: var(--rouge-pale, #fdf0f0);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

/* Lien fantôme qui couvre tout le cadre */
.concert-item-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

/* Le titre n'a plus besoin d'être un lien — on retire le style <a> si présent */
.concert-item-cliquable .concert-titre a {
  pointer-events: none;
  color: inherit;
  text-decoration: none;
}

/* Le bouton Réserver passe au-dessus du lien fantôme */
.concert-reserver {
  position: relative;
  z-index: 2;
}

/* Idem pour les badges et tout élément cliquable interne */
.concert-item-cliquable .badge-orchestre {
  position: relative;
  z-index: 2;
}