/* Global viewport reset to remove default browser gutters on all pages */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
}

html {
    overflow-x: hidden;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #ff4500 100%);
    background-attachment: fixed;
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    /* using text-align center instead of flex for reliability */
}

/* background for secondary pages */
body.second {
    background: linear-gradient(45deg, rgb(100, 98, 98), rgb(41, 38, 38));
    color: white;
}

/* Prevent subtle scroll jumps on index when dynamic blocks update */
body.first {
    overflow-anchor: none;
}

body.concerts-page .concerts-hero {
    padding: 72px 0 90px 0;
    min-height: auto;
}

body.concerts-page .concerts-hero .hero-subtitle {
    margin-bottom: 54px;
}

body.concerts-page .concerts-kicker {
    width: min(760px, 90%);
    margin: 15px auto 24px auto;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: clamp(0.9rem, 1.05vw, 1.02rem);
    color: rgba(255, 236, 228, 0.84);
}

body.concerts-page .concerts-quickfacts {
    width: min(960px, 92%);
    margin: 0 auto 8px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

body.concerts-page .concerts-quickfacts .fact-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 130, 90, 0.42);
    border-radius: 999px;
    background: rgba(255, 95, 50, 0.12);
    padding: 8px 13px;
    color: #ffe6db;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.25px;
}

body.concerts-page .concerts-quickfacts .fact-chip i {
    color: #ffb08f;
}

/* ===== ABOUT PAGE ===== */
body.apropos-page .apropos-hero {
    padding: 74px 0 84px 0;
    min-height: auto;
}

body.apropos-page .apropos-grid {
    width: min(1160px, 94%);
    margin: 34px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

body.apropos-page .apropos-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
    align-content: start;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(255, 110, 75, 0.3);
    border-radius: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.12) 0%, rgba(18, 18, 18, 0.72) 100%);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
    transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

body.apropos-page .apropos-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 130, 90, 0.62);
    box-shadow: 0 18px 42px rgba(255, 69, 0, 0.24);
}

body.apropos-page .apropos-card-media img {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.22);
}

body.apropos-page .apropos-card-content {
    text-align: center;
}

body.apropos-page .apropos-card-content h2 {
    margin: 0 0 8px 0;
    font-family: "Trebuchet MS", Arial, sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    font-size: clamp(1.1rem, 1.45vw, 1.5rem);
}

body.apropos-page .apropos-card-content p {
    margin: 0 0 16px 0;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: clamp(0.92rem, 1.05vw, 1.05rem);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.84);
}

body.apropos-page .apropos-card-cta {
    display: inline-block;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 140, 100, 0.7);
    background: rgba(255, 90, 45, 0.2);
    color: #ffe2d7;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-weight: 700;
    font-size: 0.77rem;
}

/* ===== MEMBERS PAGE ===== */
body.membres-page .membres-hero {
    padding: 74px 0 84px 0;
    min-height: auto;
}

body.membres-page .members-list {
    width: min(1240px, 95%);
    margin: 34px auto 0 auto;
    display: grid;
    gap: 28px;
}

body.membres-page .member-card {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    scroll-margin-top: 120px;
    border: 1px solid rgba(255, 110, 75, 0.3);
    border-radius: 16px;
    padding: 26px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.12) 0%, rgba(18, 18, 18, 0.72) 100%);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
    transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

body.membres-page .member-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 130, 90, 0.62);
    box-shadow: 0 18px 42px rgba(255, 69, 0, 0.24);
}

body.membres-page .member-card.reverse {
    grid-template-columns: minmax(0, 1fr) 300px;
}

body.membres-page .member-card.reverse .member-photo {
    order: 2;
}

body.membres-page .member-card.reverse .member-content {
    order: 1;
}

body.membres-page .member-photo img {
    display: block;
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.22);
}

body.membres-page .member-content h2 {
    margin: 0 0 12px 0;
    font-family: "Trebuchet MS", Arial, sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    font-size: clamp(1.2rem, 1.5vw, 1.7rem);
}

body.membres-page .member-content h2 span {
    display: inline-block;
    margin-left: 10px;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 140, 100, 0.7);
    background: rgba(255, 90, 45, 0.2);
    color: #ffe2d7;
    text-transform: uppercase;
    letter-spacing: 0.55px;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 0.72rem;
    vertical-align: middle;
}

body.membres-page .member-content p {
    margin: 0 0 12px 0;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: clamp(0.94rem, 1.06vw, 1.08rem);
    line-height: 1.58;
    color: rgba(255, 255, 255, 0.86);
}

body.membres-page .member-link {
    margin-top: 8px;
}

/* ===== MEMBER PROFILE PAGES ===== */
body.member-profile-page .member-profile-hero {
    padding: 74px 0 84px 0;
    min-height: auto;
}

body.member-profile-page .profile-layout {
    width: min(1160px, 94%);
    margin: 32px auto 0 auto;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

body.member-profile-page .profile-photo-card,
body.member-profile-page .profile-content-card {
    border: 1px solid rgba(255, 110, 75, 0.3);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.12) 0%, rgba(18, 18, 18, 0.72) 100%);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

body.member-profile-page .profile-photo-card {
    padding: 12px;
    position: sticky;
    top: 110px;
}

body.member-profile-page .profile-photo-card img {
    display: block;
    width: 100%;
    height: 390px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.22);
}

body.member-profile-page .profile-role {
    margin: 12px 4px 2px 4px;
    text-align: center;
    font-family: "Trebuchet MS", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #ffe2d7;
    font-size: 0.84rem;
}

body.member-profile-page .profile-content-card {
    padding: 24px;
}

body.member-profile-page .profile-content-card h2 {
    margin: 0 0 12px 0;
    font-family: "Trebuchet MS", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    font-size: clamp(1.18rem, 1.5vw, 1.6rem);
}

body.member-profile-page .profile-content-card p {
    margin: 0 0 14px 0;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: clamp(0.95rem, 1.06vw, 1.08rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.87);
}

body.member-profile-page .profile-highlights {
    margin: 0 0 18px 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

body.member-profile-page .profile-highlights li {
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 140, 100, 0.68);
    background: rgba(255, 90, 45, 0.2);
    color: #ffe5d9;
    font-family: "Trebuchet MS", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.45px;
    font-size: 0.74rem;
}

body.member-profile-page .profile-actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

body.member-profile-page .profile-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 24px;
    font-size: 0.82rem;
    letter-spacing: 0.7px;
    line-height: 1.1;
    text-align: center;
    font-family: "Trebuchet MS", Arial, sans-serif;
}

/* ===== HISTORY PAGE ===== */
body.histoire-page .histoire-hero {
    padding: 74px 0 84px 0;
    min-height: auto;
}

body.histoire-page .story-layout {
    width: min(1160px, 94%);
    margin: 30px auto 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

body.histoire-page .story-card {
    border: 1px solid rgba(255, 110, 75, 0.3);
    border-radius: 16px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.12) 0%, rgba(18, 18, 18, 0.72) 100%);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

body.histoire-page .story-card p {
    margin: 0 0 14px 0;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: clamp(0.95rem, 1.05vw, 1.08rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    text-align: left;
}

body.histoire-page .story-card p:last-of-type {
    margin-bottom: 0;
}

body.histoire-page .story-cta {
    margin-top: 22px;
}

body.histoire-page .story-media-stack {
    display: grid;
    gap: 16px;
}

body.histoire-page .story-media {
    margin: 0;
    border: 1px solid rgba(255, 110, 75, 0.28);
    border-radius: 14px;
    padding: 8px;
    background: rgba(20, 20, 20, 0.64);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}

body.histoire-page .story-media img {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 10px;
}

body.histoire-page .story-banner-wrap {
    width: min(1160px, 94%);
    margin: 22px auto 0 auto;
}

body.histoire-page .story-banner {
    display: block;
    width: 100%;
    border: 1px solid rgba(255, 110, 75, 0.32);
    border-radius: 14px;
    background: rgba(18, 18, 18, 0.72);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

/* ===== OLD CONCERTS PAGE ===== */
body.anciens-concerts-page .anciens-hero {
    padding: 74px 0 84px 0;
    min-height: auto;
}

body.anciens-concerts-page .anciens-list {
    width: min(980px, 92%);
    margin: 30px auto 0 auto;
    display: grid;
    gap: 14px;
}

body.anciens-concerts-page .ancien-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) 240px;
    gap: 14px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(255, 110, 75, 0.28);
    border-radius: 14px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.12) 0%, rgba(18, 18, 18, 0.72) 100%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

body.anciens-concerts-page .ancien-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 145, 105, 0.62);
    box-shadow: 0 14px 30px rgba(255, 69, 0, 0.2);
}

body.anciens-concerts-page .ancien-card.no-link {
    cursor: default;
}

body.anciens-concerts-page .ancien-card.no-link:hover {
    transform: none;
}

body.anciens-concerts-page .ancien-date {
    font-family: "Trebuchet MS", Arial, sans-serif;
    color: #ffba9e;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.35px;
}

body.anciens-concerts-page .ancien-event {
    font-family: "Trebuchet MS", Arial, sans-serif;
    color: #fff;
    font-size: 1.08rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.55px;
}

body.anciens-concerts-page .ancien-status {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 160, 120, 0.62);
    background: rgba(255, 110, 70, 0.16);
    color: #ffe9df;
    font-family: "Trebuchet MS", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-size: 0.68rem;
    vertical-align: middle;
}

body.anciens-concerts-page .ancien-status.finalized {
    border-color: rgba(145, 220, 165, 0.66);
    background: rgba(70, 160, 95, 0.24);
    color: #e8ffe9;
}

body.anciens-concerts-page .ancien-status.cancelled {
    border-color: rgba(255, 145, 145, 0.72);
    background: rgba(190, 50, 50, 0.32);
    color: #ffe9e9;
}

body.anciens-concerts-page .ancien-status.postponed {
    border-color: rgba(255, 176, 112, 0.76);
    background: rgba(205, 112, 42, 0.34);
    color: #fff1e3;
}

body.anciens-concerts-page .ancien-city {
    justify-self: end;
    text-align: right;
    font-family: "Trebuchet MS", Arial, sans-serif;
    color: rgba(255, 242, 235, 0.88);
    font-size: 0.95rem;
}

body.anciens-concerts-page .ancien-city i {
    margin-right: 5px;
    color: #ff9e76;
}

/* ===== PHOTOS PAGE ===== */
body.photos-page .photos-hero {
    padding: 74px 0 84px 0;
    min-height: auto;
}

body.photos-page .photos-intro {
    width: min(860px, 92%);
    margin: 18px auto 0 auto;
    padding: 14px 16px;
    border: 1px solid rgba(255, 130, 90, 0.26);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.11) 0%, rgba(18, 18, 18, 0.58) 100%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

body.photos-page .photos-intro p {
    margin: 0;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: clamp(0.9rem, 1vw, 1.02rem);
    color: rgba(255, 245, 239, 0.9);
}

body.photos-page .photos-meta {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

body.photos-page .meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 130, 90, 0.44);
    background: rgba(255, 95, 50, 0.12);
    color: #ffe3d6;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.3px;
}

body.photos-page .meta-chip strong {
    font-size: 0.86rem;
}

body.photos-page .meta-link {
    text-decoration: none;
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

body.photos-page .meta-link:hover {
    background: rgba(255, 100, 55, 0.24);
    border-color: rgba(255, 150, 115, 0.65);
    transform: translateY(-1px);
}

body.photos-page .photos-filters {
    width: min(980px, 92%);
    margin: 16px auto 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

body.photos-page .filters-label {
    color: rgba(255, 214, 198, 0.82);
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding-right: 4px;
}

body.photos-page .filter-chip {
    border: 1px solid rgba(255, 130, 90, 0.4);
    background: rgba(255, 95, 50, 0.1);
    color: #ffe3d6;
    padding: 8px 14px;
    border-radius: 999px;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.22s ease;
}

body.photos-page .filter-chip:hover {
    background: rgba(255, 105, 60, 0.22);
    border-color: rgba(255, 150, 115, 0.62);
}

body.photos-page .filter-chip.active {
    background: rgba(255, 110, 70, 0.34);
    border-color: rgba(255, 170, 130, 0.82);
    color: #fff;
}

body.photos-page .photos-events {
    width: min(1240px, 95%);
    margin: 18px auto 0 auto;
    display: grid;
    gap: 24px;
}

body.photos-page .event-section {
    border: 1px solid rgba(255, 110, 75, 0.26);
    border-radius: 16px;
    padding: 16px 14px 18px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.08) 0%, rgba(18, 18, 18, 0.52) 100%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

body.photos-page .event-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 12px;
    padding: 0 8px;
}

body.photos-page .event-head h2 {
    margin: 0;
    font-family: "Trebuchet MS", Arial, sans-serif;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: clamp(1rem, 1.3vw, 1.3rem);
}

body.photos-page .event-head p {
    margin: 0;
    font-family: "Trebuchet MS", Arial, sans-serif;
    color: rgba(255, 239, 232, 0.82);
    font-size: 0.9rem;
}

body.photos-page .event-count {
    margin-left: auto;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 130, 90, 0.48);
    background: rgba(255, 95, 50, 0.12);
    color: #ffe6db;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 0.75rem;
}

body.photos-page .event-expand-btn {
    display: block;
    margin: 16px auto 0 auto;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 130, 90, 0.52);
    background: rgba(255, 95, 50, 0.14);
    color: #ffe6db;
    font-family: "Trebuchet MS", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.45px;
    font-size: 0.72rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

body.photos-page .event-expand-btn:hover {
    background: rgba(255, 105, 60, 0.24);
    border-color: rgba(255, 150, 115, 0.7);
    transform: translateY(-1px);
}

body.photos-page .galerie {
    width: min(1240px, 95%);
    margin: 32px auto 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 18px;
}

body.photos-page .galerie a {
    display: block;
    width: clamp(220px, 23vw, 285px);
    flex: 0 1 clamp(220px, 23vw, 285px);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 110, 75, 0.28);
    background: rgba(20, 20, 20, 0.68);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    text-decoration: none;
    cursor: zoom-in;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
    content-visibility: auto;
    contain-intrinsic-size: 220px 320px;
}

body.photos-page .galerie a:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 130, 90, 0.62);
    box-shadow: 0 16px 34px rgba(255, 69, 0, 0.22);
}

body.photos-page .galerie a img {
    display: block;
    width: 100%;
    height: 220px;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    transition: transform 0.28s ease;
}

body.photos-page .galerie a img[data-src] {
    filter: blur(2px);
    opacity: 0.72;
}

body.photos-page .galerie a:hover img {
    transform: scale(1.04);
}

body.photos-page .event-section .galerie {
    width: 100%;
    margin: 14px 0 0 0;
}

body.photos-page .event-section.is-hidden,
body.photos-page .photo-item.is-hidden,
body.photos-page .photo-item.is-collapsed-hidden {
    display: none !important;
}

/* ===== CONTACT PAGE ===== */
body.contact-page .contact-hero {
    padding: 74px 0 84px 0;
    min-height: auto;
}

body.contact-page .contact-shell {
    width: min(1160px, 94%);
    margin: 30px auto 0 auto;
}

