/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #000;
}

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

/* Header & Navigation */
/* Pages avec hero (accueil, biographie) */
body.with-hero header {
    background: transparent;
    border-bottom: none;
    padding: 1rem 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}


header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.85;
}

.logo-name {
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.logo-subtitle {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 4px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-switcher a {
    padding: 0.3rem 0.5rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 4px;
    font-size: 1.5rem;
    font-weight: 400;
    transition: all 0.3s;
    filter: grayscale(30%) brightness(0.9);
}

.lang-switcher a:hover {
    filter: grayscale(0%) brightness(1.1);
    transform: scale(1.1);
}

.lang-switcher a.active {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.15);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s;
}

.dropdown-toggle:hover {
    opacity: 0.7;
}

.menu-icon {
    display: block;
    width: 28px;
    height: 3px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    transition: all 0.3s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}


.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-top: 0.5rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    list-style: none;
    min-width: 180px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    border-bottom: none;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.2s;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.dropdown-menu a:hover {
    background: transparent;
    color: #fff;
}

/* Hero Section with Background */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 2rem 0;
    background: #f5f5f5;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero.hero-compact {
    min-height: auto;
}

.hero[style*="background-image"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Hero clean : photo seule sans overlay texte */
.hero.hero-clean {
    padding: 0;
}

.hero.hero-clean[style*="background-image"]::before {
    background: none;
}

/* Gradient en haut pour lisibilité du header sur la photo */
.hero.hero-clean::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), transparent);
    z-index: 1;
}

/* Sections sombres (single-page scroll) */
.section-dark {
    background: #0a0a0a;
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-dark h2 {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.biography-text {
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1.05rem;
}

.biography-text p {
    margin-bottom: 1rem;
}

/* Event cards sur fond sombre */
.section-dark .event-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-dark .event-card h3 {
    color: rgba(255, 255, 255, 0.95);
}

.section-dark .event-card .venue {
    color: rgba(255, 255, 255, 0.6);
}

.section-dark .event-card .day {
    color: rgba(255, 255, 255, 0.95);
}

.section-dark .event-card .month {
    color: rgba(255, 255, 255, 0.6);
}

.section-dark .event-card .btn-details {
    color: rgba(255, 255, 255, 0.7);
}

.section-dark .event-card .btn-details:hover {
    color: #fff;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 4rem 0 2rem;
}

.hero-compact .hero-content {
    min-height: auto;
    padding: 6rem 0 3rem;
}

.hero-title {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 10vh;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.6);
    font-weight: 200;
    letter-spacing: 4px;
}

.hero .subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
    font-weight: 200;
    letter-spacing: 2px;
}

.upcoming-events-overlay {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.upcoming-events-overlay h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Page Header */
.page-header {
    padding: 6rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #333;
}

.archives-page {
    background: #fff;
}

/* Events */
.upcoming-events,
.events-list,
.archives-list {
    padding: 3rem 0;
    background: white;
}

.upcoming-events h2,
.events-list h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.event-card:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.event-card-image {
    margin: -1.5rem -1.5rem 1rem -1.5rem;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.event-card-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.event-date {
    text-align: center;
    margin-bottom: 1rem;
}

.event-date .day {
    display: inline;
    font-size: 2rem;
    font-weight: bold;
}

.event-date .month {
    display: inline;
    font-size: 2rem;
    font-weight: bold;
    margin-left: 0.3rem;
}

.event-date .time {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.25rem;
}

.detail-time {
    display: inline-block;
    margin-left: 0.5rem;
    font-style: italic;
}

.event-card h3 {
    margin-bottom: 0.5rem;
}

.event-card .venue {
    color: #666;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-details,
.btn-primary,
.btn-secondary,
.btn-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-primary {
    background: #333;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: #000;
}

.btn-secondary {
    background: #fff;
    color: #333;
    border: 1px solid #333;
}

.btn-details,
.btn-link {
    color: #333;
    text-decoration: underline;
}

.btn-details:hover {
    color: #000;
}

/* Cinematic layout for landscape event images */
.event-cinematic {
    background: #0a0a0a;
    min-height: 100vh;
}

.event-cinematic-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.event-cinematic-image img {
    width: 100%;
    display: block;
    max-height: 75vh;
    object-fit: cover;
    object-position: center top;
}

/* Gradient at top for header readability */
.event-cinematic-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), transparent);
    z-index: 2;
}

/* Gradient at bottom fading into dark background */
.event-cinematic-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, #0a0a0a);
    z-index: 2;
}

.event-cinematic-title {
    position: absolute;
    bottom: 15%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    padding: 0 20px;
}

.event-cinematic-title h1 {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 200;
    letter-spacing: 4px;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.8);
}

