@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

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

:root {
    --primary: #0066CC;
    --secondary: #FFD700;
    --accent: #1a1a1a;
    --dark: #1a1a1a;
    --light: #FFF9E6;
    --gradient1: linear-gradient(135deg, #0066CC 0%, #004999 100%);
    --gradient2: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient3: linear-gradient(135deg, #0066CC 0%, #00BFFF 100%);
    --gradient4: linear-gradient(135deg, #FFD700 0%, #FFFF00 100%);
    --shadow: 0 10px 40px rgba(0,102,204,0.1);
    --shadow-hover: 0 20px 60px rgba(0,102,204,0.2);
}

body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 30px rgba(108, 99, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.8rem 1.5rem;
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

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

.nav-links.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem;
    transition: color 0.3s;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Desktop navigation */
@media (min-width: 769px) {
    .nav-links {
        display: flex;
        position: static;
        flex-direction: row;
        width: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
        gap: 2.5rem;
    }

    .burger {
        display: none;
    }

    .logo img {
        height: 80px;
    }

    .navbar {
        padding: 1.2rem 3rem;
    }
}

/* Hero section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient1), url('img/img5.png') center/cover no-repeat;
    padding: 2rem;
    overflow: hidden;
    width: 100%;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
    top: 0;
    left: 0;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    text-align: center;
    z-index: 10;
    color: black;
    max-width: 800px;
    width: 100%;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--dark);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    opacity: 0.95;
    font-weight: 300;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
    min-height: 54px;
    width: auto;
    max-width: 100%;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    background: var(--secondary);
    color: white;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 4rem;
    }

    .hero-content p {
        font-size: 1.4rem;
    }

    .btn-primary {
        padding: 1.2rem 3rem;
    }
}

/* Sections générales */
section {
    padding: 4rem 1.5rem;
    background: white;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

section:nth-child(even) {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

@media (min-width: 768px) {
    section {
        padding: 8rem 4rem;
    }
}

h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: var(--gradient1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    max-width: 100%;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient2);
    border-radius: 3px;
}

@media (min-width: 768px) {
    h2 {
        font-size: 3rem;
        margin-bottom: 4rem;
    }

    h2::after {
        width: 100px;
    }
}

/* Compteurs */
.counters {
    background: linear-gradient(135deg, #fffbf0 0%, #f0e6d2 100%);
    padding: 4rem 1.5rem;
    width: 100%;
}

.counters h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.counter {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.counter:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.counter h3 {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.counter p {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .counters {
        padding: 6rem 3rem;
    }

    .counters h2 {
        font-size: 3rem;
        margin-bottom: 4rem;
    }

    .counters-grid {
        gap: 2.5rem;
    }

    .counter {
        padding: 3rem 2rem;
        border-radius: 25px;
    }

    .counter h3 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }

    .counter p {
        font-size: 1.1rem;
    }
}

/* Spectacles */
.shows-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.show-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.show-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.show-card:hover::before {
    transform: scaleX(1);
}

.show-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.show-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s;
}

.show-card:hover .show-icon {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.show-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.show-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.btn-details {
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: var(--gradient1);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(108, 99, 255, 0.3);
    min-height: 44px;
}

.btn-details:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.4);
}

@media (min-width: 768px) {
    .shows-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }

    .show-card {
        padding: 2.5rem 2rem;
        border-radius: 30px;
    }

    .show-card h3 {
        font-size: 1.5rem;
    }
}

/* Features */
.card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  width: 300px;
  padding: 20px;
  margin-top: 100px; /* Espace pour l'image qui dépasse */
  text-align: center;
}

.image-container {
  width: 200px;
  height: 200px;
  margin: -100px auto 20px; /* -100px fait remonter l'image de moitié */
  border-radius: 15px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card h3 {
  color: #0066cc;
  font-size: 24px;
  margin-bottom: 1rem;
}

.card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .card {
    width: 280px;
  }
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 2rem 1.5rem;
}

@media (min-width: 768px) {
  .features {
    gap: 3rem;
    padding: 3rem 4rem;
  }
}

    @media (min-width: 768px) {
      .features {
        gap: 3rem;
        padding: 3rem 4rem;
      }
    }
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
}

.gallery-item:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: var(--shadow-hover);
    z-index: 10;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background: var(--gradient1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    font-weight: 700;
    transition: transform 0.4s;
}

.gallery-item:hover .placeholder-img {
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .gallery-grid {
        gap: 1.5rem;
    }

    .placeholder-img {
        font-size: 4rem;
    }
}

/* Videos */
.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.video-container video,
.main-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-description {
    padding: 1.5rem;
}

.video-description h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.video-description p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

/* Main show */
.main-show {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    width: 100%;
}

.main-video-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    width: 100%;
}

.main-video-container video {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-info {
    padding: 2rem;
    text-align: center;
}

.video-info h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.video-info p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .main-video-container {
        border-radius: 30px;
    }

    .video-info {
        padding: 2.5rem;
    }

    .video-info h3 {
        font-size: 2rem;
    }

    .video-info p {
        font-size: 1.1rem;
    }
}

/* Témoignages */
.temoignages {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 4rem 1.5rem;
    width: 100%;
}

.temoignages h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .temoignages {
        padding: 6rem 3rem;
    }

    .temoignages h2 {
        font-size: 3rem;
        margin-bottom: 4rem;
    }
}