body.contact-page .contact-grid {
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

body.contact-page .contact-card {
    border: 1px solid rgba(255, 110, 75, 0.3);
    border-radius: 16px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.12) 0%, rgba(18, 18, 18, 0.72) 100%);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

body.contact-page .contact-card h2 {
    margin: 0 0 10px 0;
    font-family: "Trebuchet MS", Arial, sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    font-size: clamp(1.05rem, 1.35vw, 1.4rem);
}

body.contact-page .contact-name {
    margin: 0 0 18px 0;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: clamp(0.95rem, 1.05vw, 1.1rem);
    color: rgba(255, 235, 227, 0.92);
}

body.contact-page .contact-actions {
    display: grid;
    gap: 10px;
}

body.contact-page .contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffe8de;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 0.9rem;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 130, 90, 0.5);
    background: rgba(255, 95, 50, 0.15);
    transition: all 0.22s ease;
}

body.contact-page .contact-btn:hover {
    background: rgba(255, 105, 60, 0.26);
    border-color: rgba(255, 165, 130, 0.72);
    transform: translateY(-1px);
}

body.contact-page .contact-btn i {
    font-size: 0.95rem;
}

body.contact-page .contact-asso {
    width: min(340px, 78%);
    margin: 30px auto 0 auto;
    border: 1px solid rgba(255, 110, 75, 0.28);
    border-radius: 18px;
    padding: 14px;
    background: rgba(18, 18, 18, 0.6);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34);
}

body.contact-page .contact-asso img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

body.contact-page .donate-card {
    width: 100%;
    margin: 24px 0 0 0;
    box-sizing: border-box;
    border: 1px solid rgba(255, 120, 85, 0.42);
    border-radius: 16px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 84, 32, 0.18) 0%, rgba(18, 18, 18, 0.78) 100%);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

body.contact-page .donate-head {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 10px;
}

body.contact-page .donate-head h2 {
    margin: 0;
    text-align: center;
    font-family: "Trebuchet MS", Arial, sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    font-size: clamp(1.05rem, 1.35vw, 1.4rem);
}

body.contact-page .donate-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 11px;
    border-radius: 999px;
    border: 1px solid rgba(255, 175, 145, 0.6);
    background: rgba(255, 120, 80, 0.2);
    color: #ffe5da;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.55px;
    text-transform: uppercase;
}

body.contact-page .donate-card > p {
    margin: 0;
    color: rgba(255, 240, 234, 0.92);
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: clamp(0.94rem, 1.03vw, 1.05rem);
    line-height: 1.55;
}

body.contact-page .donate-actions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

body.contact-page .donate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
    border-radius: 999px;
    padding: 10px 16px;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.55px;
    transition: all 0.22s ease;
}

body.contact-page .donate-btn-primary {
    border: 1px solid rgba(255, 170, 135, 0.78);
    background: rgba(255, 110, 65, 0.24);
    color: #ffece4;
}

body.contact-page .donate-btn-primary:hover {
    background: rgba(255, 126, 88, 0.35);
    border-color: rgba(255, 196, 172, 0.9);
    transform: translateY(-1px);
}

body.contact-page .donate-btn-secondary {
    border: 1px solid rgba(255, 145, 108, 0.6);
    background: rgba(20, 20, 20, 0.48);
    color: #ffe6da;
}

body.contact-page .donate-btn-secondary:hover {
    background: rgba(255, 110, 66, 0.2);
    border-color: rgba(255, 185, 155, 0.76);
    transform: translateY(-1px);
}

body.contact-page .donate-note {
    margin-top: 12px !important;
    opacity: 0.78;
    font-size: 0.84rem !important;
}

/* ===== 404 PAGE ===== */
body.error404-page .error404-hero {
    padding: 104px 0 130px 0;
    min-height: 72vh;
}

body.error404-page .error404-hero .hero-subtitle {
    margin-bottom: 48px;
}

body.error404-page .error404-wrap {
    width: min(980px, 94%);
    margin: 12px auto 0 auto;
    padding: 0;
}

body.error404-page .error404-card {
    border: 1px solid rgba(255, 110, 75, 0.3);
    border-radius: 16px;
    padding: 40px 34px 46px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.14) 0%, rgba(18, 18, 18, 0.78) 100%);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
    text-align: center;
}

body.error404-page .error404-text {
    margin: 8px auto 0 auto;
    width: min(700px, 96%);
    color: rgba(255, 240, 232, 0.9);
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: clamp(0.95rem, 1.05vw, 1.08rem);
    line-height: 1.55;
}

body.error404-page .error404-media {
    margin-top: 36px;
}

body.error404-page .error404-media img {
    display: block;
    width: min(500px, 92%);
    margin: 0 auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 130, 90, 0.34);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
}

body.error404-page .error404-actions {
    margin-top: 42px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

body.error404-page .error404-actions .btn-primary,
body.error404-page .error404-actions .btn-secondary {
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: none;
}

/* ===== MAINTENANCE PAGE ===== */
body.maintenance-page .maintenance-hero {
    padding: 104px 0 130px 0;
    min-height: 72vh;
}

body.maintenance-page header .container {
    justify-content: center;
}

body.maintenance-page header .logo {
    margin-right: 0;
}

body.maintenance-page .maintenance-hero .hero-subtitle {
    margin-bottom: 48px;
}

body.maintenance-page .maintenance-wrap {
    width: min(980px, 94%);
    margin: 12px auto 0 auto;
    padding: 0;
}

body.maintenance-page .maintenance-card {
    border: 1px solid rgba(255, 110, 75, 0.3);
    border-radius: 16px;
    padding: 40px 34px 46px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.14) 0%, rgba(18, 18, 18, 0.78) 100%);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
    text-align: center;
}

body.maintenance-page .maintenance-text {
    margin: 8px auto 0 auto;
    width: min(700px, 96%);
    color: rgba(255, 240, 232, 0.9);
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: clamp(0.95rem, 1.05vw, 1.08rem);
    line-height: 1.55;
}

body.maintenance-page .maintenance-media {
    margin-top: 36px;
}

body.maintenance-page .maintenance-media img {
    display: block;
    width: min(210px, 68%);
    margin: 0 auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 130, 90, 0.34);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
    background: rgba(18, 18, 18, 0.46);
}

body.maintenance-page .maintenance-actions {
    margin-top: 42px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

body.maintenance-page .maintenance-actions .btn-primary,
body.maintenance-page .maintenance-actions .btn-secondary {
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: none;
}

@media screen and (max-width: 768px) {
    body.error404-page .error404-wrap {
        width: min(700px, 92%);
        margin: 6px auto 0 auto;
        padding: 0;
    }

    body.error404-page .error404-card {
        padding: 30px 20px 34px;
    }

    body.error404-page .error404-actions .btn {
        width: min(100%, 320px);
    }

    body.maintenance-page .maintenance-wrap {
        width: min(700px, 92%);
        margin: 6px auto 0 auto;
        padding: 0;
    }

    body.maintenance-page .maintenance-card {
        padding: 30px 20px 34px;
    }

    body.maintenance-page .maintenance-actions .btn {
        width: min(100%, 320px);
    }
}

/* ===== CONCERT DATE DETAIL PAGES ===== */
body.concert-date-page {
    background: linear-gradient(160deg, #1a1a1a 0%, #242424 56%, #2b201b 100%);
    position: relative;
}

body.concert-date-page::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle at 12% 22%, rgba(255, 92, 45, 0.12) 0%, transparent 38%),
        radial-gradient(circle at 88% 16%, rgba(255, 175, 120, 0.09) 0%, transparent 30%);
}

body.concert-date-page > * {
    position: relative;
    z-index: 1;
}

body.concert-date-page ion-icon[name="arrow-back-outline"] {
    margin: 22px 0 0 26px;
    font-size: 2.3rem;
    color: rgba(255, 226, 215, 0.92);
    border: 1px solid rgba(255, 120, 80, 0.42);
    border-radius: 999px;
    padding: 8px;
    background: rgba(255, 90, 45, 0.12);
    transition: all 0.24s ease;
}

body.concert-date-page ion-icon[name="arrow-back-outline"]:hover {
    color: #fff;
    background: rgba(255, 95, 50, 0.24);
    border-color: rgba(255, 155, 120, 0.7);
    transform: translateY(-1px);
}

body.concert-date-page .live {
    width: min(1120px, 92%);
    margin: 26px auto 20px auto;
    padding: 26px 24px;
    border: 1px solid rgba(255, 120, 80, 0.42);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.18) 0%, rgba(17, 17, 17, 0.78) 100%);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
    font-size: clamp(1.28rem, 2.15vw, 2.1rem);
    line-height: 1.34;
    text-align: center;
}

body.concert-date-page .live u {
    text-decoration: none;
}

body.concert-date-page .date-highlight-bar {
    width: min(1120px, 92%);
    margin: 0 auto 16px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

body.concert-date-page .date-highlight-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    border: 1px solid rgba(255, 130, 90, 0.52);
    background: rgba(255, 95, 50, 0.16);
    color: #ffe6db;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.35px;
    text-transform: uppercase;
    font-weight: 700;
}

body.concert-date-page .date-highlight-chip i {
    color: #ffb08f;
}

body.concert-date-page .live_texte {
    width: min(1120px, 92%);
    margin: 14px auto 0 auto;
    padding: 15px 18px;
    border: 1px solid rgba(255, 120, 80, 0.22);
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.82) 0%, rgba(18, 18, 18, 0.66) 100%);
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: clamp(0.97rem, 1.1vw, 1.08rem);
    line-height: 1.55;
    color: rgba(255, 245, 238, 0.92);
    text-align: left;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

body.concert-date-page .live_texte img {
    width: min(620px, 100%);
    max-width: 100%;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 120, 80, 0.34);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

body.concert-date-page .live_texte img:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.4);
}

body.concert-date-page .live_texte u {
    text-decoration: none;
    display: inline-block;
    margin-right: 8px;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 140, 100, 0.58);
    background: rgba(255, 95, 50, 0.18);
    color: #ffe5d8;
    font-size: 0.8em;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    font-weight: 700;
}

body.concert-date-page .live_texte a.histoire_lien_concert {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 130, 90, 0.56);
    background: rgba(255, 90, 45, 0.18);
    color: #ffe8de;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.22s ease;
}

body.concert-date-page .live_texte a.histoire_lien_concert:hover {
    background: rgba(255, 100, 55, 0.28);
    border-color: rgba(255, 165, 130, 0.78);
    color: #fff7f3;
    transform: translateY(-1px);
}

body.concert-date-page .live_texte.info-heading {
    background: linear-gradient(135deg, rgba(255, 95, 50, 0.2) 0%, rgba(25, 25, 25, 0.72) 100%);
    border-color: rgba(255, 130, 90, 0.46);
    text-align: center;
}

body.concert-date-page .live_texte.info-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 14px;
}

body.concert-date-page .live_texte.cta-block {
    text-align: center;
    background: rgba(22, 22, 22, 0.74);
}

body.concert-date-page .live_texte.poster-block {
    padding: 10px 10px 12px;
}

body.concert-date-page .info-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffdccc;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: clamp(0.82rem, 0.9vw, 0.92rem);
    letter-spacing: 0.45px;
    text-transform: uppercase;
    font-weight: 700;
}

body.concert-date-page .info-label i {
    color: #ff9a71;
}

body.concert-date-page .info-value {
    margin-left: auto;
    color: rgba(255, 245, 238, 0.96);
    font-size: clamp(0.92rem, 1.02vw, 1.03rem);
}

body.concert-date-page #map {
    width: min(1120px, 92%);
    height: clamp(300px, 48vh, 500px);
    margin: 16px auto 0 auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 120, 80, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

body.concert-date-page #map .leaflet-tile-pane {
    filter: brightness(0.72) saturate(0.9) contrast(1.05);
}

body.concert-date-page #map:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

body.concert-date-page .box-rebours {
    width: min(1120px, 92%);
    margin: 22px auto 62px auto;
    padding: 18px;
    border: 1px solid rgba(255, 120, 80, 0.36);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.12) 0%, rgba(18, 18, 18, 0.72) 100%);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

body.concert-date-page .box-rebours > div {
    border: 1px solid rgba(255, 130, 90, 0.34);
    border-radius: 12px;
    padding: 12px 10px;
    background: rgba(20, 20, 20, 0.74);
}

body.concert-date-page .box-rebours > div > div {
    font-family: "Trebuchet MS", Arial, sans-serif;
    color: #fff;
    font-size: clamp(1.5rem, 2.1vw, 2.1rem);
    letter-spacing: 1px;
    text-shadow: 0 0 14px rgba(255, 130, 90, 0.18);
}

body.concert-date-page .box-rebours span {
    margin-top: 4px;
    display: block;
    font-family: "Trebuchet MS", Arial, sans-serif;
    color: rgba(255, 230, 220, 0.84);
    font-size: clamp(0.72rem, 0.82vw, 0.86rem);
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

body.concert-date-page .live_texte + .live_texte {
    margin-top: 12px;
}

body.concert-date-page #map + .live_texte {
    margin-top: 18px;
}

body.concerts-page .concerts-bridge {
    max-width: 760px;
    margin: 20px auto 44px auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
}

body.concerts-page .concerts-bridge .bridge-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 69, 0, 0.7), transparent);
}

body.concerts-page .concerts-bridge .bridge-dot {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 2px solid rgba(255, 107, 53, 0.8);
    background: radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.45), rgba(26, 26, 26, 0.95));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.25);
}

body.concerts-page .concerts-bridge .bridge-dot i {
    color: #ffd3c2;
    font-size: 0.95rem;
}

body.concerts-page .concerts-bridge .bridge-text {
    grid-column: 1 / -1;
    margin: 8px 0 0 0;
    text-align: center;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 0.98rem;
    letter-spacing: 0.3px;
    color: rgba(255, 235, 227, 0.9);
}



.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 69, 0, 0.1) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* hero-content wrapper removed; section handles layout */



.hero-title {
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: calc(2rem + 4vw);
    margin: 0 auto 20px auto;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: slideDown 0.8s ease-out;
    text-align: center;
    max-width: 800px;
    /* no transform on title */
}

body.first .hero-title {
    font-family: ASPAL;
    font-size: clamp(3.2rem, 8vw, 8.6rem);
}

body.first .hero-title.hero-logo {
    font-family: inherit;
    font-size: 0;
    line-height: 0;
    letter-spacing: 0;
    max-width: min(900px, 92vw);
}

body.first .hero-title.hero-logo img {
    display: block;
    width: min(860px, 92vw);
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}


/* fallback centering for each element */
.hero-subtitle,
.hero-buttons {
    margin: 0 auto !important;
    text-align: center !important;
}


@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSubtitlePulse {
    0%, 100% {
        opacity: 0.92;
        transform: translateY(0);
        text-shadow:
            0 0 0 rgba(255, 174, 130, 0),
            0 0 0 rgba(255, 120, 80, 0);
    }
    50% {
        opacity: 1;
        transform: translateY(-4px) scale(1.015);
        text-shadow:
            0 0 18px rgba(255, 174, 130, 0.34),
            0 0 36px rgba(255, 120, 80, 0.18);
    }
}