.event-cinematic-title .subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 200;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.event-cinematic-content {
    max-width: 800px;
    margin: -4rem auto 0;
    padding: 0 20px 4rem;
    position: relative;
    z-index: 4;
}

.event-cinematic-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
}

/* Event Detail */
.event-detail {
    padding: 3rem 0;
    background: #fff;
}

.event-header {
    margin-bottom: 2rem;
    text-align: center;
}

.event-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.event-location {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

.event-cover-image {
    margin-bottom: 3rem;
    border-radius: 8px;
    overflow: hidden;
}

.event-cover-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.event-meta-card {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.event-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.event-section {
    margin-bottom: 3rem;
}

.event-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.event-detail .back-link {
    margin-bottom: 2rem;
}

.event-detail .back-link a {
    display: inline-block;
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s;
}

.event-detail .back-link a:hover {
    color: #000;
    transform: translateX(-5px);
}

.event-header {
    margin-bottom: 3rem;
}

.event-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.no-translation-message {
    background: #f8f9fa;
    border-left: 4px solid #6c757d;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.no-translation-message p {
    margin: 0;
    color: #666;
    font-size: 1.1rem;
}

.event-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.event-program,
.event-description,
.event-media {
    margin-bottom: 3rem;
}

.event-program h2,
.event-description h2,
.event-media h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.media-item img {
    width: 100%;
    border-radius: 4px;
}

.media-item iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 4px;
}

.caption {
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

/* Biography card (used in hero sections) */
.biography-card {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(2px);
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    max-width: none;
    margin: 0;
}

.biography-card-text {
    color: #fff;
    line-height: 1.8;
    text-align: justify;
}

.biography-card-text p {
    margin-bottom: 1rem;
}

/* Contact section */
.contact-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(2px);
    border-radius: 12px;
    transition: background 0.3s ease;
    min-width: 280px;
}

.contact-item:hover {
    background: rgba(0, 0, 0, 0.55);
}

.contact-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* Back to top arrow — fixed on right side */
.back-to-top {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) scale(1);
}

.back-to-top:hover {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
}

/* Event detail — shared between cinematic and hero layouts */
.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.detail-section {
    color: #fff;
    margin-bottom: 1.5rem;
}

.detail-link {
    color: #fff;
    text-decoration: underline;
}

