/* ==================== VARIABLES & THEMES ==================== */

:root {
    --color-bg: #0a0a0a;
    --color-bg-secondary: rgba(20, 20, 20, 0.5);
    --color-bg-card: rgba(26, 26, 26, 0.3);
    --color-text: #f5f5f5;
    --color-text-muted: #a0a0a0;
    --color-accent: #c9a962;
    --color-accent-hover: #dfc07a;
    --font-display: 'Ubuntu', -apple-system, sans-serif;
    --font-body: 'Ubuntu', -apple-system, sans-serif;
    --font-handwritten: 'Caveat', cursive;
    --font-logo: 'Ubuntu', -apple-system, sans-serif;
}

/* Thème Blanc/Argent Chromé */
[data-theme="silver"] {
    --color-bg: #ffffff;
    --color-bg-secondary: rgba(240, 240, 240, 0.5);
    --color-bg-card: rgba(232, 232, 232, 0.3);
    --color-text: #1a1a1a;
    --color-text-muted: #555555;
    --color-accent: #5a5a5a;
    --color-accent-hover: #333333;
}

/* Thème Bordeaux/Violet Pastel */
[data-theme="bordeaux"] {
    --color-bg: #42063a;
    --color-bg-secondary: rgba(77, 28, 72, 0.3);
    --color-bg-card: rgba(107, 21, 99, 0.3);
    --color-text: #fff5f8;
    --color-text-muted: #e0d0d8;
    --color-accent: #f0b8cc;
    --color-accent-hover: #ffd6e6;
}

/* ==================== GLASSMORPHISM ==================== */

.mathieu-mora-landing,
.spectacle-card,
.demo-card,
.formation-card,
.video-card,
.hero-cta-card {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==================== BULLES ANIMÉES ==================== */

.bubbles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.bubbles span {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 30%);
    animation: float 20s infinite ease-in-out;
}

.bubbles span:nth-child(1) {
    width: 300px;
    height: 300px;
    left: -50px;
    top: 20%;
    opacity: 0.08;
    animation-duration: 25s;
}

.bubbles span:nth-child(2) {
    width: 200px;
    height: 200px;
    right: 10%;
    top: 60%;
    opacity: 0.06;
    animation-duration: 20s;
    animation-delay: -5s;
}

.bubbles span:nth-child(3) {
    width: 400px;
    height: 400px;
    right: -100px;
    top: 10%;
    opacity: 0.04;
    animation-duration: 30s;
    animation-delay: -10s;
}

.bubbles span:nth-child(4) {
    width: 150px;
    height: 150px;
    left: 20%;
    top: 70%;
    opacity: 0.07;
    animation-duration: 18s;
    animation-delay: -3s;
}

.bubbles span:nth-child(5) {
    width: 250px;
    height: 250px;
    left: 60%;
    top: 40%;
    opacity: 0.05;
    animation-duration: 22s;
    animation-delay: -8s;
}

.bubbles span:nth-child(6) {
    width: 100px;
    height: 100px;
    left: 40%;
    top: 15%;
    opacity: 0.09;
    animation-duration: 15s;
    animation-delay: -2s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -40px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(40px, 30px) scale(1.02);
    }
}

/* ==================== BASE ==================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    font-weight: 300;
}

/* ==================== NAVIGATION ==================== */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0) 100%);
    transition: background 0.3s ease;
}

nav.scrolled {
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(10px);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: 0.05em;
}

.logo span {
    color: var(--color-accent);
}

.theme-toggle {
    background: transparent;
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.theme-toggle:hover {
    border-color: var(--color-accent);
    transform: rotate(30deg);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-accent);
}

/* Mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: 0.3s;
}

/* ==================== HERO SECTION ==================== */

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(201, 169, 98, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    padding-right: 4rem;
    animation: fadeInUp 1s ease-out;
}

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

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-family: var(--font-handwritten);
    font-size: 1.8rem;
    color: var(--color-text);
    margin-bottom: 2.5rem;
}

/* Hero CTA Cards */
.hero-cta-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-cta-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta-card:hover {
    border-color: var(--color-accent);
    background: rgba(201, 169, 98, 0.1);
    transform: translateX(10px);
}

.hero-cta-card .icon {
    font-size: 2rem;
}

.hero-cta-card .cta-content h3 {
    font-family: var(--font-display);
    color: var(--color-text);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.hero-cta-card .cta-content p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.hero-cta-card .arrow {
    margin-left: auto;
    color: var(--color-accent);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.hero-cta-card:hover .arrow {
    transform: translateX(5px);
}

/* Hero Image */
.hero-image {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(20%);
    transition: filter 0.5s ease;
}

.hero-image:hover img {
    filter: grayscale(0%);
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, var(--color-bg) 0%, transparent 100%);
}

/* ==================== SECTIONS ==================== */

section {
    padding: 6rem 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 400;
}

.section-intro {
    max-width: 600px;
    margin: 1rem auto 0;
    color: var(--color-text-muted);
    text-align: center;
}

.bg-secondary {
    background-color: var(--color-bg-secondary);
}

/* ==================== SCÈNE SECTION ==================== */

/* Mathieu Mora Mini Landing */
.mathieu-mora-landing {
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.mathieu-mora-landing::before {
    content: 'EN DÉVELOPPEMENT';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--color-accent);
    color: var(--color-bg);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 0.3rem 3rem;
    transform: rotate(45deg);
}

.mora-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.mora-visual {
    width: 100%;
    max-width: 280px;
}

.mora-visual .mora-poster {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.mora-visual .mora-poster:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(201, 169, 98, 0.2);
}

.mora-info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-text);
    margin-bottom: 0.3rem;
}