@keyframes heroSubtitleShine {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-subtitle {
    font-family: monospace;
    font-size: calc(1rem + 1vw);
    line-height: 1.65;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    animation: slideDown 0.8s ease-out 0.2s both;
    text-align: center;
    width: 100%;
}

.hero-buttons {
    display: inline-flex !important;
    gap: 20px !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    animation: slideDown 0.8s ease-out 0.4s both;
    margin: 20px auto 0 auto !important; /* add top margin to separate from subtitle */
    text-align: center !important;
}

/* Index hero spacing refinements */
body.first .hero-section {
    padding-top: 0px;
}

@media screen and (min-width: 1200px) {
    body.first .hero-section {
        min-height: calc(100vh - 88px);
    }
}

body.first .hero-subtitle {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: clamp(1.05rem, 1rem + 1vw, 1.55rem);
    margin-top: 34px;
    margin-bottom: 52px;
    padding: 14px 24px;
    border: 1px solid rgba(255, 143, 104, 0.3);
    border-radius: 999px;
    color: #fff8f3;
    background:
        linear-gradient(120deg, rgba(255, 92, 43, 0.16), rgba(255, 219, 185, 0.22), rgba(255, 92, 43, 0.16));
    background-size: 220% 220%;
    box-shadow:
        0 0 0 1px rgba(255, 140, 95, 0.06),
        0 14px 34px rgba(0, 0, 0, 0.28),
        0 0 28px rgba(255, 105, 65, 0.14);
    animation:
        slideDown 0.8s ease-out 0.2s both,
        heroSubtitlePulse 3.6s ease-in-out 1.1s infinite,
        heroSubtitleShine 5.8s linear 1.1s infinite;
    width: min(860px, calc(100% - 32px));
    backdrop-filter: blur(8px);
}

body.first .hero-subtitle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
    opacity: 0;
    transform: translateX(-130%);
    pointer-events: none;
    z-index: 1;
    animation: concertSweep 2.8s ease-in-out 1.4s infinite;
}

body.first .hero-buttons {
    gap: 28px !important;
    margin-top: 50px !important;
}

body.first .hero-scroll-indicator {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin: 34px auto 0 auto;
    color: rgba(255, 244, 238, 0.88);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 0.72rem;
    animation: slideDown 0.8s ease-out 0.55s both;
}

body.first .hero-scroll-text {
    opacity: 0.82;
}

body.first .hero-scroll-arrow {
    width: 18px;
    height: 18px;
    border-right: 2px solid rgba(255, 228, 217, 0.9);
    border-bottom: 2px solid rgba(255, 228, 217, 0.9);
    transform: rotate(45deg);
    animation: heroArrowBounce 1.8s ease-in-out infinite;
}

body.first .hero-scroll-indicator:hover {
    color: #ffffff;
}

body.first .hero-scroll-indicator:hover .hero-scroll-arrow {
    border-color: #ffffff;
}

@keyframes heroArrowBounce {
    0%, 100% {
        transform: rotate(45deg) translate(0, 0);
    }
    50% {
        transform: rotate(45deg) translate(5px, 5px);
    }
}

@media screen and (min-width: 769px) and (max-height: 860px) {
    body.first .hero-section {
        min-height: 420px;
    }

    body.first .hero-title.hero-logo {
        margin-top: -18px;
        margin-bottom: 10px;
    }

    body.first .hero-title.hero-logo img {
        width: min(760px, 88vw);
    }

    body.first .hero-subtitle {
        margin-top: 14px;
        margin-bottom: 34px;
    }

    body.first .hero-buttons {
        margin-top: 50px !important;
    }

    body.first .hero-scroll-indicator {
        margin-top: 24px;
    }
}

/* Index section spacing: reduce large gaps between blocks */
body.first .splide {
    margin: 0;
    border-radius: 0;
}

body.first .splide + .upcoming-concerts {
    margin-top: 0;
}

body.first .upcoming-concerts,
body.first .video,
body.first .media-section {
    padding: 58px 50px;
}

body.first .section-header {
    margin: 34px 0 26px 0;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: calc(0.9rem + 0.5vw);
    font-family: "Trebuchet MS", Arial, sans-serif;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: #ff4500;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.btn-primary:hover {
    background: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #ff4500;
}

.btn-secondary:hover {
    background: #ff4500;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: white;
    color: #1a1a1a;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin: 60px 0 40px 0;
}

.section-header h2 {
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: calc(1.5rem + 2vw);
    color: white;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff4500, transparent);
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: calc(0.8rem + 0.5vw);
    margin-top: 20px;
    font-family: monospace;
}

.section-label {
    text-align: center;
    color: #ff4500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: bold;
}

/* ===== UPCOMING CONCERTS SECTION ===== */
.upcoming-concerts {
    background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 80px 50px;
    position: relative;
    overflow: hidden;
}

/* ===== NEWS SECTION / ARTICLES ===== */
.news-home {
    background: linear-gradient(180deg, #171717 0%, #252525 100%);
    padding: 76px 32px;
    position: relative;
}

.news-page-grid {
    width: min(1180px, 94%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.news-page-grid {
    margin-top: 34px;
}

.news-highlight {
    width: min(1120px, 94%);
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: stretch;
    border: 1px solid rgba(255, 110, 75, 0.24);
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 69, 0, 0.12) 0%, rgba(19, 19, 19, 0.84) 100%);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
    position: relative;
    transition: all 0.3s ease;
}

.news-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transform: translateX(-130%);
    pointer-events: none;
}

.news-highlight:hover {
    transform: translateY(-10px);
    border-color: #ff4500;
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.3);
}

.news-highlight:hover::before {
    animation: concertSweep 0.55s ease-out forwards;
}

.news-highlight-copy {
    padding: 36px 34px;
    display: grid;
    align-content: center;
    gap: 16px;
}

.news-highlight-copy h3 {
    margin: 0;
    color: #fff5ef;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: clamp(1.4rem, 2.4vw, 2.2rem);
    line-height: 1.14;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.news-highlight-copy p {
    margin: 0;
    color: rgba(255, 234, 226, 0.82);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 58ch;
}

.news-highlight-copy .news-card-link {
    margin-top: 6px;
}

.news-highlight-media {
    display: block;
    min-height: 100%;
}

.news-highlight-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.32s ease;
}

.news-highlight:hover .news-highlight-media img {
    transform: scale(1.04);
}

.news-splide {
    width: min(980px, 88%);
    margin: 0 auto;
    padding: 0 36px;
    box-sizing: border-box;
}

.news-splide .splide__track {
    overflow: hidden;
}

.news-splide .splide__list {
    align-items: stretch;
}

.news-splide .splide__slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.news-card {
    border: 1px solid rgba(255, 110, 75, 0.24);
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 69, 0, 0.12) 0%, rgba(19, 19, 19, 0.84) 100%);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 430px;
    min-height: 100%;
}

.news-page-grid .news-card,
.news-home-grid .news-card {
    max-width: none;
}

.news-card-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.news-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.32s ease;
}

.news-card:hover .news-card-media img {
    transform: scale(1.04);
}

.news-card-content {
    padding: 24px 24px 26px;
    display: grid;
    gap: 12px;
}

.news-card-meta,
.article-meta {
    display: inline-flex;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 118, 82, 0.14);
    border: 1px solid rgba(255, 143, 104, 0.22);
    color: #ffd0be;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.news-card-content h3,
.news-card-content h2 {
    margin: 0;
    color: #fff5ef;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: clamp(1.18rem, 1.5vw, 1.5rem);
    line-height: 1.26;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.news-card-content p {
    margin: 0;
    color: rgba(255, 234, 226, 0.78);
    line-height: 1.65;
}

.news-card-link {
    justify-self: start;
}

.news-home-actions {
    text-align: center;
    margin-top: 28px;
}

.news-splide .splide__arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 95, 50, 0.16);
    border: 1px solid rgba(255, 130, 90, 0.32);
    opacity: 1;
}

.news-splide .splide__arrow svg {
    fill: #ffe1d2;
}

.news-splide .splide__arrow:hover {
    background: rgba(255, 95, 50, 0.28);
}

.news-splide .splide__arrow--prev {
    left: 0;
}

.news-splide .splide__arrow--next {
    right: 0;
}

body.actualites-page .actualites-hero,
body.article-page .article-hero {
    padding: 72px 0 88px 0;
    min-height: auto;
}

body.actualites-page .actualites-shell {
    width: min(1240px, 94%);
    margin: 0 auto;
}

body.actualites-page .actualites-intro {
    width: min(760px, 100%);
    margin: 0 auto 34px auto;
    text-align: center;
}

body.actualites-page .actualites-hero .hero-title,
body.article-page .article-layout .hero-title {
    font-size: clamp(2rem, 3.4vw, 3.6rem);
    letter-spacing: 0.02em;
    line-height: 1.02;
    text-transform: none;
}

body.actualites-page .actualites-hero .hero-title {
    margin: 0 0 14px 0;
    max-width: none;
}

body.actualites-page .actualites-hero .hero-subtitle,
body.article-page .article-layout .hero-subtitle {
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    line-height: 1.72;
    color: rgba(255, 236, 228, 0.84);
}

body.actualites-page .actualites-hero .hero-subtitle {
    width: min(680px, 100%);
    margin: 0 auto 0 auto;
}

.news-featured {
    margin: 0 0 38px 0;
}

.news-card-featured {
    display: grid;
    grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
    gap: 0;
    max-width: none;
    border-radius: 28px;
    cursor: pointer;
}

.news-featured-media {
    min-height: 100%;
}

.news-card-featured .news-featured-media img {
    min-height: 100%;
}

.news-featured-copy {
    padding: 38px 38px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
}

.news-featured-copy h2 {
    margin: 0;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: clamp(1.55rem, 2.3vw, 2.45rem);
    line-height: 1.08;
    color: #fff6f0;
    text-transform: none;
    letter-spacing: 0.01em;
}

.news-featured-copy p {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.78;
    color: rgba(255, 237, 230, 0.84);
    max-width: 58ch;
}

.news-card-featured:focus-visible {
    outline: 2px solid rgba(255, 174, 130, 0.75);
    outline-offset: 3px;
}

.news-section-header {
    width: min(760px, 100%);
    margin: 0 auto 24px auto;
    text-align: center;
}

.news-section-header h2 {
    margin: 0 0 10px 0;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    color: #fff4ee;
    letter-spacing: 0.02em;
}

.news-section-header p {
    margin: 0;
    color: rgba(255, 235, 226, 0.74);
    line-height: 1.65;
}

body.actualites-page .news-page-grid {
    width: 100%;
    gap: 28px;
    margin-top: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

body.actualites-page .news-card {
    border-radius: 22px;
    border: 1px solid rgba(255, 120, 86, 0.2);
    background: linear-gradient(160deg, rgba(255, 74, 25, 0.11) 0%, rgba(18, 18, 18, 0.9) 100%);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

body.actualites-page .news-card-media {
    aspect-ratio: 16 / 10;
}

body.actualites-page .news-card-content {
    padding: 24px 24px 22px;
    gap: 12px;
    text-align: left;
}

body.actualites-page .news-card-content .news-card-meta {
    justify-self: start;
}

body.actualites-page .news-card-content h2 {
    margin: 0;
    font-size: clamp(1.08rem, 1.4vw, 1.38rem);
    line-height: 1.24;
    letter-spacing: 0.01em;
    text-transform: none;
}

body.actualites-page .news-card-content p {
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.7;
    color: rgba(255, 235, 226, 0.79);
    text-align: left;
}

body.actualites-page .news-card-link {
    justify-self: start;
}

body.actualites-page .news-card-media[href="Actu_Repetitions.html"] img {
    object-position: 50% 46%;
}

.news-featured-copy .news-card-link {
    pointer-events: auto;
}

.article-shell {
    width: min(1180px, 94%);
    margin: 0 auto;
}

.article-layout {
    display: grid;
    gap: 28px;
}

.article-top {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
    gap: 26px;
    align-items: stretch;
}

.article-heading-card,
.article-content-card {
    border: 1px solid rgba(255, 120, 86, 0.24);
    border-radius: 24px;
    background: linear-gradient(155deg, rgba(255, 77, 31, 0.12) 0%, rgba(18, 18, 18, 0.9) 100%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.article-heading-card {
    padding: 34px 34px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.article-heading-card .hero-title {
    margin: 16px 0 14px 0;
    max-width: 16ch;
    text-align: left;
}

.article-heading-card .hero-subtitle {
    margin: 0;
    max-width: 50ch;
    text-align: left !important;
}

.article-cover {
    margin: 0;
    min-height: 100%;
}

.article-cover img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.article-content-card {
    padding: 36px 38px 32px;
}

.article-body {
    width: min(760px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.article-body p {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: rgba(255, 239, 233, 0.86);
    font-size: 1rem;
    line-height: 1.86;
    text-align: left;
}

.article-body a {
    color: #ffd6c5;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 165, 132, 0.45);
    padding-bottom: 1px;
    transition: color 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.article-body a:hover {
    color: #fff4ee;
    border-bottom-color: rgba(255, 196, 172, 0.9);
    background-color: rgba(255, 120, 86, 0.08);
}

.article-actions {
    margin-top: 28px;
    text-align: center;
}

body.actualites-page .news-card-link,
body.article-page .article-actions .btn {
    padding: 11px 22px;
    font-size: 0.8rem;
}

@media screen and (max-width: 1024px) {
    .news-card-featured {
        grid-template-columns: 1fr;
    }

    .news-featured-media {
        min-height: 280px;
    }

    body.actualites-page .news-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-top {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .article-heading-card {
        align-items: center;
        text-align: center;
    }

    .article-heading-card .article-meta {
        align-self: center;
    }

    .article-heading-card .hero-title {
        text-align: center;
        max-width: 100%;
    }

    .article-heading-card .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        text-align: center !important;
    }

    .article-cover {
        min-height: 320px;
    }
}

@media screen and (max-width: 900px) {
    body.actualites-page .news-page-grid {
        gap: 22px;
    }

    .article-shell {
        width: min(920px, 94%);
    }

    .article-heading-card {
        padding: 28px 26px 24px;
    }

    .article-content-card {
        padding: 30px 24px 26px;
    }
}

@media screen and (max-width: 640px) {
    body.actualites-page .actualites-hero,
    body.article-page .article-hero {
        padding: 52px 0 68px 0;
    }

    body.actualites-page .actualites-hero .hero-title,
    body.article-page .article-layout .hero-title {
        font-size: clamp(1.6rem, 8vw, 2.4rem);
        line-height: 1.06;
    }

    body.actualites-page .actualites-hero .hero-subtitle,
    body.article-page .article-layout .hero-subtitle {
        font-size: 0.96rem;
        line-height: 1.64;
    }

    body.actualites-page .actualites-intro {
        margin-bottom: 26px;
    }

    .news-featured {
        margin-bottom: 28px;
        border-radius: 20px;
    }

    .news-featured-copy {
        padding: 22px 18px 20px;
        gap: 12px;
    }

    .news-featured-copy h2 {
        font-size: 1.34rem;
        line-height: 1.15;
    }

    .news-featured-copy p {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    body.actualites-page .news-page-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    body.actualites-page .news-card {
        border-radius: 16px;
    }

    body.actualites-page .news-card-content {
        padding: 18px 16px 18px;
        gap: 10px;
    }

    body.actualites-page .news-card-content h2 {
        font-size: 1.08rem;
    }

    .article-shell {
        width: min(620px, 92%);
    }

    .article-layout {
        gap: 18px;
    }

    .article-heading-card,
    .article-content-card {
        padding: 22px 16px 20px;
        border-radius: 16px;
    }

    .article-heading-card {
        align-items: center;
        text-align: center;
    }

    .article-heading-card .hero-title {
        max-width: 100%;
        text-align: center;
    }

    .article-heading-card .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        text-align: center !important;
    }

    .article-heading-card .article-meta {
        align-self: center;
    }

    .article-cover img {
        min-height: 260px;
        border-radius: 16px;
    }

    .article-body {
        gap: 14px;
    }

    .article-body p {
        font-size: 0.96rem;
        line-height: 1.72;
    }

    body.article-page .article-actions {
        display: grid;
        justify-items: center;
    }

    body.article-page .article-actions .btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: auto !important;
        max-width: min(100%, 210px) !important;
        min-width: 0 !important;
        min-height: 32px !important;
        padding: 8px 14px !important;
        font-size: 0.7rem !important;
        line-height: 1.12 !important;
        text-align: center !important;
        white-space: normal !important;
        box-sizing: border-box !important;
    }
}

.concerts-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.concert-card {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1) 0%, rgba(255, 69, 0, 0.05) 100%);
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.concert-card::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transform: translateX(-130%);
    pointer-events: none;
}

.concert-card:hover {
    transform: translateY(-10px);
    border-color: #ff4500;
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.3);
}

.concert-card:hover::before {
    animation: concertSweep 0.55s ease-out forwards;
}

@keyframes concertSweep {
    0% {
        opacity: 0;
        transform: translateX(-130%);
    }
    12% {
        opacity: 1;
    }
    88% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(130%);
    }
}

.concert-date {
    font-family: "Trebuchet MS", Arial, sans-serif;
    color: #ff4500;
    font-size: calc(0.9rem + 0.5vw);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.upcoming-concerts .concert-date {
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: none;
}

/* Dedicated date style for Concerts page list */
.concerts-list .concert-date {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    padding: 12px 16px;
    margin: 0;
    border: 2px solid #ff4500;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 69, 0, 0.22) 0%, rgba(26, 26, 26, 0.9) 100%);
    box-shadow: 0 8px 20px rgba(255, 69, 0, 0.25);
    line-height: 1.05;
}

.concerts-list .concert-date .date-day {
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: clamp(1.9rem, 2.5vw, 2.5rem);
    letter-spacing: 1px;
    color: #fff;
}

.concerts-list .concert-date .date-month {
    margin-top: 4px;
    font-family: monospace;
    font-size: clamp(0.72rem, 0.85vw, 0.9rem);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: #ff8c5f;
}

.concerts-list .concert-date .date-year {
    margin-top: 5px;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: clamp(0.7rem, 0.78vw, 0.82rem);
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 224, 210, 0.9);
}

.concerts-list .concert-date.date-text-only {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 16px;
    min-height: 74px;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: clamp(0.78rem, 0.95vw, 0.95rem);
    font-weight: 700;
    letter-spacing: 1.4px;
    line-height: 1.1;
}

/* Larger, more readable layout for Concerts.html cards */
.concerts-list {
    max-width: 1100px;
    margin: 18px auto 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

body.concerts-page .concerts-shell {
    width: min(1180px, 95%);
    margin: 6px auto 0 auto;
    padding: 18px 0 28px;
    border: 1px solid rgba(255, 120, 80, 0.26);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.08) 0%, rgba(16, 16, 16, 0.36) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 160, 130, 0.12), 0 14px 30px rgba(0, 0, 0, 0.24);
}

.concerts-list .concert-card {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr) auto;
    align-items: center;
    gap: 34px;
    padding: 28px 26px;
    border-radius: 14px;
    border-width: 2px;
    text-align: left;
}

.concerts-list .concert-details {
    margin-top: 0;
    padding-left: 8px;
}

.concerts-list .concert-meta {
    margin-bottom: 10px;
}

.concerts-list .status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 140, 100, 0.54);
    background: rgba(255, 95, 50, 0.16);
    color: #ffe4d8;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.45px;
}

