/* ============================================
   MISE À NIVEAU AUDIOVISUEL STYLESHEET
   Thème : Cinéma / Spectacle / Élégance
   ============================================ */

:root {
    --noir: #0f0f0f;
    --anthracite: #2d2d2d;
    --gris-moyen: #4a4a4a;
    --rouge-cinema: #c41e3a;
    --dore: #d4af37;
    --blanc: #ffffff;
    --beige-clair: #f5f5f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--blanc);
    color: var(--noir);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cinzel', serif;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--noir) 0%, var(--anthracite) 100%);
    color: var(--blanc);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(196, 30, 58, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.film-grain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(212, 175, 55, 0.02) 2px,
            rgba(212, 175, 55, 0.02) 4px);
    opacity: 0.5;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--dore);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    color: var(--dore);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--blanc) 0%, var(--dore) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-expertise {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.expertise-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.expertise-item i {
    font-size: 2.8rem;
    color: var(--dore);
}

.expertise-item span {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--rouge-cinema), #8b0000);
    color: var(--blanc);
    padding: 1.3rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.4);
    margin-top: 2rem;
}

.btn-hero-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(196, 30, 58, 0.5);
    color: var(--blanc);
}

/* ============================================
   SECTIONS COMMUNES
   ============================================ */

section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header.light h2,
.section-header.light p {
    color: var(--blanc);
}

.section-badge {
    display: inline-block;
    background: var(--dore);
    color: var(--noir);
    padding: 0.5rem 1.3rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--noir);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.15rem;
    color: #666;
    max-width: 750px;
    margin: 0 auto;
}

/* ============================================
   VISION SECTION
   ============================================ */

.section-vision {
    background: var(--beige-clair);
}

.vision-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.vision-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--rouge-cinema), var(--dore));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--blanc);
    margin: 0 auto 2rem;
}

.vision-wrapper h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--noir);
}

.vision-intro {
    font-size: 1.25rem;
    text-align: center;
    color: #555;
    margin-bottom: 4rem;
    line-height: 1.9;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.vision-card {
    background: var(--blanc);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.vision-card:hover {
    transform: translateY(-10px);
    border-color: var(--dore);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.vision-card i {
    font-size: 3rem;
    color: var(--rouge-cinema);
    margin-bottom: 1.5rem;
    display: block;
}

.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--noir);
    margin-bottom: 1rem;
}

.vision-card p {
    color: #666;
    line-height: 1.8;
}

/* ============================================
   RÉALISATIONS VIDÉO
   ============================================ */

.section-realisations {
    background: var(--blanc);
}

.video-carousel-container {
    background: linear-gradient(135deg, var(--noir), var(--anthracite));
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.carousel-inner {
    border-radius: 15px;
    overflow: hidden;
}

.carousel-item iframe {
    border-radius: 15px;
    width: 100%;
    height: 500px;
    border: none;
}

.carousel-caption-custom {
    background: linear-gradient(180deg, transparent, rgba(15, 15, 15, 0.95));
    padding: 2.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: left;
}

.carousel-caption-custom h5 {
    color: var(--dore);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.carousel-caption-custom p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.video-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.video-tags span {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--dore);
    color: var(--dore);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    padding: 2rem;
}

.carousel-indicators button {
    background-color: var(--dore);
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.logiciels-section {
    background: var(--beige-clair);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.logiciels-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--noir);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.logiciels-section h3 i {
    color: var(--rouge-cinema);
}

.logiciels-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logiciel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--blanc);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-width: 200px;
}

.logiciel-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.15);
}

.logiciel-item i {
    font-size: 3rem;
    color: var(--rouge-cinema);
}

.logiciel-item span {
    font-weight: 700;
    color: var(--noir);
}

/* ============================================
   STAGE RÉALISATEUR
   ============================================ */

.section-stage {
    background: linear-gradient(135deg, var(--noir) 0%, var(--anthracite) 100%);
    color: var(--blanc);
}

.stage-card {
    position: relative;
}

.stage-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--dore);
    color: var(--noir);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.stage-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--rouge-cinema), var(--dore));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--blanc);
    margin-bottom: 2rem;
}

.stage-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.stage-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.stage-phases {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.phase-item {
    display: flex;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border-left: 5px solid var(--dore);
    transition: all 0.3s ease;
}

.phase-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.phase-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dore);
    font-family: 'Cinzel', serif;
    line-height: 1;
}

.phase-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dore);
}

.phase-content ul {
    list-style: none;
    padding: 0;
}

.phase-content li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 1.5rem;
    position: relative;
}

.phase-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--rouge-cinema);
    font-weight: bold;
}

/* ============================================
   RÉGIE TECHNIQUE
   ============================================ */

.section-regie {
    background: var(--beige-clair);
}

