:root {
    --noir: #0f0f0f;
    --anthracite: #2d2d2d;
    --gris-moyen: #4a4a4a;
    --rouge-cinema: #c41e3a;
    --dore: #d4af37;
    --blanc: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cinzel', 'Georgia', serif;
    background-color: var(--noir);
    color: var(--blanc);
    overflow-x: hidden;
}

.navbar {
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.85) 100%);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.btn-back {
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--dore);
    border: 1px solid var(--dore);
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    transition: all 0.4s ease;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-back:hover {
    background-color: var(--dore);
    color: var(--noir);
    transform: translateX(-5px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--blanc);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid rgba(212, 175, 55, 0.6);
    background: rgba(15, 15, 15, 0.5) url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.15"/%3E%3C/svg%3E');
    transition: all 0.4s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn-hero-secondary:hover {
    background-color: rgba(212, 175, 55, 0.15);
    border-color: var(--dore);
    color: var(--dore);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-hero-secondary i {
    color: var(--dore);
    transition: transform 0.3s ease;
}

.btn-hero-secondary:hover i {
    transform: translateY(2px);
}

.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.8) 0%, rgba(196, 30, 58, 0.3) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%232d2d2d" width="1920" height="1080"/><circle cx="960" cy="540" r="400" fill="%23c41e3a" opacity="0.1"/></svg>') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 70px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(212, 175, 55, 0.03) 2px,
            rgba(212, 175, 55, 0.03) 4px);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--dore) 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    letter-spacing: 2px;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section-dark {
    background: linear-gradient(180deg, var(--noir) 0%, var(--anthracite) 100%);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dore);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--rouge-cinema), transparent);
}

.content-card {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.9) 0%, rgba(74, 74, 74, 0.6) 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.content-card:hover::before {
    left: 100%;
}

.content-card:hover {
    transform: translateY(-10px);
    border-color: var(--dore);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.content-card h3 {
    color: var(--dore);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.software-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--rouge-cinema), #8b0000);
    color: white;
    padding: 0.6rem 1.3rem;
    border-radius: 25px;
    margin: 0.4rem;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.software-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.4);
}

/* =====================================================
   CAROUSEL — Conteneur & structure
   ===================================================== */
.carousel-container {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 18px;
    padding: 1.8rem;
    margin-top: 2rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    position: relative;
}

/* Ratio 16:9 — remplace .ratio Bootstrap 5 */
.video-ratio {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.video-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

/* Caption — en dessous de la vidéo (pas par-dessus) */
.carousel-caption {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    padding: 1.2rem 0.5rem 0.5rem;
    text-align: center;
    background: transparent;
}

.carousel-caption h5 {
    color: var(--dore);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.carousel-caption h6 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0.7rem;
    font-style: italic;
}

.carousel-caption p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
    max-width: 720px;
    margin-inline: auto;
}

/* ── RESPONSIVE COMPLET audiovisuel.css ── */

/* Large (1200-1400px) — Laptop */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .content-card {
        padding: 2.5rem;
    }

    .carousel-item iframe {
        height: 380px;
    }
}

/* ── Indicateurs (puce dorée) ── */
#videoCarousel .carousel-indicators {
    bottom: auto;
    top: calc(56.25% + 0.6rem);
    margin: 0;
    justify-content: center;
    gap: 8px;
    z-index: 10;
    left: 0;
    right: 0;
}

#videoCarousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.35);
    border: none;
    padding: 0;
    margin: 0;
    transition: background 0.25s ease, transform 0.2s ease;
    flex-shrink: 0;
    box-sizing: content-box;
    text-indent: -999px;
    cursor: pointer;
    opacity: 1;
}

#videoCarousel .carousel-indicators [data-bs-target].active {
    background: var(--dore);
    transform: scale(1.35);
}

/* ── Bouton mute flottant ── */
#vc-unmute-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.60);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 5px 12px 5px 9px;
    font-size: 0.80rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background 0.2s ease, opacity 0.4s ease;
}

#vc-unmute-btn:hover {
    background: rgba(0, 0, 0, 0.85);
}