.concerts-list .status-pill.cancelled {
    border-color: rgba(255, 145, 145, 0.64);
    background: rgba(210, 45, 45, 0.28);
    color: #ffe0e0;
}

.concerts-list .status-pill.soon {
    border-color: rgba(255, 190, 120, 0.62);
    background: rgba(230, 140, 50, 0.24);
    color: #fff0d8;
}

.concerts-list .concert-event {
    font-family: "Trebuchet MS", "Arial Narrow", Arial, sans-serif;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: clamp(1.2rem, 1.55vw, 1.6rem);
    letter-spacing: 0.6px;
    margin-bottom: 8px;
}

.concerts-list .concert-lieu {
    font-family: "Trebuchet MS", Arial, sans-serif;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(0.95rem, 1.05vw, 1.05rem);
    letter-spacing: 0.2px;
}

.concerts-list .concert-lieu i {
    margin-right: 7px;
    color: #ff9a71;
}

.concerts-list .concert-action {
    margin-top: 0;
    justify-self: end;
}

.concerts-list .concert-action .btn-outline {
    padding: 14px 30px;
    font-size: clamp(0.88rem, 0.95vw, 1rem);
    border-width: 2px;
}

.concerts-list .cancelled-card {
    border-color: rgba(255, 120, 120, 0.7);
    border-left: 6px solid rgba(255, 105, 105, 0.95);
    background: linear-gradient(135deg, rgba(38, 38, 42, 0.92) 0%, rgba(26, 26, 30, 0.9) 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
    padding-top: 34px;
}

.concerts-list .cancelled-card::after {
    content: "ANNULÉ";
    position: absolute;
    top: 12px;
    right: -70px;
    width: 240px;
    text-align: center;
    padding: 9px 0;
    transform: rotate(34deg);
    background: linear-gradient(180deg, #ffd9d9 0%, #ffb3b3 100%);
    color: #5b1111;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.28);
    z-index: 3;
    pointer-events: none;
}

.concerts-list .cancelled-card .concert-date {
    border-color: #ff5a5a;
    background: linear-gradient(180deg, rgba(255, 95, 95, 0.36) 0%, rgba(50, 16, 16, 0.95) 100%);
    box-shadow: 0 8px 20px rgba(140, 40, 40, 0.34);
}

.concerts-list .cancel-pill {
    display: inline-block;
    margin-left: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #ff8f8f;
    background: rgba(190, 35, 35, 0.35);
    color: #ffd9d9;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    vertical-align: middle;
}

.concerts-list .cancel-note {
    margin-top: 10px;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 0.92rem;
    color: rgba(255, 226, 226, 0.95);
    letter-spacing: 0.15px;
    text-transform: none;
}

.concerts-list .cancelled-card .concert-action .annule {
    border-color: #ff9d9d;
    color: #fff1f1;
    background: linear-gradient(180deg, rgba(220, 45, 45, 0.85) 0%, rgba(155, 25, 25, 0.95) 100%);
    font-family: "Trebuchet MS", Arial, sans-serif;
    text-transform: none;
    letter-spacing: 0.2px;
}

.concerts-list .cancelled-card .concert-event {
    color: #ffe6e6;
}

.concerts-list .cancelled-card .concert-lieu {
    color: rgba(255, 233, 233, 0.86);
}

.concerts-list .concert-card.soon {
    position: relative;
    border-color: rgba(255, 145, 105, 0.72);
    border-left: 6px solid rgba(255, 140, 95, 0.92);
    background: linear-gradient(135deg, rgba(44, 33, 29, 0.9) 0%, rgba(25, 25, 29, 0.9) 100%);
    box-shadow: 0 10px 28px rgba(130, 72, 40, 0.22);
}

.concerts-list .concert-card.soon::before {
    content: "EN PRÉPARATION";
    position: absolute;
    top: 10px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 175, 130, 0.72);
    background: rgba(255, 140, 95, 0.2);
    color: #ffe7da;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    pointer-events: none;
}

.concerts-list .concert-card.soon .concert-date {
    border-color: rgba(255, 150, 112, 0.85);
    background: linear-gradient(180deg, rgba(255, 132, 92, 0.3) 0%, rgba(45, 23, 17, 0.94) 100%);
    box-shadow: 0 8px 20px rgba(150, 74, 42, 0.3);
}

.concerts-list .concert-card.soon .concert-date.date-text-only {
    font-size: clamp(0.88rem, 1.05vw, 1.05rem);
    letter-spacing: 1.6px;
    color: #ffece3;
}

.concerts-list .concert-card.soon .status-pill.soon {
    border-color: rgba(255, 180, 140, 0.75);
    background: rgba(255, 140, 95, 0.24);
    color: #ffede3;
}

.concerts-list .concert-card.soon .concert-event {
    color: #fff0e7;
}

.concerts-list .concert-card.soon .concert-lieu {
    color: rgba(255, 233, 222, 0.88);
}

.concerts-list .concert-card.soon .concert-lieu i {
    color: #ffb18e;
}

.concerts-list .concert-card.soon .concert-action .soon_2 {
    border-color: rgba(255, 178, 140, 0.82);
    color: #fff2eb;
    background: linear-gradient(180deg, rgba(255, 135, 92, 0.78) 0%, rgba(170, 74, 40, 0.92) 100%);
}

/* Ensure cancelled card is clearly distinct from "en preparation" cards */
.concerts-list .concert-card.cancelled-card {
    border-color: rgba(255, 108, 108, 0.82);
    border-left: 6px solid rgba(255, 92, 92, 0.95);
    background: linear-gradient(135deg, rgba(56, 20, 24, 0.92) 0%, rgba(25, 18, 22, 0.95) 100%);
    box-shadow: 0 12px 30px rgba(110, 36, 42, 0.28);
}

.concerts-list .concert-card.cancelled-card::before {
    display: none;
}

.concert-info h3 {
    font-family: "Trebuchet MS", Arial, sans-serif;
    color: white;
    font-size: calc(1.2rem + 0.5vw);
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: none;
    margin: 15px 0;
}

.concert-info p {
    color: rgba(255, 255, 255, 0.7);
    font-family: monospace;
    margin-bottom: 20px;
}

/* Index: compact and centered next concert card */
body.first .upcoming-concerts .concerts-container {
    max-width: 980px;
    grid-template-columns: 1fr;
    justify-items: center;
}

body.first .upcoming-concerts .next-concert-card {
    width: min(760px, 100%);
    display: grid;
    grid-template-columns: auto auto;
    align-items: stretch;
    justify-content: center;
    gap: 28px;
    text-align: center;
    padding: 26px 24px;
}

body.first .upcoming-concerts .next-concert-card .concert-date {
    margin: 0;
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    width: fit-content;
    text-align: center;
    font-size: clamp(2.6rem, 5.3vw, 5rem);
    font-weight: 800;
    line-height: 0.94;
    letter-spacing: 0.4px;
    white-space: normal;
}

body.first .upcoming-concerts .next-concert-card .concert-date.date-split {
    --date-box-size: clamp(150px, 16vw, 225px);
    width: var(--date-box-size);
    aspect-ratio: 1 / 1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: stretch;
    justify-items: stretch;
    gap: 0;
    padding: 0;
    box-sizing: border-box;
}

body.first .upcoming-concerts .next-concert-card .concert-date .date-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 100%;
    transform: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

body.first .upcoming-concerts .next-concert-card .concert-date .date-day-big,
body.first .upcoming-concerts .next-concert-card .concert-date .date-month-big {
    display: block;
    text-align: center;
}

body.first .upcoming-concerts .next-concert-card .concert-date .date-day-big {
    font-size: 1.72em;
    font-weight: 900;
    line-height: 0.72;
    margin: 0;
    padding: 0;
    transform: scaleY(1.12);
    transform-origin: center;
}

body.first .upcoming-concerts .next-concert-card .concert-date .date-month-big {
    display: inline-block;
    justify-self: center;
    font-size: clamp(0.34em, calc(3.65em / var(--month-len, 4)), 0.8em);
    font-weight: 900;
    line-height: 0.7;
    letter-spacing: clamp(-0.06em, calc((5 - var(--month-len, 4)) * 0.012em), 0.01em);
    text-transform: uppercase;
    white-space: nowrap;
    margin: 30px 0 0 0;
    padding: 0;
}

body.first .upcoming-concerts .next-concert-card .concert-date .date-year-vert {
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    transform: rotate(-90deg) scaleX(1.44);
    transform-origin: center;
    font-size: 0.62em;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    opacity: 1;
    margin: 0;
    padding: 20px 0 0 0;
    white-space: nowrap;
}

body.first .upcoming-concerts .next-concert-card .concert-info {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    max-width: 460px;
    display: grid;
    gap: 2px;
    justify-items: start;
    text-align: left;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 129, 92, 0.34);
    background: linear-gradient(135deg, rgba(255, 90, 42, 0.12) 0%, rgba(24, 24, 24, 0.18) 100%);
}

body.first .upcoming-concerts .next-concert-card .concert-info h3 {
    margin: 0;
    font-size: clamp(1.7rem, 2.5vw, 2.35rem);
    line-height: 1.02;
    letter-spacing: 0.35px;
}

body.first .upcoming-concerts .next-concert-card .concert-info p {
    margin: 0;
    font-size: clamp(1.2rem, 1.65vw, 1.55rem);
    line-height: 1.08;
    width: 100%;
    text-align: center;
    justify-self: center;
}

body.first .upcoming-concerts .next-concert-card .concert-info .btn {
    width: auto;
    max-width: none;
    min-width: 138px;
    min-height: 42px;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: "Bebas Neue", "Oswald", "Montserrat", "Segoe UI", Arial, sans-serif;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    align-self: center;
    line-height: 1;
    text-align: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 90, 56, 0.9);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01)),
        linear-gradient(135deg, rgba(48, 9, 9, 0.96) 0%, rgba(22, 22, 22, 0.98) 52%, rgba(73, 16, 10, 0.96) 100%);
    color: #ffe5db;
    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.44),
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        inset 0 -1px 0 rgba(255, 90, 56, 0.25);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
    transition: transform 150ms ease, filter 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

body.first .upcoming-concerts .next-concert-card .concert-info .btn:hover,
body.first .upcoming-concerts .next-concert-card .concert-info .btn:focus-visible {
    transform: translateY(-1px) scale(1.01);
    filter: brightness(1.12);
    border-color: rgba(255, 123, 73, 1);
    box-shadow:
        0 12px 26px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(255, 77, 38, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

body.first .upcoming-concerts .next-concert-card .concert-info .btn:active {
    transform: translateY(0);
    filter: brightness(0.95);
}

/* Alternate (legacy-like) style for TBA/pending state on index */
body.first .upcoming-concerts .next-concert-card.pending-mode {
    width: min(620px, 100%);
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
    text-align: center;
    padding: 30px 26px;
}

body.first .upcoming-concerts .next-concert-card.pending-mode .concert-date {
    grid-column: auto;
    grid-row: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.15rem);
    letter-spacing: 0.22em;
    text-indent: 0.22em;
    text-transform: uppercase;
    color: #ffb08f;
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 146, 99, 0.45);
    background: linear-gradient(180deg, rgba(255, 120, 64, 0.15) 0%, rgba(30, 17, 14, 0.52) 100%);
}