.temoignages h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient2);
    border-radius: 3px;
}

@media (min-width: 768px) {
    .temoignages h2::after {
        width: 100px;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.testimonial-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.testimonial-card .role {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }

    .testimonial-card {
        padding: 2.5rem 2rem;
        border-radius: 25px;
    }
}

/* Shorts */
.shorts-section {
    background: white;
    padding: 4rem 1.5rem;
    width: 100%;
}

.shorts-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .shorts-section {
        padding: 6rem 3rem;
    }

    .shorts-section h2 {
        font-size: 3rem;
        margin-bottom: 4rem;
    }
}

.shorts-slider-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 45px;
    width: 100%;
}

.shorts-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 1rem;
}

.short-card {
    flex: 0 0 100%;
    max-width: 400px;
    min-width: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    aspect-ratio: 9/16;
    max-height: 75vh;
    margin: 0 auto;
}

.short-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.short-container {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 9/16;
}

.short-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mute-toggle {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.6);
    color: white;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    min-width: 48px;
    min-height: 48px;
}

.mute-toggle:hover {
    background: rgba(0,0,0,0.8);
}

.mute-toggle.unmuted {
    background: rgba(0,102,204,0.8);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.slider-arrow:hover {
    background: #004999;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

.left-arrow {
    left: 0;
}

.right-arrow {
    right: 0;
}

@media (max-width: 768px) {
    .shorts-slider-container {
        padding: 0 45px;
    }

    .short-container {
        max-height: 60vh;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .mute-toggle {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        top: 12px;
        right: 12px;
    }
}

@media (max-width: 480px) {
    .shorts-slider-container {
        padding: 0 40px;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .mute-toggle {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        top: 12px;
        right: 12px;
    }
}

@media (max-width: 420px) {
    .shorts-slider-container {
        padding: 0 30px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .mute-toggle {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
        top: 10px;
        right: 10px;
    }

    .short-container {
        max-height: 50vh;
    }
}

    .shorts-slider-container {
        padding: 0 35px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .mute-toggle {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
        top: 10px;
        right: 10px;
    }

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .contact-container {
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 700px;
}

input, select, textarea {
    font-size: 16px;
    -webkit-appearance: none;
    appearance: none;
}

form input, form select, form textarea {
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    background: #f8f9fa;
    width: 100%;
    min-height: 52px;
}

form input:focus, form select:focus, form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    background: var(--gradient1);
    padding: 2rem;
    border-radius: 20px;
    color: white;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (min-width: 768px) {
    form {
        padding: 3rem;
    }

    .contact-info {
        padding: 3rem;
    }

    .contact-info h3 {
        font-size: 1.8rem;
    }
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    width: 100%;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Scroll animations */
.show-card, .feature, .gallery-item, .short-card {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.4s;
}

.show-card.visible, .feature.visible, .gallery-item.visible, .short-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox & Modal */
.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;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.3s;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 3.5rem;
    cursor: pointer;
    transition: transform 0.3s;
    z-index: 2001;
    min-width: 60px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-lightbox:hover {
    transform: rotate(90deg);
}

.lightbox-content {
    font-size: 10rem;
    color: white;
    animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scaleIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s;
}

.modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    max-height: 90vh;
    overflow-y: auto;
}

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

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    min-width: 40px;
    min-height: 40px;
}

.close-modal:hover {
    color: var(--secondary);
    background: #f0f0f0;
    transform: rotate(90deg);
}

.modal-content h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 800;
}

.modal-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.modal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    list-style: none;
}

.modal-content ul li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 30px;
}

.modal-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.modal-content strong {
    color: var(--primary);
}

/* Équipe */
.equipe {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 4rem 1.5rem;
}

.equipe h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .equipe {
        padding: 6rem 3rem;
    }

    .equipe h2 {
        font-size: 3rem;
        margin-bottom: 4rem;
    }
}

.equipe h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient2);
    border-radius: 3px;
}