#vc-unmute-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

.experience-timeline {
    position: relative;
    padding-left: 3rem;
    margin: 2rem 0;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--dore), var(--rouge-cinema));
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3.6rem;
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--dore);
    border-radius: 50%;
    border: 3px solid var(--noir);
    box-shadow: 0 0 15px var(--dore);
}

.timeline-item h5 {
    color: var(--dore);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.skill-card {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.2) 0%, rgba(139, 0, 0, 0.2) 100%);
    border: 1px solid var(--rouge-cinema);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.skill-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.4) 0%, rgba(139, 0, 0, 0.4) 100%);
}

.skill-card i {
    font-size: 3.5rem;
    color: var(--dore);
    margin-bottom: 1rem;
}

.skill-card h4 {
    color: var(--blanc);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.performance-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(196, 30, 58, 0.1) 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

/* Bouton PDF Download */
.btn-pdf-download {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--dore, #d4af37) url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.15"/%3E%3C/svg%3E');
    color: #000;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.15rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-pdf-download:hover {
    background: transparent;
    color: var(--dore, #d4af37);
    border-color: var(--dore, #d4af37);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

.btn-pdf-download i {
    transition: transform 0.3s ease;
}

.btn-pdf-download:hover i {
    transform: translateY(2px);
}

.achievement-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(15, 15, 15, 0.7);
    border: 2px solid var(--dore);
    padding: 1.2rem 2rem;
    border-radius: 50px;
    margin: 1rem;
    transition: all 0.4s ease;
}

.achievement-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.achievement-badge i {
    font-size: 2.5rem;
    color: var(--dore);
}

.achievement-text {
    text-align: left;
}

.achievement-text strong {
    display: block;
    color: var(--dore);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    background: linear-gradient(135deg, var(--anthracite), var(--gris-moyen));
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(196, 30, 58, 0.3);
}

.gallery-item::before {
    content: '🎬';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.3;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent, rgba(15, 15, 15, 0.95));
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* --- CANDIDATURE BLOCK --- */
.section-candidature-av {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #111, #0a0a0a);
}

.candidature-av-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.candidature-av-deco {
    position: absolute;
    width: 150px;
    height: 150px;
    filter: blur(50px);
    border-radius: 50%;
}

.candidature-av-deco.deco-top {
    top: -50px;
    right: -50px;
    background: rgba(212, 175, 55, 0.1);
}

.candidature-av-deco.deco-bottom {
    bottom: -50px;
    left: -50px;
    background: rgba(212, 175, 55, 0.05);
}

.candidature-av-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.candidature-av-header i {
    font-size: 2.8rem;
    color: var(--dore);
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.candidature-av-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
}

.candidature-av-header .separator {
    width: 60px;
    height: 3px;
    background: var(--dore);
    margin: 1.2rem auto 0;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.candidature-av-intro {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}

.candidature-av-targets {
    display: flex;
    justify-content: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

.target-av-pill.primary {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 1rem 2rem;
    border-radius: 50px;
    color: var(--dore);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.15rem;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
}

.target-av-pill.primary:hover {
    transform: scale(1.05);
}

.target-av-pill.primary i {
    font-size: 1.3rem;
}

.candidature-av-facts {
    position: relative;
    z-index: 2;
}

.av-fact-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 14px;
    padding: 2rem;
    height: 100%;
    border-left: 4px solid var(--dore);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.av-fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.av-fact-card h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Playfair Display', serif;
}

.av-fact-card h4 i {
    color: var(--dore);
    font-size: 1.5rem;
}

.av-fact-card p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.av-fact-card p strong {
    color: #fff;
}

.av-fact-card p.mb-0 {
    margin-bottom: 0;
}

.av-fact-card a {
    color: var(--dore);
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.download-av-content {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.download-av-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-top: 1rem;
    font-style: italic;
}

footer {
    background: var(--noir);
    border-top: 2px solid var(--dore);
    padding: 2rem 0;
    text-align: center;
}

.contact-section {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--blanc);
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.contact-links a {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dore);
    text-decoration: none;
    font-size: 1.8rem;
    transition: all 0.4s ease;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.contact-links a:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    border-color: var(--dore);
}

/* ── RESPONSIVE COMPLET audiovisuel.css ── */

/* Large (1200-1400px) — Laptop */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .content-card {
        padding: 2.5rem;
    }

    .carousel-item iframe {
        height: 380px;
    }
}

/* Tablet (768-991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-section {
        height: 75vh;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .content-card {
        padding: 2rem;
    }

    .content-card h3 {
        font-size: 1.6rem;
    }

    .carousel-item iframe {
        height: 300px;
    }

    .carousel-container {
        padding: 1.5rem;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .skill-card {
        padding: 1.5rem;
    }

    .skill-card i {
        font-size: 2.8rem;
    }

    .experience-timeline {
        padding-left: 2rem;
    }

    .timeline-item {
        padding-left: 1.5rem;
    }

    .timeline-item::before {
        left: -2.8rem;
        width: 16px;
        height: 16px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievement-badge {
        padding: 0.9rem 1.5rem;
        margin: 0.6rem;
    }

    .achievement-badge i {
        font-size: 2rem;
    }

    .performance-section {
        padding: 2rem;
    }

    /* Bloc candidature tablette */
    .section-candidature-av {
        padding: 3rem 0;
    }

    .candidature-av-block {
        padding: 2rem;
        border-radius: 20px;
    }

    .candidature-av-opts {
        gap: 0.5rem;
    }

    .candidature-av-facts {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
    .hero-section {
        height: auto;
        min-height: 60vh;
        padding: 6rem 1rem 3rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.7rem;
        letter-spacing: 1.5px;
        margin-bottom: 2rem;
    }

    .content-card {
        padding: 1.5rem;
        border-radius: 14px;
    }

    .content-card h3 {
        font-size: 1.35rem;
        gap: 0.6rem;
    }

    .software-badge {
        font-size: 0.82rem;
        padding: 0.5rem 1rem;
        margin: 0.3rem;
    }

    .carousel-item iframe {
        height: 220px;
    }

    .carousel-container {
        padding: 1rem;
    }

    .carousel-caption h5 {
        font-size: 1.1rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .skill-card {
        padding: 1.5rem;
    }

    .skill-card i {
        font-size: 2.5rem;
    }

    .experience-timeline {
        padding-left: 1.8rem;
        margin: 1rem 0;
    }

    .timeline-item {
        padding-left: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .timeline-item::before {
        left: -2.5rem;
        width: 14px;
        height: 14px;
    }

    .timeline-item h5 {
        font-size: 1.15rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item {
        height: 200px;
    }

    .performance-section {
        padding: 1.8rem 1.2rem;
        border-radius: 14px;
    }

    .achievement-badge {
        flex-direction: column;
        text-align: center;
        padding: 1rem 1.5rem;
        border-radius: 16px;
        margin: 0.5rem 0;
        width: 100%;
    }

    .achievement-badge i {
        font-size: 2rem;
    }

    .achievement-text {
        text-align: center;
    }

    /* Bloc candidature mobile */
    .section-candidature-av {
        padding: 2.5rem 0;
    }

    .candidature-av-block {
        padding: 1.5rem;
        border-radius: 18px;
    }

    .candidature-av-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .candidature-av-header h2 {
        font-size: 1.2rem;
    }

    .candidature-av-intro {
        font-size: 0.9rem;
        padding-left: 0.9rem;
    }

    .candidature-av-opts {
        flex-direction: column;
        gap: 0.4rem;
        align-items: flex-start;
    }

    .candidature-av-facts {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .av-fact {
        padding: 0.7rem 0.9rem;
    }
}

/* Très petit mobile (max 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .content-card h3 {
        font-size: 1.2rem;
    }

    .carousel-item iframe {
        height: 180px;
    }

    .achievement-badge i {
        font-size: 1.7rem;
    }

    .achievement-text strong {
        font-size: 1rem;
    }

    .section-candidature-av {
        padding: 2rem 0;
    }
}