body.first .upcoming-concerts .next-concert-card.pending-mode .concert-info {
    grid-column: auto;
    grid-row: auto;
    max-width: 560px;
    justify-items: center;
    text-align: center;
    gap: 14px;
    padding: 0;
    border: 0;
    background: transparent;
}

body.first .upcoming-concerts .next-concert-card.pending-mode .concert-info h3 {
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    line-height: 1.1;
    margin: 0;
}

body.first .upcoming-concerts .next-concert-card.pending-mode .concert-info p {
    font-size: clamp(1.05rem, 1.4vw, 1.26rem);
    line-height: 1.2;
    margin: 0;
}

body.first .upcoming-concerts .next-concert-card.pending-mode .concert-info .btn {
    min-width: 170px;
    border-radius: 999px;
    border: 1px solid rgba(255, 150, 120, 0.64);
    background: rgba(255, 120, 76, 0.12);
    color: #ffe7dc;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
    text-shadow: none;
    margin-top: 4px;
}

body.first .upcoming-concerts .next-concert-card.pending-mode .concert-info .btn:hover,
body.first .upcoming-concerts .next-concert-card.pending-mode .concert-info .btn:focus-visible {
    border-color: rgba(255, 170, 142, 0.9);
    background: rgba(255, 120, 76, 0.2);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.34);
}


/* ===== MEDIA SECTION ===== */
.media-section {
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 80px 50px;
    position: relative;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.media-social-combo {
    width: min(1100px, 96%);
    margin: 0 auto;
    display: block;
}

body.first .media-social-combo .media-grid {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 24px;
    align-content: stretch;
}

.media-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.15) 0%, transparent 100%);
    border: 1px solid rgba(255, 69, 0, 0.2);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
    position: relative;
    overflow: hidden;
}

.media-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.3) 0%, transparent 70%);
    transition: all 0.3s ease;
    opacity: 0;
}

.media-card i {
    font-size: calc(3rem + 1vw);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.media-card span {
    font-size: calc(1rem + 0.2vw);
    font-family: "Trebuchet MS", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.media-card small {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 12px;
    color: rgba(255, 231, 222, 0.7);
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 0.88rem;
    line-height: 1.45;
    text-align: center;
    text-transform: none;
    letter-spacing: 0.02em;
}

.media-card:hover {
    transform: translateY(-15px);
    border-color: #ff4500;
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.2);
}

.media-card:hover::before {
    opacity: 1;
}

.media-card:hover i {
    color: #ff4500;
    transform: scale(1.2);
}

.media-card.facebook:hover { color: #1877f2; }
.media-card.instagram:hover { color: #e1306c; }
.media-card.youtube:hover { color: #ff0000; }

/* ===== SOCIAL FEED SECTION (INDEX) ===== */
.lb-data .lb-caption a {
    color: #ffb48f;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 700;
}

.lb-data .lb-caption a:hover,
.lb-data .lb-caption a:focus-visible {
    color: #ffd1ba;
}

@media screen and (max-width: 1024px) {
    .news-highlight {
        width: min(900px, 94%);
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    }

    .news-highlight-copy {
        padding: 30px 28px;
    }

    .news-splide {
        width: min(840px, 90%);
        padding: 0 30px;
    }

    .media-social-combo {
        width: min(760px, 94%);
    }

    body.first .media-social-combo .media-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

}

/* ===== RESPONSIVENESS ===== */
@media screen and (max-width: 768px) {
    body.first .splide__slide .disabled::after {
        content: none !important;
        display: none !important;
    }

    body.first .splide__slide.is-active .disabled:hover img {
        opacity: 1;
    }

    html,
    body {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        display: none;
    }

    .hero-section {
        padding: 80px 30px;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: calc(1.5rem + 3vw);
    }
    
    .hero-subtitle {
        font-size: calc(0.8rem + 0.5vw);
    }
    
    .hero-buttons {
        flex-direction: column;
    }

    body.first .hero-subtitle {
        margin-top: 22px;
        margin-bottom: 52px;
    }

    body.first .hero-buttons {
        gap: 18px !important;
        margin-top: 24px !important;
    }

    body.first .hero-title.hero-logo img {
        width: min(980px, 96vw);
    }

    body.first .hero-buttons .btn {
        width: auto;
        min-width: 168px;
        max-width: 220px;
        padding: 10px 18px;
        font-size: 0.76rem;
        margin: 0 auto;
    }

    body.first .hero-section {
        min-height: 100svh;
        padding: 18px 24px 46px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    body.apropos-page .apropos-grid {
        width: min(700px, 92%);
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 26px;
    }

    body.apropos-page .apropos-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px 18px;
        gap: 14px;
    }

    body.apropos-page .apropos-card-media img {
        max-width: 320px;
        width: 100%;
        margin: 0 auto;
        height: 180px;
    }

    .news-home-grid,
    .news-page-grid {
        width: min(700px, 92%);
        grid-template-columns: 1fr;
    }

    .news-highlight {
        width: min(700px, 92%);
        grid-template-columns: 1fr;
    }

    .news-highlight-copy {
        order: 2;
        padding: 20px 18px 22px;
        gap: 12px;
    }

    .news-highlight-copy h3 {
        font-size: clamp(1.08rem, 4.4vw, 1.42rem);
        line-height: 1.18;
    }

    .news-highlight-copy p {
        font-size: 0.94rem;
        line-height: 1.6;
    }

    .news-highlight-media {
        order: 1;
        aspect-ratio: 16 / 10;
    }

    .news-splide {
        width: min(94%, 620px);
        padding: 0 24px;
    }

    body.membres-page .members-list {
        width: min(700px, 92%);
        margin-top: 24px;
        gap: 20px;
    }

    body.membres-page .member-card,
    body.membres-page .member-card.reverse {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 14px;
        padding: 20px 18px;
    }

    body.membres-page .member-card.reverse .member-photo,
    body.membres-page .member-card.reverse .member-content {
        order: initial;
    }

    body.membres-page .member-photo img {
        max-width: 340px;
        width: 100%;
        margin: 0 auto;
        height: 230px;
    }

    body.membres-page .member-card#Nico .member-photo img {
        object-position: center 8%;
    }

    body.membres-page .member-content h2 span {
        display: block;
        width: fit-content;
        margin: 10px auto 0 auto;
    }

    body.anciens-concerts-page .anciens-list {
        width: min(700px, 92%);
        margin-top: 24px;
        gap: 12px;
    }

    body.anciens-concerts-page .ancien-card {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 14px 14px;
        text-align: center;
    }

    body.anciens-concerts-page .ancien-city {
        justify-self: center;
        text-align: center;
    }

    body.member-profile-page .profile-layout {
        width: min(700px, 92%);
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 24px;
    }

    body.member-profile-page .profile-photo-card {
        position: static;
    }

    body.member-profile-page .profile-photo-card img {
        max-width: 360px;
        width: 100%;
        margin: 0 auto;
        height: 320px;
    }

    body.member-profile-page .profile-content-card {
        padding: 20px 18px;
        text-align: left;
    }

    body.member-profile-page .profile-actions {
        justify-content: center;
    }

    body.histoire-page .story-layout {
        width: min(700px, 92%);
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 24px;
    }

    body.histoire-page .story-card {
        padding: 20px 18px;
        text-align: center;
    }

    body.histoire-page .story-card p {
        text-align: left;
    }

    body.histoire-page .story-cta {
        text-align: center;
    }

    body.histoire-page .story-media img {
        height: 220px;
    }

    body.histoire-page .story-banner-wrap {
        width: min(700px, 92%);
    }

    body.photos-page .galerie {
        width: min(700px, 92%);
        gap: 14px;
        margin-top: 24px;
    }

    body.photos-page .photos-filters {
        width: min(700px, 92%);
        gap: 8px;
    }

    body.photos-page .filters-label {
        width: 100%;
        text-align: center;
        padding-right: 0;
    }

    body.photos-page .photos-events {
        width: min(700px, 92%);
        gap: 18px;
    }

    body.photos-page .event-section {
        padding: 14px 10px 14px;
    }

    body.photos-page .event-head {
        justify-content: center;
        text-align: center;
    }

    body.photos-page .event-count {
        margin: 2px auto 0 auto;
    }

    body.contact-page .contact-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 0;
    }

    body.contact-page .contact-card {
        padding: 20px 16px;
        text-align: center;
    }

    body.contact-page .contact-actions {
        justify-items: center;
    }

    body.contact-page .contact-btn {
        width: min(95%, 420px);
        justify-content: center;
    }

    body.contact-page .contact-asso {
        width: min(280px, 80%);
        margin-top: 24px;
    }

    body.contact-page .contact-shell {
        width: min(700px, 92%);
        margin-top: 24px;
    }

    body.contact-page .donate-card {
        width: 100%;
        padding: 20px 16px;
        text-align: center;
    }

    body.contact-page .donate-head {
        justify-content: center;
        flex-wrap: wrap;
    }

    body.contact-page .donate-actions {
        justify-content: center;
    }

    body.contact-page .donate-btn {
        width: min(95%, 420px);
    }

    body.concert-date-page ion-icon[name="arrow-back-outline"] {
        margin: 16px 0 0 14px;
        font-size: 2rem;
        padding: 7px;
    }

    body.concert-date-page .live {
        width: min(700px, 92%);
        margin-top: 18px;
        padding: 18px 14px;
    }

    body.concert-date-page .date-highlight-bar {
        width: min(700px, 92%);
        margin-bottom: 12px;
        gap: 8px;
    }

    body.concert-date-page .date-highlight-chip {
        padding: 7px 10px;
        font-size: 0.7rem;
        letter-spacing: 0.25px;
    }

    body.concert-date-page .live_texte {
        width: min(700px, 92%);
        padding: 12px 14px;
    }

    body.concert-date-page .live_texte.info-line {
        flex-direction: column;
        align-items: flex-start;
    }

    body.concert-date-page .info-value {
        margin-left: 0;
    }

    body.concert-date-page #map {
        width: min(700px, 92%);
        height: 290px;
    }

    body.concert-date-page .box-rebours {
        width: min(700px, 92%);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 12px;
        margin-bottom: 42px;
    }

    body.photos-page .photos-intro {
        width: min(700px, 92%);
        margin-top: 14px;
        padding: 12px 14px;
    }

    body.photos-page .photos-intro p {
        font-size: 0.9rem;
    }

    body.photos-page .galerie a {
        width: clamp(160px, 42vw, 240px);
        flex-basis: clamp(160px, 42vw, 240px);
    }

    body.photos-page .galerie a img {
        height: 180px;
    }

    body.first .splide {
        margin: 0;
        border-radius: 0;
    }

    body.first .splide .splide__arrow {
        width: 2rem;
        height: 2rem;
    }

    body.first .splide .splide__arrow--prev {
        left: clamp(0.9rem, 5vw, 2rem) !important;
    }

    body.first .splide .splide__arrow--next {
        right: clamp(0.9rem, 5vw, 2rem) !important;
    }

    body.first .upcoming-concerts,
    body.first .video,
    body.first .media-section {
        padding: 46px 24px;
    }

    body.first .section-header {
        margin: 24px 0 20px 0;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .media-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    body.first .media-social-combo .media-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .concerts-container {
        grid-template-columns: 1fr;
    }

    body.first .upcoming-concerts .concert-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 14px;
        padding: 26px 22px;
    }

    body.first .upcoming-concerts .next-concert-card {
        width: min(500px, 96%);
        gap: 16px;
        padding: 18px 14px;
    }

    body.first .upcoming-concerts .concert-date {
        font-size: clamp(1.2rem, 4.6vw, 1.8rem);
    }

    body.first .upcoming-concerts .next-concert-card .concert-date {
        grid-column: auto;
        grid-row: auto;
        text-align: center;
        font-size: clamp(1.35rem, 5vw, 2rem);
        transform: none !important;
        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;
        white-space: nowrap;
    }

    body.first .upcoming-concerts .next-concert-card .concert-date.date-split {
        --date-box-size: auto;
        width: auto;
        aspect-ratio: auto;
        display: block;
        grid-template-columns: none;
        align-items: center;
        justify-items: center;
        gap: 0;
        padding: 0;
        justify-content: center;
    }

    body.first .upcoming-concerts .next-concert-card .concert-date .date-main,
    body.first .upcoming-concerts .next-concert-card .concert-date .date-day-big,
    body.first .upcoming-concerts .next-concert-card .concert-date .date-month-big,
    body.first .upcoming-concerts .next-concert-card .concert-date .date-year-vert {
        display: inline;
        transform: none !important;
        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;
        margin: 0 !important;
        padding: 0 !important;
        letter-spacing: normal;
        line-height: inherit;
    }

    body.first .upcoming-concerts .next-concert-card .concert-date .date-month-big {
        font-size: 0.92em !important;
        font-weight: 800;
        margin-right: 0.22em !important;
    }

    body.first .upcoming-concerts .next-concert-card .concert-date .date-year-vert {
        font-size: 0.9em !important;
        font-weight: 800;
    }

    body.first .upcoming-concerts .next-concert-card .concert-date .date-day-big {
        margin-right: 0.18em !important;
    }

    body.first .upcoming-concerts .next-concert-card .concert-info {
        grid-column: auto;
        grid-row: auto;
        justify-items: start;
        text-align: left;
    }

    body.first .upcoming-concerts .next-concert-card.pending-mode {
        width: min(500px, 96%);
        gap: 14px;
        padding: 18px 14px;
    }

    body.first .upcoming-concerts .next-concert-card .concert-info .btn {
        width: auto !important;
        max-width: max-content !important;
        min-width: 86px !important;
        min-height: 28px !important;
        padding: 4px 8px !important;
        font-size: 0.62rem !important;
        line-height: 1 !important;
        border-radius: 6px;
    }

    body.first #home-next-link {
        width: auto !important;
        max-width: max-content !important;
        min-width: 86px !important;
        min-height: 28px !important;
        padding: 4px 8px !important;
        font-size: 0.62rem !important;
        line-height: 1 !important;
        border-radius: 6px !important;
    }

    .concerts-list {
        padding: 0 18px;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    body.concerts-page .concerts-kicker {
        width: min(700px, 92%);
        margin-bottom: 14px;
        font-size: 0.9rem;
    }

    body.concerts-page .concerts-quickfacts {
        width: min(700px, 92%);
        gap: 8px;
    }

    body.concerts-page .concerts-quickfacts .fact-chip {
        font-size: 0.74rem;
        padding: 7px 11px;
    }

    body.concerts-page .concerts-shell {
        width: min(700px, 92%);
        padding: 14px 0 22px;
    }

    body.concerts-page .concerts-bridge {
        max-width: 92%;
        gap: 12px;
        margin: 16px auto 30px auto;
    }

    body.concerts-page .concerts-bridge .bridge-dot {
        width: 40px;
        height: 40px;
    }

    .concerts-list .concert-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        padding: 28px 22px;
        gap: 14px;
    }

    .concerts-list .concert-card.soon::before {
        top: 8px;
        right: 10px;
        font-size: 0.62rem;
        letter-spacing: 0.65px;
    }

    .concerts-list .cancelled-card::after {
        right: -62px;
        top: 10px;
        width: 210px;
        padding: 8px 0;
        font-size: 0.78rem;
    }

    .concerts-list .concert-meta {
        margin-bottom: 8px;
    }

    .concerts-list .concert-date {
        min-width: 104px;
        padding: 12px 16px;
        margin: 0 auto;
    }

    .concerts-list .concert-action {
        justify-self: center;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        padding: 60px 20px;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: calc(1.2rem + 2vw);
        letter-spacing: 1px;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 0.8rem;
    }
    
    .section-header h2 {
        font-size: calc(1.2rem + 1.5vw);
    }

    body.first .hero-section {
        min-height: 100svh;
        padding: 14px 18px 40px;
    }

    body.first .hero-subtitle {
        margin-top: 18px;
        margin-bottom: 46px;
    }

    body.first .hero-title.hero-logo img {
        width: min(980px, 98vw);
    }

    body.first .hero-buttons {
        margin-top: 20px !important;
    }

    body.first .hero-buttons .btn {
        min-width: 154px;
        max-width: 200px;
        padding: 9px 14px;
        font-size: 0.72rem;
    }

    body.concert-date-page .box-rebours {
        grid-template-columns: 1fr;
    }

    body.first .upcoming-concerts .next-concert-card,
    body.first .upcoming-concerts .next-concert-card.pending-mode {
        width: min(360px, 94%);
        padding: 14px 10px;
        gap: 12px;
    }

    body.first .upcoming-concerts .next-concert-card .concert-info .btn {
        width: auto !important;
        max-width: max-content !important;
        min-width: 78px !important;
        min-height: 24px !important;
        padding: 3px 6px !important;
        font-size: 0.56rem !important;
        line-height: 1 !important;
        border-radius: 5px;
    }

    body.first #home-next-link {
        width: auto !important;
        max-width: max-content !important;
        min-width: 78px !important;
        min-height: 24px !important;
        padding: 3px 6px !important;
        font-size: 0.56rem !important;
        line-height: 1 !important;
        border-radius: 5px !important;
    }

    body.first .upcoming-concerts .next-concert-card .concert-date.date-split {
        --date-box-size: clamp(96px, 33vw, 130px);
    }
}