.regie-card {
    background: var(--blanc);
    border-radius: 25px;
    padding: 3rem;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.regie-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.regie-card.son {
    border-color: var(--rouge-cinema);
}

.regie-card.son:hover {
    border-color: var(--rouge-cinema);
    background: linear-gradient(135deg, var(--blanc) 0%, #fff5f5 100%);
}

.regie-card.lumiere {
    border-color: var(--dore);
}

.regie-card.lumiere:hover {
    border-color: var(--dore);
    background: linear-gradient(135deg, var(--blanc) 0%, #fffbf0 100%);
}

.regie-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--blanc);
    margin-bottom: 1.5rem;
}

.regie-card.son .regie-icon {
    background: linear-gradient(135deg, var(--rouge-cinema), #8b0000);
}

.regie-card.lumiere .regie-icon {
    background: linear-gradient(135deg, var(--dore), #f4d03f);
}

.regie-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--noir);
}

.regie-desc {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.competences-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.competence-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--noir);
}

.competence-item i {
    color: var(--rouge-cinema);
    font-size: 1.2rem;
}

.experiences-regie {
    margin-top: 4rem;
    text-align: center;
}

.experiences-regie h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--noir);
    margin-bottom: 2rem;
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.exp-card {
    background: var(--blanc);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.exp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.exp-card i {
    font-size: 3rem;
    color: var(--dore);
    margin-bottom: 1rem;
}

.exp-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--noir);
    margin-bottom: 0.8rem;
}

.exp-card p {
    color: #666;
}

/* ============================================
   PARCOURS SCÉNIQUE
   ============================================ */

.section-scene {
    background: linear-gradient(135deg, var(--anthracite) 0%, var(--noir) 100%);
    color: var(--blanc);
}

.parcours-timeline {
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
}

.parcours-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--dore), var(--rouge-cinema));
}

.timeline-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--dore), #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--noir);
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    z-index: 2;
    position: relative;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.timeline-item.highlight .timeline-content {
    border: 2px solid var(--dore);
    background: rgba(212, 175, 55, 0.1);
}

.timeline-content i {
    font-size: 2.5rem;
    color: var(--dore);
    margin-bottom: 1rem;
    display: block;
}

.timeline-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.competences-sceniques {
    text-align: center;
    margin-bottom: 4rem;
}

.competences-sceniques h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.comp-scene-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.comp-scene-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.comp-scene-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--dore);
}

.comp-scene-card i {
    font-size: 2.5rem;
    color: var(--rouge-cinema);
    margin-bottom: 1rem;
}

.comp-scene-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.comp-scene-card p {
    color: rgba(255, 255, 255, 0.8);
}

.impro-section {
    background: rgba(196, 30, 58, 0.1);
    border: 2px solid var(--rouge-cinema);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
}

.impro-icon {
    width: 80px;
    height: 80px;
    background: var(--rouge-cinema);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--blanc);
    margin: 0 auto 1.5rem;
}

.impro-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.impro-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   DISCIPLINE
   ============================================ */

.section-discipline {
    background: linear-gradient(135deg, #fef3f7 0%, #fff5e6 100%);
}

.discipline-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.discipline-wrapper h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--noir);
}

.discipline-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.discipline-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.disc-card {
    background: var(--blanc);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.disc-card:hover {
    border-color: var(--dore);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.disc-card i {
    font-size: 3.5rem;
    color: var(--dore);
    margin-bottom: 1.5rem;
}

.disc-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--noir);
    margin-bottom: 0.5rem;
}

.disc-card p {
    color: #666;
    margin-bottom: 1rem;
}

.disc-skill {
    display: inline-block;
    background: var(--beige-clair);
    color: var(--noir);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.qualites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.qualite-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--blanc);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.qualite-item i {
    font-size: 2rem;
    color: var(--rouge-cinema);
}

.qualite-item span {
    color: var(--noir);
    font-weight: 600;
}

/* ============================================
   CTA SECTION
   ============================================ */

.section-cta {
    background: linear-gradient(135deg, var(--noir) 0%, var(--anthracite) 100%);
    color: var(--blanc);
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    filter: blur(100px);
}

.cta-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    line-height: 1.9;
}

.btn-cta-final {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--dore), #f4d03f);
    color: var(--noir);
    padding: 1.5rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-cta-final:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.5);
    color: var(--noir);
}

.cta-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.cta-info a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-info a:hover {
    color: var(--dore);
    transform: translateY(-3px);
}

.cta-info i {
    font-size: 1.5rem;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--noir);
    color: var(--blanc);
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid var(--dore);
}

footer p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.95rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-expertise {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .carousel-item iframe {
        height: 300px;
    }

    .stage-phases {
        gap: 1.5rem;
    }

    .phase-item {
        flex-direction: column;
        gap: 1rem;
    }

    .parcours-timeline::before {
        left: 30px;
    }

    .timeline-year {
        width: 70px;
        height: 70px;
        font-size: 0.9rem;
    }

    .timeline-item {
        gap: 1.5rem;
    }

    .discipline-cards {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-info {
        flex-direction: column;
        gap: 1rem;
    }
}