.detail-heading {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.detail-text {
    line-height: 1.8;
    color: #fff;
}

.detail-text p {
    margin-bottom: 1rem;
}

/* Empty state messages */
.empty-message {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* ============================================
   Média — Vidéos & Presse
   ============================================ */

/* Grille vidéos */
.media-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

/* Embed YouTube responsive 16:9 */
.video-embed-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.media-video-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    padding: 0.75rem;
}

.media-video-title {
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.95rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Section titres */
.media-section {
    margin-bottom: 3rem;
}

.media-section-title {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Grille articles de presse */
.media-press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.media-press-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.media-press-card:hover {
    transform: translateY(-3px);
}

.media-press-image a {
    display: block;
}

.media-press-image img {
    width: 100%;
    height: auto;
    display: block;
}

.media-press-info {
    padding: 1rem;
}

.media-press-info h3 {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.media-press-source {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.media-press-info .btn-details {
    display: inline-block;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.media-press-info .btn-details:hover {
    color: #fff;
}

/* Lien "Voir tout" */
.media-see-all {
    text-align: center;
    margin-top: 2rem;
}

.media-see-all .btn-details {
    color: rgba(255, 255, 255, 0.8);
}

.media-see-all .btn-details:hover {
    color: #fff;
}

/* ============================================
   Responsive — Tablet (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    /* Header & Logo */
    .logo-name {
        font-size: 1.4rem;
    }

    .logo-subtitle {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }

    .nav-right {
        gap: 0.75rem;
    }

    .lang-switcher {
        gap: 0.3rem;
    }

    .lang-switcher a {
        padding: 0.2rem 0.4rem;
        font-size: 1.2rem;
    }

    /* Dropdown — align to right edge on smaller screens */
    .dropdown-menu {
        left: auto;
        right: 0;
        transform: translateY(-10px);
    }

    .dropdown-menu.show {
        transform: translateY(0);
    }

    /* Hero sections */
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .hero-title {
        padding-top: 8vh;
        margin-bottom: 2rem;
    }

    .hero-content {
        padding: 3rem 0 2rem;
    }

    /* Events grid — smaller min for 2 columns */
    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .media-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .media-videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .media-press-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Event cards */
    .event-card-image img {
        height: 200px;
    }

    /* Cinematic layout */
    .event-cinematic-image img {
        max-height: 55vh;
    }

    .event-cinematic-title {
        bottom: 10%;
    }

    .event-cinematic-title h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .event-cinematic-title .subtitle {
        font-size: 1.1rem;
    }

    .event-cinematic-card {
        padding: 1.5rem;
    }

    .event-cinematic-content {
        margin-top: -2rem;
        padding-bottom: 2rem;
    }

    /* Event detail */
    .event-header h1 {
        font-size: 2rem;
    }

    .event-meta {
        padding: 1.5rem;
    }

    /* Section dark */
    .section-dark {
        padding: 3rem 0;
    }

    /* Biography card */
    .biography-card {
        padding: 1.5rem;
    }

    /* Page header */
    .page-header h1 {
        font-size: 2rem;
    }
}

/* ============================================
   Responsive — Mobile (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Header & Logo */
    .logo-name {
        font-size: 1.15rem;
    }

    .logo-subtitle {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }

    .nav-right {
        gap: 0.4rem;
    }

    .lang-switcher a {
        font-size: 1rem;
        padding: 0.15rem 0.3rem;
    }

    .menu-icon {
        width: 22px;
        height: 2px;
    }

    .dropdown-toggle {
        padding: 0.4rem;
        gap: 3px;
    }

    .dropdown-menu {
        min-width: 150px;
    }

    .dropdown-menu a {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    /* Hero sections */
    .hero {
        min-height: 100vh;
        min-height: 100dvh; /* Modern browsers: dynamic viewport height */
    }

    .hero h1 {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .hero-title {
        padding-top: 12vh;
        margin-bottom: 1.5rem;
    }

    .hero-content {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 2rem 0 1.5rem;
    }

    /* Events — single column */
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .event-card {
        padding: 1rem;
    }

    .event-card-image {
        margin: -1rem -1rem 0.75rem -1rem;
    }

    .event-card-image img {
        height: 180px;
    }

    .event-date .day,
    .event-date .month {
        font-size: 1.5rem;
    }

    .event-card h3 {
        font-size: 1rem;
    }

    /* Disable hover lift on touch devices */
    .event-card:hover {
        transform: none;
    }

    /* Media grid — single column */
    .media-grid {
        grid-template-columns: 1fr;
    }

    /* Upcoming events overlay */
    .upcoming-events-overlay {
        padding: 0 15px;
    }

    /* Biography card */
    .biography-card {
        padding: 1.25rem;
        border-radius: 8px;
    }

    .biography-card-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* Cinematic */
    .event-cinematic-image img {
        max-height: 45vh;
        min-height: 220px;
        object-position: center center;
    }

    .event-cinematic-title {
        bottom: 8%;
        padding: 0 15px;
    }

    .event-cinematic-title h1 {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .event-cinematic-title .subtitle {
        font-size: 0.9rem;
    }

    .event-cinematic-content {
        margin-top: -1rem;
        padding: 0 15px 2rem;
    }

    .event-cinematic-card {
        padding: 1.25rem;
        border-radius: 12px;
    }

    /* Detail grid — single column on mobile */
    .detail-meta-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .detail-heading {
        font-size: 1.2rem;
    }

    /* Event detail */
    .event-header h1 {
        font-size: 1.5rem;
    }

    .event-location {
        font-size: 1rem;
    }

    .event-meta {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
    }

    .event-meta-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .event-program h2,
    .event-description h2,
    .event-media h2 {
        font-size: 1.3rem;
    }

    /* Section dark */
    .section-dark {
        padding: 2.5rem 0;
    }

    .section-dark h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    /* Page header */
    .page-header {
        padding: 4rem 0 2rem;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }
}

/* ============================================
   Responsive — Small mobile (max-width: 360px)
   ============================================ */
@media (max-width: 360px) {
    .logo-name {
        font-size: 1rem;
    }

    .logo-subtitle {
        font-size: 0.55rem;
        letter-spacing: 1.5px;
    }

    .hero h1 {
        font-size: 1.3rem;
    }

    .event-card-image img {
        height: 150px;
    }

    .lang-switcher a {
        font-size: 0.85rem;
    }
}

/* ──────────────────────────────────────────
   Galerie photos
────────────────────────────────────────── */
.gallery-grid {
    columns: 4;
    column-gap: 8px;
    padding: 0;
}

.gallery-item {
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    break-inside: avoid;
    margin-bottom: 8px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    opacity: 0.85;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 2px;
}

.lightbox-caption {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 1rem;
    letter-spacing: 1px;
    text-align: center;
    max-width: 600px;
    padding: 0 1rem;
}

.lightbox-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    line-height: 1;
    background: none;
    border: none;
    padding: 0.5rem;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.6;
    background: none;
    border: none;
    padding: 1rem;
    line-height: 1;
}

.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

@media (max-width: 768px) {
    .gallery-grid { columns: 3; }
}

@media (max-width: 480px) {
    .gallery-grid { columns: 2; }
}

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