/* Large phones (ex: iPhone X/11/12/13/14, Plus/Max): upscale mobile UI a bit */
@media screen and (min-width: 375px) and (max-width: 480px) {
    header.accueil .menu > li > a,
    header.autre .menu > li > a {
        min-height: 30px;
        padding: 5px 9px;
        font-size: 0.58rem;
    }

    header.accueil .sub-menu,
    header.autre .sub-menu {
        min-width: 124px;
        padding: 7px 0;
    }

    header.accueil .sub-menu li a,
    header.autre .sub-menu li a {
        padding: 7px 9px;
        font-size: 0.72em;
    }

    body.first .hero-section {
        min-height: 100svh;
        padding: 88px 22px 56px;
        justify-content: center;
    }

    body.first .hero-title.hero-logo {
        margin-top: 42px;
    }

    body.first .hero-title.hero-logo img {
        width: min(1040px, 96vw);
    }

    body.first .hero-subtitle {
        font-size: calc(0.98rem + 0.72vw);
        margin-top: 30px;
        margin-bottom: 68px;
    }

    body.first .hero-buttons {
        gap: 18px !important;
        margin-top: 30px !important;
    }

    body.first .hero-buttons .btn {
        min-width: 188px;
        max-width: 246px;
        padding: 11px 20px;
        font-size: 0.82rem;
    }
}

/* ===== IMAGES & CAROUSEL ===== */
li img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.splide__slide img {
    max-width: 100%;
    max-height: 400px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* Keep carousel height stable on index to avoid page micro-jumps */
body.first .splide__slide img {
    width: 100%;
    height: clamp(260px, 32vw, 430px);
    max-height: none;
    object-fit: cover;
}

body.first .splide__slide img.maryline-photo-focus {
    object-position: 50% 34%;
}

body.member-profile-page .profile-photo-card img.maryline-photo-focus {
    object-position: 50% 28%;
}

/* ===== SPLIDE CAROUSEL STYLING ===== */
.splide {
    margin-bottom: 50px;
    background: linear-gradient(135deg, rgba(35, 40, 50, 0.9) 0%, rgba(25, 35, 45, 0.95) 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(100, 150, 200, 0.05);
    padding: 40px 20px;
    border-radius: 12px;
    margin: 60px 20px;
    border: 1px solid rgba(28, 34, 42, 0.85);
}

.section-label {
    text-align: center;
    color: white;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    font-weight: bold;
    font-family: "Trebuchet MS", Arial, sans-serif;
}

.section-label::before {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff4500, transparent);
    margin: 0 auto 15px;
}

.splide__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    min-height: clamp(260px, 32vw, 430px);
}

.splide__slide .disabled {
    pointer-events: none;
    cursor: default;
    transform: scale(0.6);
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0.3;
    filter: grayscale(80%) brightness(0.8);
    border-radius: 8px;
    box-sizing: border-box;
    border: 5px solid rgba(26, 30, 36, 0.72);
    position: relative;
    overflow: hidden;
}

.splide__slide.is-active .disabled {
    pointer-events: all;
    cursor: pointer;
    border-color: #ff4500;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scale(0.8);
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.5), 0 0 20px rgba(255, 69, 0, 0.3);
}

.splide__slide .disabled::after {
    content: attr(data-member);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.94);
    color: #fff0e8;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: clamp(1.3rem, 2.3vw, 2.15rem);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.24s ease, transform 0.24s ease;
    pointer-events: none;
}

.splide__slide .disabled img {
    transition: opacity 0.24s ease, transform 0.28s ease;
}

.splide__slide.is-active .disabled:hover {
    transition: all 0.3s ease;
    border-color: #ff6b35;
    transform: scale(0.85);
    opacity: 0.95;
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.7);
}

.splide__slide.is-active .disabled:hover img {
    opacity: 0.46;
}

.splide__slide.is-active .disabled:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Bring carousel arrows closer to the slides */
body.first .splide .splide__arrow {
    width: 2.2rem;
    height: 2.2rem;
    background: rgba(18, 18, 18, 0.78);
    border: 1px solid rgba(255, 120, 80, 0.5);
    opacity: 0.92;
}

body.first .splide .splide__arrow svg {
    fill: #ffe2d6;
}

body.first .splide .splide__arrow--prev {
    left: clamp(1.4rem, 8vw, 7rem) !important;
}

body.first .splide .splide__arrow--next {
    right: clamp(1.4rem, 8vw, 7rem) !important;
}

body.first .splide .splide__arrow:hover {
    background: rgba(30, 30, 30, 0.92);
    border-color: rgba(255, 150, 115, 0.75);
}

/* ===== NAVIGATION & MENU ===== */
header.accueil {
    margin: 0;
    background: linear-gradient(135deg, rgba(14, 14, 14, 0.92) 0%, rgba(28, 28, 28, 0.75) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 69, 0, 0.45);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    padding-bottom: 0;
    isolation: isolate;
}

/* header.autre style similar to original style.css */
header.autre {
    margin: 0;
    position: sticky;
    top: 0;
    z-index: 999;
    padding-bottom: 0;
    background: linear-gradient(135deg, rgba(14, 14, 14, 0.92) 0%, rgba(28, 28, 28, 0.75) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 69, 0, 0.45);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    isolation: isolate;
}

header.accueil::before,
header.autre::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.28) 0%, rgba(8, 8, 8, 0.18) 100%);
    pointer-events: none;
    z-index: -1;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    padding: 15px 20px; /* reduce side padding to bring logo closer */
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* ensure logo remains at left edge */
.logo {
    flex-shrink: 0;
    margin-right: auto;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    display: block;
    width: 100px;
    height: auto;
    margin: 0;
    transition: 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.2));
}

.logo img:hover {
    filter: drop-shadow(0 0 15px rgba(255, 69, 0, 0.6));
    transform: scale(1.05);
}

nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.menu {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.menu > li {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: -12px;
}

/* Invisible bridge to keep hover active while moving toward dropdown */
.menu > li::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 18px;
}

.menu > li > a {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    border-bottom: 0;
    color: white;
    font-size: calc(0.65rem + 0.45vw);
    font-family: "Trebuchet MS", "Arial Narrow", Arial, sans-serif;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu > li > a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 15% 20%, rgba(255, 107, 53, 0.28), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu > li:hover > a::before {
    opacity: 1;
}

.menu > li:hover > a {
    border-bottom: 0;
    background: rgba(255, 69, 0, 0.16);
    color: #ffd0c0;
    border-color: rgba(255, 120, 80, 0.45);
    box-shadow: 0 0 0 1px rgba(255, 120, 80, 0.2), 0 8px 24px rgba(255, 69, 0, 0.16);
}

.menu > li > a i {
    margin-left: 6px;
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.sub-menu {
    display: block;
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 0;
    margin: 0;
    min-width: 220px;
    text-align: center;
    background: linear-gradient(145deg, rgba(19, 19, 19, 0.98) 0%, rgba(45, 45, 45, 0.96) 100%);
    backdrop-filter: blur(14px);
    border-radius: 14px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 120, 80, 0.25);
    border: 1px solid rgba(255, 120, 80, 0.28);
    z-index: 1000;
    animation: slideDownSub 0.3s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0s linear 0.22s;
}

@keyframes slideDownSub {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.menu > li:hover .sub-menu,
.menu > li:focus-within .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s, 0s;
}

.sub-menu li {
    background: transparent;
    transition: all 0.3s ease;
    display: block;
    padding: 0 8px;
    margin: 2px 0;
}

.sub-menu li:first-child {
    border-radius: 8px 8px 0 0;
}

.sub-menu li:last-child {
    border-radius: 0 0 8px 8px;
}

.sub-menu li:hover {
    background: rgba(255, 69, 0, 0.16);
}

.sub-menu li a {
    font-size: 0.82rem;
    padding: 11px 16px;
    border-bottom: 0;
    color: #fff;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    position: relative;
    border-radius: 9px;
}

.sub-menu li a::after {
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #ff4500;
    transition: width 0.3s ease;
}

.sub-menu li:hover a::after {
    width: 14px;
}

.sub-menu li:hover a {
    border-bottom: 0;
    color: #ffd0c0;
    padding-left: 20px;
}

/* ===== FOOTER ===== */
.footer {
    background:
        radial-gradient(circle at top, rgba(255, 69, 0, 0.14), transparent 36%),
        linear-gradient(140deg, #121212 0%, #1f1f1f 55%, #151515 100%);
    padding: 46px 22px 34px;
    font-family: "Trebuchet MS", Arial, sans-serif;
    text-align: center;
    border-top: 1px solid rgba(255, 110, 75, 0.55);
    box-shadow: inset 0 1px 0 rgba(255, 140, 95, 0.18), 0 -12px 26px rgba(0, 0, 0, 0.35);
    margin-top: 0px;
}

.footer .row {
    width: min(1120px, 96%);
    margin: 12px auto;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer .row a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin: 0 6px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
}

.footer .row a:hover {
    background: rgba(255, 69, 0, 0.18);
    color: #ffd7c8;
    border-color: rgba(255, 130, 90, 0.56);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 69, 0, 0.2);
}

.footer .row a i {
    font-size: 1.3rem;
    margin: 0;
}

/* Keep social icons perfectly circular on all pages (style.css compatibility) */
.footer .row:first-child a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 46px !important;
    height: 46px !important;
    padding: 0 !important;
    line-height: 1;
    border-radius: 50% !important;
}

.footer .row ul {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 18px;
}

.footer .row ul li {
    display: inline-block;
    margin: 0;
    transition: 0.3s ease;
}

.footer .row ul li a {
    color: rgba(255, 255, 255, 0.74);
    text-decoration: none;
    transition: 0.3s ease;
    border-bottom: 1px solid transparent;
    border-radius: 0;
    width: auto;
    height: auto;
    padding: 2px 0;
    margin: 0;
    border: 0;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 0.8rem;
    font-weight: 700;
}

.footer .row ul li a:hover {
    color: #ffd0c0;
    border-bottom: 1px solid #ff8357;
    transform: none;
    box-shadow: none;
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 720px) {
    .footer {
        text-align: center;
        padding: 36px 16px 26px;
    }
    
    .footer .row {
        width: 100%;
        font-size: 0.84rem;
        line-height: 1.55;
    }

    .footer .row:first-child {
        margin-bottom: 8px;
    }

    .footer .row ul {
        gap: 8px 14px;
    }

    .footer .row ul li {
        display: inline-block;
        margin: 0;
    }
    
    .footer .row a {
        width: 42px;
        height: 42px;
        margin: 0 4px;
    }

    .footer .row:first-child a {
        width: 42px !important;
        height: 42px !important;
        padding: 0 !important;
        border-radius: 50% !important;
    }

    .footer .row ul li a {
        font-size: 0.74rem;
        letter-spacing: 0.5px;
    }
}

/* ===== VIDEO SECTION ===== */
.video {
    background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 80px 50px;
    position: relative;
}

.video .section-header {
    margin-bottom: 50px;
}

.yt-responsive {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.yt-responsive iframe {
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(255, 69, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 69, 0, 0.2);
    transition: all 0.3s ease;
}

/* Reserve stable space for embed to avoid late reflow on index */
body.first .yt-responsive iframe {
    width: min(900px, 92vw);
    height: auto;
    aspect-ratio: 16 / 9;
}

body.first .video-fallback {
    width: min(900px, 92vw);
    margin: 0 auto;
    padding: 28px 24px;
    border: 1px solid rgba(255, 120, 80, 0.34);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1) 0%, rgba(16, 16, 16, 0.7) 100%);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
    text-align: center;
    color: rgba(255, 240, 232, 0.92);
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: clamp(0.95rem, 1.05vw, 1.08rem);
    line-height: 1.5;
}

body.first .video-fallback .btn {
    display: inline-flex;
    margin: 16px auto 0 auto;
    width: auto;
    max-width: none;
}

.yt-responsive iframe:hover {
    box-shadow: 0 25px 60px rgba(255, 69, 0, 0.5), 0 0 50px rgba(0, 0, 0, 1);
}