@media (min-width: 768px) {
    .equipe h2::after {
        width: 100px;
    }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.member-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.team-member h3 {
    color: var(--primary);
    margin: 1.2rem 0 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.team-member .role {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-member p {
    color: #555;
    padding: 0 2rem 2rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .team-grid {
        gap: 2.5rem;
    }

    .member-image {
        height: 280px;
    }

    .team-member h3 {
        font-size: 1.4rem;
    }
}

/* Responsive utilities - override pour très petits écrans */
@media (max-width: 768px) {
    .shows-grid, .features, .testimonials-grid, .counters-grid, .team-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Shorts plus petits sur mobile */
    .short-card {
        flex: 0 0 78%;
        max-width: 78%;
        margin: auto;
    }

    .shorts-slider {
        justify-content: center;
    }

    .short-container {
        height: 100%;
        aspect-ratio: 9/16;
    }

    .shorts-slider-container {
        padding: 0 34px;
    }
}

@media (max-width: 480px) {
    .short-card {
        flex: 0 0 72%;
        max-width: 72%;
    }

    .short-container {
        height: 100%;
        aspect-ratio: 9/16;
    }
}

@media (max-width: 420px) {
    .short-card {
        flex: 0 0 70%;
        max-width: 70%;
    }

    .short-container {
        height: 100%;
        aspect-ratio: 9/16;
    }
}

@media (max-width: 360px) {
    .shorts-slider-container {
        padding: 0 30px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .mute-toggle {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: 10px;
        right: 10px;
    }

    .short-container {
        height: 100%;
        aspect-ratio: 9/16;
    }
}

/* Améliorations d'accessibilité */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Portrait tablets */
@media (max-width: 768px) and (orientation: portrait) {
    .short-container {
        height: 80vh;
        max-height: 80vh;
        aspect-ratio: 9/16 !important;
    }
}

/* Écrans très petits en paysage */
@media (max-height: 500px) and (orientation: landscape) {
    .short-container {
        height: 80vh;
        max-height: 80vh;
        aspect-ratio: 9/16 !important;
    }
}

/* Bulles flottantes décoratives */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bubble {
    position: absolute;
    font-size: 4rem;
    animation: floatComplex 8s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    pointer-events: none;
}

.b1 { top: 15%; left: 8%; animation-delay: 0s; }
.b2 { top: 65%; left: 85%; animation-delay: 1.5s; }
.b3 { top: 25%; left: 75%; animation-delay: 3s; }
.b4 { top: 75%; left: 15%; animation-delay: 4.5s; }
.b5 { top: 45%; left: 50%; animation-delay: 2s; }

@keyframes floatComplex {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-40px) rotate(10deg) scale(1.1); }
    50% { transform: translateY(-20px) rotate(-5deg) scale(1.05); }
    75% { transform: translateY(-35px) rotate(8deg) scale(1.08); }
}

/* Gallery item color variations */
.gallery-item:nth-child(2) .placeholder-img { background: var(--gradient2); }
.gallery-item:nth-child(3) .placeholder-img { background: var(--gradient3); }
.gallery-item:nth-child(4) .placeholder-img { background: var(--gradient4); }
.gallery-item:nth-child(5) .placeholder-img { background: var(--gradient2); }
.gallery-item:nth-child(6) .placeholder-img { background: var(--gradient3); }