.mora-info .subtitle {
    font-style: italic;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.mora-info .logline {
    font-size: 1.1rem;
    color: var(--color-text);
    border-left: 3px solid var(--color-accent);
    padding-left: 1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.mora-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mora-detail-item h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 0.2rem;
}

.mora-detail-item p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.mora-synopsis {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.mora-status {
    background: rgba(201, 169, 98, 0.1);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mora-status .status-indicator {
    width: 10px;
    height: 10px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.mora-status p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Parcours Scénique Grid */
.parcours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.spectacle-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.spectacle-card:hover {
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-5px);
}

.spectacle-card.featured {
    grid-column: span 2;
}

.spectacle-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.spectacle-card.featured img {
    height: 280px;
}

.spectacle-card .card-content {
    padding: 1.5rem;
}

.spectacle-card h4 {
    font-family: var(--font-display);
    color: var(--color-text);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.spectacle-card .role {
    color: var(--color-accent);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.spectacle-card .meta {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.spectacle-card .badge {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-bg);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-top: 0.5rem;
}

/* Theatre Videos */
.theatre-videos {
    margin-top: 4rem;
}

.theatre-videos h3 {
    text-align: center;
    font-family: var(--font-display);
    margin-bottom: 2rem;
    color: var(--color-text);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.video-card {
    background: var(--color-bg-card);
    border-radius: 8px;
    overflow: hidden;
}

.video-card video {
    width: 100%;
    display: block;
}

.video-card .video-info {
    padding: 1rem 1.5rem;
}

.video-card h4 {
    color: var(--color-text);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.video-card p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* ==================== VOIX SECTION ==================== */

.demos-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--color-text-muted);
}

/* Featured Demo */
.featured-demo {
    margin-bottom: 3rem;
}

.featured-demo .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.featured-demo iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.featured-demo .demo-label {
    text-align: center;
    margin-top: 1rem;
}

.featured-demo .demo-label h4 {
    color: var(--color-accent);
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.featured-demo .demo-label p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Demo Cards Grid */
.demo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.demo-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.demo-card:hover {
    border-color: rgba(201, 169, 98, 0.3);
}

.demo-card .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.demo-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.demo-card .demo-info {
    padding: 1.5rem;
}

.demo-card .demo-badge {
    display: inline-block;
    background: rgba(201, 169, 98, 0.2);
    color: var(--color-accent);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.demo-card h4 {
    font-family: var(--font-display);
    color: var(--color-text);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.demo-card .character {
    color: var(--color-accent);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.demo-card .details {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.demos-note {
    text-align: center;
    color: var(--color-text-muted);
    font-style: italic;
    margin-top: 2rem;
}

/* Studios Section */
.studios-section {
    margin-top: 4rem;
    text-align: center;
}

.studios-section h3 {
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.studios-section > p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.studios-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.studio-item {
    font-family: var(--font-logo);
    background: var(--color-bg-card);
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.studio-item:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* ==================== ABOUT SECTION ==================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    filter: grayscale(20%);
    transition: filter 0.5s ease;
}

.about-image:hover img {
    filter: grayscale(0%);
}

.about-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-quote {
    font-family: var(--font-handwritten);
    font-size: 1.6rem;
    color: var(--color-text);
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid var(--color-accent);
}

.credentials {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.credential {
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    color: var(--color-accent);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ==================== PHOTO GALLERY ==================== */

.photo-gallery {
    margin-top: 5rem;
}

.photo-gallery h3 {
    text-align: center;
    font-family: var(--font-display);
    margin-bottom: 2rem;
}

/* Filtres galerie */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-text-muted);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-accent);
    color: var(--color-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(30%);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-grid img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.gallery-grid img.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
}

/* ==================== FORMATION SECTION ==================== */

.formation-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--color-text-muted);
}

.formation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.formation-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 2.5rem;
    transition: border-color 0.3s ease;
}

.formation-card:hover {
    border-color: rgba(201, 169, 98, 0.3);
}

.formation-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.formation-card p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.formation-list {
    list-style: none;
}

.formation-list li {
    color: var(--color-text-muted);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.formation-list li::before {
    content: '→';
    color: var(--color-accent);
}

/* ==================== CONTACT SECTION ==================== */

.contact {
    text-align: center;
    background: linear-gradient(to bottom, var(--color-bg-secondary), var(--color-bg));
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-email {
    display: inline-block;
    font-size: 1.5rem;
    color: var(--color-accent);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
    margin-bottom: 2rem;
}

.contact-email:hover {
    border-color: var(--color-accent);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--color-accent);
}

/* ==================== FOOTER ==================== */

footer {
    padding: 3rem 4rem;
    text-align: center;
    background: var(--color-bg);
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

footer a {
    color: var(--color-accent);
    text-decoration: none;
}

/* ==================== LIGHTBOX ==================== */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--color-accent);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201, 169, 98, 0.2);
    border: none;
    color: var(--color-text);
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.lightbox-nav:hover {
    background: var(--color-accent);
    color: var(--color-bg);
}

.lightbox-prev { left: -80px; }
.lightbox-next { right: -80px; }

.lightbox-download {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-bg);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
}

.lightbox-download:hover {
    background: var(--color-accent-hover);
}

.lightbox-caption {
    position: absolute;
    bottom: -90px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 6rem 2rem 2rem;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-cta-stack {
        max-width: 400px;
        margin: 2rem auto;
    }

    .hero-image {
        height: 50vh;
        margin-top: 2rem;
    }

    .mora-content {
        grid-template-columns: 1fr;
    }

    .mora-visual {
        max-width: 280px;
        margin: 0 auto;
    }

    .demo-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .formation-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 2rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10,10,10,0.98);
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .spectacle-card.featured {
        grid-column: span 1;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==================== ANIMATIONS ==================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