/* ===== HEADER RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
    header.accueil .container,
    header.autre .container {
        padding: 15px 30px;
    }
    
    header.accueil .logo img,
    header.autre .logo img {
        width: 80px;
    }
    
    header.accueil .menu,
    header.autre .menu {
        gap: 0;
    }
    
    header.accueil .menu > li > a,
    header.autre .menu > li > a {
        padding: 8px 14px;
        font-size: calc(0.5rem + 0.5vw);
    }
    
    header.accueil .sub-menu,
    header.autre .sub-menu {
        min-width: 180px;
    }
    
    header.accueil .sub-menu li a,
    header.autre .sub-menu li a {
        padding: 10px 16px;
        font-size: 0.85em;
    }
}

@media screen and (max-width: 768px) {
    header.accueil {
        padding-bottom: 0;
    }

    header.autre {
        padding-bottom: 0;
    }
    
    header.accueil .container,
    header.autre .container {
        width: 100%;
        box-sizing: border-box;
        padding: 10px 12px;
        flex-direction: column;
        gap: 10px;
    }
    
    header.accueil .logo,
    header.autre .logo {
        margin-right: 0;
    }

    header.accueil .logo img,
    header.autre .logo img {
        width: 64px;
    }
    
    header.accueil nav,
    header.autre nav {
        width: 100%;
    }
    
    header.accueil .menu,
    header.autre .menu {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
    }

    header.accueil .menu > li,
    header.autre .menu > li {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    header.accueil .menu > li::after,
    header.autre .menu > li::after {
        display: none;
    }
    
    header.accueil .menu > li > a,
    header.autre .menu > li > a {
        min-height: 30px;
        padding: 5px 9px;
        font-size: 0.62rem;
        letter-spacing: 0.5px;
    }
    
    header.accueil .sub-menu,
    header.autre .sub-menu {
        max-width: 88vw;
        min-width: 136px;
        top: calc(100% + 5px);
        padding: 8px 0;
        border-radius: 10px;
    }

    header.accueil .menu > li.mobile-open .sub-menu,
    header.autre .menu > li.mobile-open .sub-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition-delay: 0s, 0s;
    }
    
    header.accueil .sub-menu li a,
    header.autre .sub-menu li a {
        padding: 8px 11px;
        font-size: 0.74em;
    }

    header.accueil .sub-menu li a::after,
    header.autre .sub-menu li a::after {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    header.accueil .container,
    header.autre .container {
        padding: 9px 8px;
        gap: 8px;
    }
    
    header.accueil .logo img,
    header.autre .logo img {
        width: 56px;
    }
    
    header.accueil .menu,
    header.autre .menu {
        gap: 0;
    }
    
    header.accueil .menu > li > a,
    header.autre .menu > li > a {
        min-height: 27px;
        padding: 4px 7px;
        font-size: 0.52rem;
    }
    
    header.accueil .sub-menu,
    header.autre .sub-menu {
        min-width: 108px;
        left: 50%;
        transform: translateX(-50%);
        padding: 6px 0;
    }
    
    header.accueil .sub-menu li a,
    header.autre .sub-menu li a {
        padding: 7px 8px;
        font-size: 0.68em;
    }
}

@media screen and (max-width: 370px) {
    header.accueil .menu > li > a,
    header.autre .menu > li > a {
        min-height: 25px;
        padding: 3px 6px;
        font-size: 0.48rem;
    }
    
    header.accueil .sub-menu li a,
    header.autre .sub-menu li a {
        padding: 6px 7px;
        font-size: 0.64em;
    }
}

/* ===== CONCERTS TABLE ===== */

table.section_concert {
    width: 80%;
    margin: 40px auto;
    border-spacing: 50px;
    color: white;
    background: rgba(0,0,0,0.4);
    padding: 20px;
    border-radius: 12px;
}

table.section_concert tr {
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    padding: 15px;
}

table.section_concert td {
    display: inline-block;
    width: 30%;
    vertical-align: top;
    text-align: center;
    padding: 10px 5px;
}

.concert.date {
    font-size: calc(1rem + 1.5vw);
    transition: 0.3s;
    text-align: center;
    color: white;
    padding: 5px 20px;
    border: 2px solid #ff4500;
    border-radius: 10px;
}

.concert.date:hover {
    transform: scale(1.1);
}

.concert.event {
    font-size: calc(1rem + 1.5vw);
    transition: 0.3s;
    text-align: left;
    color: white;
}

.concert.event:hover {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}

.concert.lieu {
    color: white;
    text-align: left;
    font-size: calc(0.5rem + 1.5vw);
}

.concert.infos {
    display: block;
}

.concert.infos a {
    font-size: calc(0.5rem + 1.5vw);
    text-decoration: none;
    padding: 5px;
    color: white;
    border: 2px solid #ff4500;
    border-radius: 10px;
    transition: background 0.3s, color 0.3s;
}

.concert.infos a:hover {
    background-color: #333;
    color: #ff4500;
}

.soon {
    pointer-events: none;
    cursor: default;
    opacity: 0.6;
}

.soon_2 {
    font-size: calc(0.7rem + 1.5vw);
}

.annule {
    padding: 5px;
    border: 2px solid white;
    border-radius: 10px;
    background-color: red;
}

table.section_concert {
    width: 80%;
    margin: 40px auto;
    border-spacing: 50px;
    color: white;
    background: rgba(0,0,0,0.4);
    padding: 20px;
    border-radius: 12px;
}

table.section_concert tr {
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    padding: 15px;
}

table.section_concert td {
    display: inline-block;
    width: 30%;
    vertical-align: top;
    text-align: center;
    padding: 10px 5px;
}

table.section_concert td {
    text-align: center;
    vertical-align: middle;
    padding: 0;
}

table.section_concert td a {
    text-decoration: none;
    color: inherit;
}

.concert.date {
    font-size: calc(1rem + 1.5vw);
    transition: 0.3s;
    text-align: center;
    color: white;
    padding: 5px 20px;
    border: 2px solid #ff4500;
    border-radius: 10px;
}

.concert.date:hover {
    transform: scale(1.1);
}

.concert.event {
    font-size: calc(1rem + 1.5vw);
    transition: 0.3s;
    text-align: left;
    color: white;
}

.concert.event:hover {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}

.concert.lieu {
    color: white;
    text-align: left;
    font-size: calc(0.5rem + 1.5vw);
}

.concert.infos {
    display: block;
}

.concert.infos a {
    font-size: calc(0.5rem + 1.5vw);
    text-decoration: none;
    padding: 5px;
    color: white;
    border: 2px solid #ff4500;
    border-radius: 10px;
    transition: background 0.3s, color 0.3s;
}

.concert.infos a:hover {
    background-color: #333;
    color: #ff4500;
}

.soon {
    pointer-events: none;
    cursor: default;
    opacity: 0.6;
}

.soon_2 {
    font-size: calc(0.7rem + 1.5vw);
}

.annule {
    padding: 5px;
    border: 2px solid white;
    border-radius: 10px;
    background-color: red;
}

@media screen and (max-width: 768px) {
    table.section_concert {
        width: 60%;
    }
    .concert.infos {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    table.section_concert {
        border-spacing: 20px;
        margin-bottom: 50px;
    }
    .concert.infos {
        display: none;
    }
    .concert.date {
        margin: 0 20px;
    }
    .concert.event {
        font-size: 1.2em;
    }
    .concert.lieu {
        font-size: 1em;
    }
    table.section_concert tr {
       padding-top: 100px;
    }
}

@media screen and (max-width: 370px) {
    table.section_concert {
        border-spacing: 10px;
    }
}

/* ===== MOBILE MASTER OVERRIDES ===== */
@media screen and (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
    }

    body.first .hero-section {
        min-height: calc(100svh - 86px) !important;
        padding: 10px 16px 18px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    body.first .hero-title.hero-logo {
        margin-top: 0 !important;
        transform: none !important;
    }

    body.first .hero-title.hero-logo img {
        width: min(980px, 95vw) !important;
    }

    body.first .hero-subtitle {
        margin-top: 14px !important;
        margin-bottom: 18px !important;
        font-size: clamp(0.9rem, 2.8vw, 1.05rem) !important;
        line-height: 1.35;
        padding: 0 6px;
    }

    body.first .hero-buttons {
        margin-top: 8px !important;
        gap: 10px !important;
        width: 100%;
        justify-content: center !important;
    }

    body.first .hero-buttons .btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: auto !important;
        min-width: 158px !important;
        max-width: 220px !important;
        min-height: 36px !important;
        padding: 8px 14px !important;
        font-size: 0.74rem !important;
        line-height: 1.1 !important;
        white-space: nowrap;
    }

    body.first .splide__slide .disabled::after {
        content: none !important;
        display: none !important;
    }

    body.first .upcoming-concerts,
    body.first .video,
    body.first .media-section {
        padding: 38px 14px !important;
    }

    body.first .section-header {
        margin: 12px 0 14px 0 !important;
    }

    body.first .upcoming-concerts .next-concert-card,
    body.first .upcoming-concerts .next-concert-card.pending-mode {
        width: min(430px, 96%) !important;
        padding: 14px 10px !important;
        gap: 10px !important;
    }

    body.first .upcoming-concerts .next-concert-card .concert-info {
        justify-items: center !important;
        text-align: center !important;
        gap: 8px !important;
    }

    body.first .upcoming-concerts .next-concert-card .concert-info h3 {
        font-size: clamp(1.15rem, 5.2vw, 1.45rem) !important;
        line-height: 1.08 !important;
    }

    body.first .upcoming-concerts .next-concert-card .concert-info p {
        font-size: clamp(0.88rem, 3.6vw, 1rem) !important;
        line-height: 1.24 !important;
    }

    body.first .upcoming-concerts .next-concert-card .concert-date,
    body.first .upcoming-concerts .next-concert-card .concert-date.date-split {
        display: block !important;
        width: auto !important;
        aspect-ratio: auto !important;
        transform: none !important;
        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;
        text-align: center !important;
        white-space: nowrap !important;
        padding: 0 !important;
        margin: 0 !important;
        font-size: clamp(1.06rem, 4.3vw, 1.32rem) !important;
        line-height: 1.08 !important;
    }

    body.first .upcoming-concerts .next-concert-card .concert-date .date-main,
    body.first .upcoming-concerts .next-concert-card .concert-date .date-day-big,
    body.first .upcoming-concerts .next-concert-card .concert-date .date-month-big,
    body.first .upcoming-concerts .next-concert-card .concert-date .date-year-vert {
        display: inline !important;
        transform: none !important;
        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;
        margin: 0 !important;
        padding: 0 !important;
        font-size: 1em !important;
        letter-spacing: normal !important;
        line-height: inherit !important;
    }

    body.first .upcoming-concerts .next-concert-card .concert-date .date-day-big {
        margin-right: 0.18em !important;
    }

    body.first .upcoming-concerts .next-concert-card .concert-date .date-month-big {
        margin-right: 0.2em !important;
    }

    body.first .upcoming-concerts .next-concert-card.pending-mode .concert-date {
        font-size: clamp(0.94rem, 3.6vw, 1.08rem) !important;
        padding: 10px 16px !important;
        border-radius: 12px !important;
        border: 1px solid rgba(255, 146, 99, 0.45) !important;
        background: linear-gradient(180deg, rgba(255, 120, 64, 0.15) 0%, rgba(30, 17, 14, 0.52) 100%) !important;
        letter-spacing: 0.22em !important;
        text-indent: 0.22em !important;
    }

    body.first #home-next-link {
        width: auto !important;
        max-width: max-content !important;
        min-width: 96px !important;
        min-height: 28px !important;
        padding: 5px 9px !important;
        font-size: 0.68rem !important;
        line-height: 1 !important;
        border-radius: 5px !important;
        letter-spacing: 0.03em !important;
    }

    body.concerts-page .concerts-shell,
    body.concerts-page .concerts-kicker,
    body.concerts-page .concerts-quickfacts {
        width: min(640px, 94%) !important;
    }

    .concerts-list {
        padding: 0 10px !important;
        gap: 14px !important;
    }

    .concerts-list .concert-card {
        padding: 18px 12px !important;
        gap: 10px !important;
    }

    body.photos-page .photos-intro,
    body.photos-page .photos-filters,
    body.photos-page .photos-events {
        width: min(660px, 94%) !important;
    }

    body.photos-page .event-section {
        padding: 12px 8px 14px !important;
    }

    body.photos-page .galerie {
        width: 100% !important;
        gap: 10px !important;
        margin-top: 12px !important;
    }

    body.photos-page .galerie a {
        width: clamp(146px, 44vw, 220px) !important;
        flex-basis: clamp(146px, 44vw, 220px) !important;
    }

    body.photos-page .galerie a img {
        height: 160px !important;
    }

    body.apropos-page .apropos-grid,
    body.actualites-page .news-page-grid,
    body.membres-page .members-list,
    body.histoire-page .story-layout,
    body.member-profile-page .profile-layout,
    body.anciens-concerts-page .anciens-list,
    body.contact-page .contact-shell {
        width: min(660px, 94%) !important;
    }

    .article-shell {
        width: min(660px, 94%) !important;
    }

    body.anciens-concerts-page .ancien-card {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 6px !important;
        padding: 12px 10px !important;
    }

    body.anciens-concerts-page .ancien-city {
        justify-self: center !important;
        text-align: center !important;
    }
}

@media screen and (max-width: 480px) {
    body.first .hero-section {
        min-height: calc(100svh - 82px) !important;
        padding: 8px 12px 16px !important;
        justify-content: center !important;
        align-items: center !important;
    }

    body.first .hero-title.hero-logo img {
        width: min(980px, 96vw) !important;
    }

    body.first .hero-subtitle {
        margin-top: 8px !important;
        margin-bottom: 16px !important;
        font-size: 0.86rem !important;
    }

    body.first .hero-buttons .btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        min-width: 146px !important;
        max-width: 192px !important;
        min-height: 34px !important;
        padding: 7px 11px !important;
        font-size: 0.7rem !important;
        line-height: 1 !important;
        white-space: nowrap;
    }

    body.first .upcoming-concerts .next-concert-card,
    body.first .upcoming-concerts .next-concert-card.pending-mode {
        width: min(356px, 94%) !important;
        padding: 12px 8px !important;
    }

    body.first #home-next-link {
        min-width: 88px !important;
        min-height: 26px !important;
        padding: 4px 7px !important;
        font-size: 0.62rem !important;
    }

    body.photos-page .galerie a {
        width: clamp(136px, 44vw, 186px) !important;
        flex-basis: clamp(136px, 44vw, 186px) !important;
    }

    body.photos-page .galerie a img {
        height: 142px !important;
    }
}

/* ===== INDEX MOBILE RESET (clean baseline) ===== */
@media screen and (max-width: 768px) {
    body.first .hero-section {
        min-height: 400px !important;
        padding: 80px 30px !important;
        display: block !important;
    }

    body.first .hero-title.hero-logo {
        margin-top: 0 !important;
        transform: none !important;
    }

    body.first .hero-title.hero-logo img {
        width: min(860px, 92vw) !important;
    }

    body.first .hero-subtitle {
        margin-top: 14px !important;
        margin-bottom: 38px !important;
        font-size: calc(0.8rem + 0.5vw) !important;
    }

    body.first .hero-buttons {
        margin-top: 18px !important;
        gap: 16px !important;
        justify-content: center !important;
    }

    body.first .hero-buttons .btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: auto !important;
        min-width: 160px !important;
        max-width: 240px !important;
        min-height: 38px !important;
        padding: 9px 14px !important;
        font-size: 0.78rem !important;
        line-height: 1.1 !important;
    }

    body.first .upcoming-concerts .next-concert-card,
    body.first .upcoming-concerts .next-concert-card.pending-mode {
        width: min(560px, 100%) !important;
        padding: 20px 16px !important;
        gap: 14px !important;
    }

    body.first #home-next-link {
        width: auto !important;
        max-width: max-content !important;
        min-width: 112px !important;
        min-height: 34px !important;
        padding: 7px 12px !important;
        font-size: 0.78rem !important;
        line-height: 1 !important;
    }
}

