@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800&display=swap');

.show-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 32px 80px;
}

.show-body {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 0;
    align-items: start;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

@media (min-width: 1300px) {
    .show-body {
        grid-template-columns: 600px 1fr;
    }
}

.show-image-col {
    overflow: hidden;
}

.show-image-trigger {
    cursor: zoom-in;
}

.show-image-col img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.show-image-placeholder {
    background: repeating-linear-gradient(45deg, #d4d4d4 0px, #d4d4d4 2px, #e8e8e8 2px, #e8e8e8 14px);
    aspect-ratio: 4/3;
}

.show-info-col {
    padding: 40px 48px 48px;
    display: flex;
    flex-direction: column;
}

.show-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--color-black);
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.show-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #555;
    margin-bottom: 16px;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.cat-tag {
    background: var(--color-black);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
}

.sub-tag {
    background: #666;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
}

.show-particularites {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.particularite-tag {
    font-size: 12px;
    font-weight: 600;
    color: #3d6e2a;
    background: #eef6e9;
    border: 1px solid #c3e0b0;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.02em;
}

.event-meta {
    display: flex;
    align-items: stretch;
    margin-bottom: 16px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
}

.event-meta-item {
    flex: 1;
    padding: 12px 18px;
    border-right: 1px solid #e5e5e5;
}

.event-meta-item:last-child {
    border-right: none;
}

.event-meta-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 4px;
}

.event-meta-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-black);
}

.tarifs-line {
    font-size: 13px;
    color: #444;
    padding: 14px 16px;
    background: #f7f7f7;
    border-radius: 4px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.tarifs-line strong {
    color: var(--color-black);
    font-weight: 700;
}

.tarif-sep {
    color: #ccc;
    margin: 0 10px;
    font-weight: 300;
}

.show-description {
    font-size: 15px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 36px;
    padding-top: 28px;
    border-top: 1px solid #ebebeb;
}

.show-description p{
    margin: 15px;
}

.cta-btn {
    display: inline-block;
    align-self: flex-start;
    background: var(--color-green);
    color: var(--color-black);
    border: 2px solid var(--color-green);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.cta-btn--past {
    filter: grayscale(100%);
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
    user-select: none;
}

.cta-btn:hover {
    background: var(--color-black);
    border: 2px solid var(--color-black);
    color: rgba(255, 255, 255, 0.85);
}

/* ── Spectacles passés : masquage initial ── */
.show-card.past-hidden {
    display: none;
}

.past-shows-more {
    text-align: center;
    padding: 32px 0 48px;
}

.btn-voir-tous {
    display: inline-block;
    background: var(--color-green);
    color: var(--color-black);
    border: 2px solid var(--color-green);
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 48px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.btn-voir-tous:hover {
    background: var(--color-black);
    border: 2px solid var(--color-black);
    color: rgba(255, 255, 255, 0.85);
}

/* ── Entête page spectacles ── */
.spectacles-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 32px 32px;
}

.spectacles-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 56px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1;
    color: var(--color-black);
    margin-bottom: 10px;
}

.spectacles-section {
    max-width: 1400px;
    padding-inline: 32px;
}

.spectacles-section h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    display: inline-block;
    background: var(--color-green);
    color: var(--color-black);
    padding: 4px 16px;
    text-transform: uppercase;
}

.spectacles-desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 16px;
}

.spectacles-anim-line {
    display: block;
    height: 3px;
    width: 0;
    background: var(--color-green);
    animation: spectacles-line-in 0.7s ease forwards;
    animation-delay: 0.15s;
}

@keyframes spectacles-line-in {
    to { width: 80px; }
}

/* Cartes spectacles passés — légèrement atténuées */
.show-card--past .card-image img,
.show-card--past .card-image-placeholder {
    filter: grayscale(35%);
    opacity: 0.85;
    transition: filter 0.3s, opacity 0.3s;
}

.show-card--past:hover .card-image img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ── Grille de cartes spectacles ── */
.shows-grid-2026 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-block: 24px;
}

.show-card {
    background: #fff;
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.show-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1), 0 12px 32px rgba(0,0,0,0.08);
}

.card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.show-card:hover .card-image img {
    transform: scale(1.04);
}

.card-image-placeholder {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, #d4d4d4 0px, #d4d4d4 2px, #e8e8e8 2px, #e8e8e8 14px);
}

.card-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-black);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 2px;
}

.card-cat .sub {
    color: rgba(255,255,255,0.6);
    margin-left: 6px;
    font-weight: 500;
}

.card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.2px;
    line-height: 1.05;
    color: var(--color-black);
}

.card-date {
    font-size: 13px;
    font-weight: 500;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-date svg {
    flex-shrink: 0;
    color: var(--color-green);
}

.show-social {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 24px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.show-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #C9E58D;
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
}

.show-social-link:hover {
    background: #C9E58D;
    color: #1a1a1a;
}

@media (max-width: 900px) {
    .shows-grid-2026 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .spectacles-header {
        padding-inline: 10px;
    }
    .spectacles-section {
        padding-inline: 10px;
    }
    .spectacles-title {
        font-size: 40px;
    }
    .spectacles-section h2 {
        font-size: 30px;
    }
}

@media (max-width: 600px) {
    .shows-grid-2026 {
        grid-template-columns: 1fr;
    }
}

.lso-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.lso-lightbox.active {
    display: flex;
}

.lso-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.6);
    aspect-ratio: auto;
    width: auto;
    height: auto;
}

@media (max-width: 1024px) {
    .show-wrap {
        padding: 0;
    }
    .show-body {
        box-shadow: none;
    }
}

@media (max-width: 800px) {
    .show-body {
        grid-template-columns: 1fr;
    }
    .show-info-col {
        padding: 28px 24px 40px;
    }
    .show-title {
        font-size: 36px;
    }
}

@media (max-width: 700px) {
    .event-meta {
        flex-direction: column;
    }
    .event-meta-item {
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
    }
    .event-meta-item:last-child {
        border-bottom: none;
    }

    .tarifs-line {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    .tarif-sep {
        display: none;
    }
}