@media screen and (max-width: 480px) {
    body.first .hero-section {
        min-height: 300px !important;
        padding: 60px 20px !important;
    }

    body.first .hero-title.hero-logo img {
        width: min(860px, 94vw) !important;
    }

    body.first .hero-subtitle {
        margin-bottom: 28px !important;
        font-size: 0.86rem !important;
    }

    body.first .hero-buttons .btn {
        min-width: 150px !important;
        max-width: 210px !important;
        min-height: 34px !important;
        padding: 7px 12px !important;
        font-size: 0.72rem !important;
    }

    body.first .upcoming-concerts .next-concert-card,
    body.first .upcoming-concerts .next-concert-card.pending-mode {
        width: min(420px, 100%) !important;
        padding: 16px 12px !important;
        gap: 12px !important;
    }
}

/* ===== INDEX PHONE FINAL TUNING ===== */
@media screen and (max-width: 768px) {
    body.first .hero-section {
        min-height: calc(100svh - 76px) !important;
        padding: 0 14px 18px !important;
        display: block !important;
        text-align: center !important;
    }

    body.first .hero-title.hero-logo {
        margin: 0 auto !important;
        transform: none !important;
    }

    body.first .hero-title.hero-logo img {
        width: min(980px, 92vw) !important;
        max-width: 92vw !important;
    }

    body.first .hero-subtitle {
        margin: 12px auto 20px auto !important;
        width: min(92vw, 520px) !important;
        line-height: 1.32 !important;
        font-size: clamp(0.88rem, 2.8vw, 1.02rem) !important;
    }

    body.first .hero-buttons {
        margin: 6px auto 0 auto !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
    }

    body.first .hero-buttons .btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: min(220px, 78vw) !important;
        min-width: 0 !important;
        max-width: 78vw !important;
        min-height: 36px !important;
        padding: 8px 12px !important;
        font-size: 0.74rem !important;
        line-height: 1 !important;
        letter-spacing: 0.04em !important;
    }

    body.first .splide {
        margin: 0 !important;
        padding: 26px 10px !important;
        border-radius: 0 !important;
    }

    body.first .upcoming-concerts,
    body.first .news-home,
    body.first .media-section,
    body.first .video {
        padding: 34px 12px !important;
    }

    body.first .news-splide {
        width: min(420px, 92%) !important;
        padding: 0 24px !important;
    }

    body.first .news-card {
        border-radius: 14px !important;
    }

    body.first .news-highlight {
        width: min(420px, 96%) !important;
        border-radius: 16px !important;
        margin-top: 24px !important;
    }

    body.first .news-highlight-copy {
        padding: 16px 14px 18px !important;
        gap: 10px !important;
    }

    body.first .news-highlight-copy h3 {
        font-size: clamp(1.02rem, 4.3vw, 1.2rem) !important;
        line-height: 1.2 !important;
    }

    body.first .news-highlight-copy p {
        font-size: clamp(0.86rem, 3.2vw, 0.96rem) !important;
        line-height: 1.55 !important;
    }

    body.first .news-card-content {
        padding: 16px 14px 18px !important;
        gap: 10px !important;
    }

    body.first .news-card-content h3 {
        font-size: clamp(1.02rem, 4.3vw, 1.2rem) !important;
        line-height: 1.2 !important;
    }

    body.first .news-card-content p {
        font-size: clamp(0.86rem, 3.2vw, 0.96rem) !important;
        line-height: 1.55 !important;
    }

    body.first .news-card-link,
    body.first .news-home-actions .btn {
        width: auto !important;
        max-width: max-content !important;
        min-width: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        justify-self: center !important;
    }

    body.first .upcoming-concerts .next-concert-card,
    body.first .upcoming-concerts .next-concert-card.pending-mode {
        width: min(420px, 96%) !important;
        margin: 0 auto !important;
        padding: 14px 10px !important;
        gap: 10px !important;
    }

    body.first .upcoming-concerts .next-concert-card .concert-info {
        justify-items: center !important;
        text-align: center !important;
        gap: 7px !important;
    }

    body.first .upcoming-concerts .next-concert-card .concert-info h3 {
        font-size: clamp(1.1rem, 4.8vw, 1.35rem) !important;
        line-height: 1.08 !important;
        margin: 0 !important;
    }

    body.first .upcoming-concerts .next-concert-card .concert-info p {
        font-size: clamp(0.86rem, 3.3vw, 0.98rem) !important;
        line-height: 1.2 !important;
        margin: 0 !important;
    }

    body.first #home-next-link {
        width: auto !important;
        max-width: max-content !important;
        min-width: 96px !important;
        min-height: 28px !important;
        padding: 5px 9px !important;
        font-size: 0.68rem !important;
        line-height: 1 !important;
        letter-spacing: 0.03em !important;
    }

    body.first .media-social-combo .media-grid {
        max-width: 420px !important;
        gap: 12px !important;
    }

    body.first .media-card {
        padding: 24px 18px !important;
        min-height: 0 !important;
    }

    body.first .media-card i {
        margin-bottom: 10px !important;
    }

    body.first .media-card small {
        margin-top: 8px !important;
        font-size: 0.82rem !important;
        line-height: 1.4 !important;
    }
}

@media screen and (max-width: 480px) {
    body.first .hero-section {
        min-height: calc(100svh - 72px) !important;
        padding: 0 10px 14px !important;
        display: block !important;
    }

    body.first .hero-title.hero-logo img {
        width: min(980px, 94vw) !important;
        max-width: 94vw !important;
    }

    body.first .hero-subtitle {
        margin: 10px auto 16px auto !important;
        font-size: 0.84rem !important;
    }

    body.first .hero-buttons {
        gap: 8px !important;
    }

    body.first .hero-buttons .btn {
        width: min(196px, 80vw) !important;
        max-width: 80vw !important;
        min-height: 34px !important;
        padding: 7px 10px !important;
        font-size: 0.7rem !important;
    }

    body.first .news-home,
    body.first .media-section,
    body.first .video,
    body.first .upcoming-concerts {
        padding: 30px 10px !important;
    }

    body.first .news-highlight {
        width: min(94vw, 340px) !important;
    }

    body.first .news-splide {
        width: min(94vw, 340px) !important;
        padding: 0 20px !important;
    }

    body.first .news-card-content {
        padding: 14px 12px 16px !important;
    }

    body.first .news-card-meta {
        font-size: 0.66rem !important;
        letter-spacing: 0.08em !important;
    }

    body.first .media-card {
        padding: 20px 14px !important;
    }

    body.first .upcoming-concerts .next-concert-card,
    body.first .upcoming-concerts .next-concert-card.pending-mode {
        width: min(356px, 96%) !important;
        padding: 12px 8px !important;
    }
}

/* ===== DEVICE COVERAGE PATCH (phones + tablets) ===== */
@media screen and (max-width: 1200px) {
    .container {
        padding-inline: clamp(10px, 2.2vw, 24px) !important;
    }

    body.apropos-page .apropos-grid,
    body.membres-page .members-list,
    body.histoire-page .story-layout,
    body.member-profile-page .profile-layout,
    body.anciens-concerts-page .anciens-list,
    body.contact-page .contact-shell,
    body.photos-page .photos-events,
    body.concerts-page .concerts-shell {
        width: min(94vw, 980px) !important;
    }

    body.first .upcoming-concerts,
    body.first .video,
    body.first .media-section,
    body.second .hero-section {
        padding-inline: clamp(12px, 2.8vw, 26px) !important;
    }
}

@media screen and (min-width: 901px) and (max-width: 1200px) {
    body.first .hero-title.hero-logo img {
        width: min(880px, 82vw) !important;
    }

    .menu > li > a {
        font-size: clamp(0.68rem, 0.74vw, 0.84rem) !important;
        padding: 9px 13px !important;
    }
}

@media screen and (min-width: 769px) and (max-width: 900px) {
    header.accueil .container,
    header.autre .container {
        flex-direction: column;
        gap: 10px;
    }

    header.accueil nav,
    header.autre nav {
        width: 100%;
    }

    header.accueil .menu,
    header.autre .menu {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
    }

    body.first .hero-section {
        min-height: calc(100svh - 88px) !important;
        padding-top: 8px !important;
    }

    body.first .hero-title.hero-logo img {
        width: min(880px, 88vw) !important;
    }

    body.first .upcoming-concerts .next-concert-card,
    body.first .upcoming-concerts .next-concert-card.pending-mode {
        width: min(680px, 96%) !important;
        grid-template-columns: 1fr !important;
        justify-items: center !important;
    }

    body.first .upcoming-concerts .next-concert-card .concert-info {
        text-align: center !important;
        justify-items: center !important;
    }
}

@media screen and (max-width: 768px) {
    .footer .row {
        width: min(96vw, 680px) !important;
    }

    body.apropos-page .apropos-grid,
    body.membres-page .members-list,
    body.histoire-page .story-layout,
    body.member-profile-page .profile-layout,
    body.anciens-concerts-page .anciens-list,
    body.contact-page .contact-shell,
    body.photos-page .photos-events,
    body.photos-page .photos-filters,
    body.photos-page .photos-intro,
    body.concerts-page .concerts-shell,
    body.concerts-page .concerts-kicker,
    body.concerts-page .concerts-quickfacts {
        width: min(94vw, 700px) !important;
    }

    body.apropos-page .apropos-card,
    body.membres-page .member-card,
    body.membres-page .member-card.reverse,
    body.anciens-concerts-page .ancien-card,
    body.contact-page .contact-card,
    body.contact-page .donate-card,
    .concerts-list .concert-card {
        border-radius: 14px !important;
    }

    body.photos-page .galerie {
        gap: 10px !important;
    }

    body.photos-page .galerie a {
        width: clamp(150px, 43vw, 220px) !important;
        flex-basis: clamp(150px, 43vw, 220px) !important;
    }

    body.photos-page .galerie a img {
        height: clamp(132px, 28vw, 176px) !important;
    }

    body.actualites-page .news-card-link {
        width: auto !important;
        max-width: max-content !important;
        min-width: 0 !important;
        min-height: 30px !important;
        padding: 6px 14px !important;
        font-size: 0.72rem !important;
        line-height: 1 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }
}

@media screen and (max-width: 600px) {
    body.first .hero-section {
        min-height: calc(100svh - 70px) !important;
    }

    body.first .hero-title.hero-logo img {
        width: min(96vw, 760px) !important;
    }

    body.first .hero-subtitle {
        width: min(94vw, 360px) !important;
    }

    body.first .hero-buttons .btn {
        width: min(80vw, 210px) !important;
        max-width: 80vw !important;
    }

    body.first .upcoming-concerts .next-concert-card,
    body.first .upcoming-concerts .next-concert-card.pending-mode {
        width: min(94vw, 420px) !important;
    }

    body.first #home-next-link {
        min-width: 90px !important;
        padding: 5px 8px !important;
        font-size: 0.66rem !important;
    }
}

@media screen and (max-width: 430px) {
    header.accueil .menu > li > a,
    header.autre .menu > li > a {
        padding: 5px 8px !important;
        font-size: 0.56rem !important;
    }

    header.accueil .sub-menu,
    header.autre .sub-menu {
        min-width: 112px !important;
        max-width: 88vw !important;
    }

    header.accueil .sub-menu li a,
    header.autre .sub-menu li a {
        padding: 7px 8px !important;
        font-size: 0.68em !important;
    }
}

@media screen and (max-width: 360px) {
    body.first .hero-title.hero-logo img {
        width: min(96vw, 640px) !important;
    }

    body.first .hero-subtitle {
        font-size: 0.8rem !important;
    }

    body.first .hero-buttons .btn {
        width: min(84vw, 190px) !important;
        max-width: 84vw !important;
        min-height: 32px !important;
        font-size: 0.66rem !important;
    }

    body.first .upcoming-concerts .next-concert-card,
    body.first .upcoming-concerts .next-concert-card.pending-mode {
        width: min(95vw, 340px) !important;
        padding: 10px 7px !important;
    }
}

@media screen and (max-width: 768px) {
    body.membres-page .member-link,
    body.histoire-page .story-cta .btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: min(100%, 188px) !important;
        max-width: min(100%, 188px) !important;
        min-width: 0 !important;
        min-height: 34px !important;
        padding: 8px 14px !important;
        font-size: 0.72rem !important;
        line-height: 1.12 !important;
        text-align: center !important;
        white-space: normal !important;
        box-sizing: border-box !important;
    }

    body.membres-page .member-content,
    body.histoire-page .story-cta {
        display: grid !important;
        justify-items: center !important;
    }

    body.first .concerts-container {
        width: min(100%, calc(100vw - 24px)) !important;
        margin: 0 auto !important;
        padding: 0 4px !important;
        box-sizing: border-box !important;
    }

    body.first .upcoming-concerts .next-concert-card,
    body.first .upcoming-concerts .next-concert-card.pending-mode {
        width: min(100%, 360px) !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    body.concerts-page .concerts-list .concert-action {
        width: 100% !important;
        justify-self: center !important;
        display: flex !important;
        justify-content: center !important;
    }

    body.concerts-page .concerts-list .concert-action .soon_2 {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 88px !important;
        padding: 7px 14px !important;
        font-size: 0.72rem !important;
        line-height: 1 !important;
        text-align: center !important;
        letter-spacing: 0.14em !important;
        text-indent: 0.14em !important;
        box-sizing: border-box !important;
    }

    .footer {
        overflow-x: hidden !important;
    }

    .footer .row {
        width: min(calc(100vw - 32px), 680px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }

    .footer .row ul {
        justify-content: center !important;
        padding: 0 8px !important;
        box-sizing: border-box !important;
    }
}

@media screen and (max-width: 480px) {
    body.membres-page .member-link,
    body.histoire-page .story-cta .btn {
        width: min(100%, 172px) !important;
        max-width: min(100%, 172px) !important;
        min-height: 32px !important;
        padding: 7px 12px !important;
        font-size: 0.68rem !important;
    }

    body.first .upcoming-concerts .next-concert-card,
    body.first .upcoming-concerts .next-concert-card.pending-mode {
        width: min(100%, 332px) !important;
        padding: 12px 8px !important;
    }

    body.concerts-page .concerts-list .concert-action .soon_2 {
        min-width: 82px !important;
        padding: 6px 12px !important;
        font-size: 0.66rem !important;
    }

    .footer .row {
        width: min(calc(100vw - 24px), 340px) !important;
    }

    body.photos-page .photos-intro {
        width: min(calc(100vw - 24px), 340px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 12px 14px !important;
        box-sizing: border-box !important;
    }

    body.photos-page .photos-intro p {
        font-size: 0.84rem !important;
        line-height: 1.45 !important;
    }

    body.photos-page .photos-events,
    body.photos-page .photos-filters {
        width: min(calc(100vw - 24px), 340px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }

    body.photos-page .galerie {
        gap: 8px !important;
        justify-content: center !important;
    }

    body.photos-page .galerie a {
        width: calc(50% - 6px) !important;
        flex: 0 0 calc(50% - 6px) !important;
        max-width: 160px !important;
        min-width: 0 !important;
    }

    body.photos-page .galerie a img {
        height: 118px !important;
    }
}
