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

body {
    font-family: 'Rubik', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    background-color: #000000;
    color: var(--color-white);
}

.top-menu {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #000000;
    z-index: 1000;
    padding: 20px 40px;
}

.menu-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    text-decoration: none;
    opacity: 1 !important;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8 !important;
}

.menu-items {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #FFFFFF;
}

.nav-link:hover,
.nav-link.active {
    color: rgba(255, 255, 255, 0.7);
}

.top-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.top-menu a:hover {
    opacity: 1;
    color: #ffffff;
}

.top-menu .logo {
    color: #ffffff;
    font-size: 24px !important;
    font-weight: 500;
    text-decoration: none;
    opacity: 1 !important;
    transition: opacity 0.3s ease;
}

.top-menu .logo:hover {
    opacity: 0.8 !important;
}

.cv-button {
    border: 2px solid var(--color-white);
    padding: 12px 20px !important;
    border-radius: 0;
    color: var(--color-white) !important;
    opacity: 1 !important;
    position: relative;
}

.cv-button::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-left: 2px solid var(--color-white);
    border-top: 2px solid var(--color-white);
    left: -6px;
    top: -6px;
}

.cv-button::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    right: -6px;
    bottom: -6px;
}

.cv-button:hover {
    background-color: var(--color-white-10);
}

.content {
    margin-top: 60px;
    padding: 20px;
}

.social-link {
    font-size: 20px;
    opacity: 0.7 !important;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 1 !important;
    color: #ffffff !important;
}

.social-link i {
    vertical-align: middle;
}

/* Styles pour le bouton hamburger - visible uniquement en mobile */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .menu-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    .hamburger {
        display: flex;
    }
    
    .menu-items {
        display: none;
        position: absolute;
        top: 100%;
        left: -40px;
        right: -40px;
        background-color: #1b1b1b;
        padding: 10px 40px;
    }
    
    .menu-items.active {
        display: flex;
    }
    
    .menu-items {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    
    .top-menu li {
        width: 100%;
        padding: 8px 0;
    }
    
    .top-menu li:last-child {
        border-bottom: none;
    }
    
    .cv-button {
        margin-top: 0;
        padding-top: 8px !important;
    }
}

.hero {
    min-height: 60vh;
    padding: 170px 40px 60px;
    color: #ffffff;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-illustration {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-profile-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #fff, 
                0 0 10px rgba(255, 255, 255, 0.7), 
                0 0 20px rgba(255, 255, 255, 0.5), 
                0 0 30px rgba(255, 255, 255, 0.3);
}

.job-title {
    font-size: 18px;
    opacity: 0.7;
    margin-bottom: 0;
    display: block;
}

.hero h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}

.typewriter-container {
    font-size: 24px;
    min-height: 60px;
}

.typewriter-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    min-height: 60px;
}

.static-text {
    opacity: 0.7;
    white-space: nowrap;
    margin-right: 8px;
}

.dynamic-text {
    display: inline-block;
    min-width: 200px;
    text-align: left;
    flex: 1;
}

.typed-cursor {
    font-size: 24px;
    color: #fe4f6c;
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        width: 100%;
    }

    .hero-illustration {
        width: 100%;
        min-height: 300px;
    }

    .hero h1 {
        font-size: 36px;
        margin: 20px 0px;
        line-height: 1.2;
    }
    
    .typewriter-container {
        font-size: 20px;
        min-height: 80px;
        margin: 20px 0px;
    }
        
    .static-text {
        width: 100%;
        text-align: center;
        margin-right: 0;
    }
    
    .dynamic-text {
        min-width: 100%;
        text-align: center;
    }
    
    .typed-cursor {
        font-size: 20px;
    }

    .hero-profile-image {
        width: 200px;
        height: 200px;
    }

    .hero h1 br {
        display: block;
    }

    .hero {
        padding: 120px 40px 60px;
    }
}

.hero-cta {
    margin-top: 30px;
}

.contact-button {
    display: inline-block;
    padding: 12px 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
    position: relative;
    box-shadow: 0 0 0 0px #fff, 0 0 0px rgba(255, 255, 255, 0.7), 0 0 5px rgba(255, 255, 255, 0.5), 0 0 15px rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    overflow: hidden;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    35% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.contact-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Version mobile */
@media (max-width: 768px) {
    .hero-cta {
        margin-top: 30px;
    }
}

.presentation {
    padding: 100px 40px;
    background-color: #1b1b1b;
}

.presentation-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.presentation-illustration {
    flex: 0.8;
    min-height: 600px;
    background-image: url('http://ruiz-donatien.com/booster-profits.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
}

.presentation-content {
    flex: 1.2;
    padding-right: 60px;
}

.presentation-content h2 {
    color: #FFFFFF;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.presentation-subtitle {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
}

.presentation-content p {
    color: #ffffff;
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 17px;
}

.presentation-content ul {
    list-style: none;
    margin: 0 0 25px 0;
    padding: 0;
}

.presentation-content ul li {
    color: #ffffff;
    opacity: 0.8;
    padding-left: 25px;
    position: relative;
    line-height: 1.8;
}

.presentation-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffffff;
    opacity: 0.6;
}

.presentation-cta {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.view-works-button {
    display: inline-block;
    background-color: #3c2c30;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border-radius: 4px;
}

.cv-download-button {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 30px;
    font-size: 16px;
    position: relative;
    box-shadow: 0 0 0 0px #fff, 0 0 0px rgba(255, 255, 255, 0.7), 0 0 5px rgba(255, 255, 255, 0.5), 0 0 15px rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    overflow: hidden;
}

.cv-download-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    35% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.view-works-button:hover {
    background-color: #e63d64;
}

.cv-download-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .presentation {
        padding: 60px 40px;
        background-color: #1b1b1b;
    }

    .presentation-container {
        flex-direction: column;
        gap: 40px;
    }

    .presentation-illustration {
        min-height: 300px;
        background-size: contain;
        width: 100%;
    }

    .presentation-content {
        width: 100%;
        flex: none;
        padding-right: 0;
        order: 1;
    }

    .presentation-content h2 {
        font-size: 32px;
    }

    .presentation-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.skills-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration-placeholder {
    width: 800px;
    height: 800px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .illustration-placeholder {
        width: 100%;
        height: 400px;
    }
}

.key-numbers {
    padding: 100px 0;
    background-color: #1b1b1b;
}

.competences {
    padding: 100px 0;
    background-color: #000000;
}

.numbers-container, .competences-container {
    max-width: 1400px;
    margin: 0 auto;
}

.numbers-blocks-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #1b1b1b;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .key-numbers, .competences {
        padding: 40px 20px;
    }

    .numbers-blocks-wrapper {
        flex-direction: column;
        gap: 20px;
        padding: 0;
    }

    .section-title {
        margin-bottom: 35px;
        text-align: left;
    }

    .section-title h2 {
        font-size: 26px;
        line-height: 1.4;
        position: relative;
        padding-bottom: 15px;
    }

    .section-title h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background-color: #3c2c30;
        border-radius: 2px;
    }
}

.skills-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.number-block, .skills-category {
    background-color: #262626;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.number-block {
    flex: 1;
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    min-height: 160px;
}

.skills-category {
    padding: 25px;
}

.number-icon {
    font-size: 26px;
    color: #000000;
    background: linear-gradient(45deg, rgba(255, 75, 118, 0.1), rgba(255, 107, 139, 0.1));
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    margin-top: 4px;
    box-shadow: 0 0 0 0px #fff, 0 0 0px rgba(255, 255, 255, 0.7), 0 0 5px rgba(255, 255, 255, 0.5), 0 0 15px rgba(255, 255, 255, 0.3);
}

.number-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.number-value {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: baseline;
    gap: 4px;
    line-height: 1;
    margin-bottom: -2px;
}

.unit {
    font-size: 22px;
    font-weight: 500;
    margin-left: 2px;
}

.plus {
    font-size: 32px;
    font-weight: 500;
    margin-right: 2px;
}

.number-subtitle {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.4;
    opacity: 0.;
}

@media (max-width: 1200px) {
    .skills-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .numbers-container {
        flex-wrap: wrap;
    }

    .number-block {
        flex: 0 0 calc(50% - 12.5px);
        display: flex;
    }
}

@media (max-width: 768px) {
    .numbers-container {
        flex-direction: column;
        gap: 20px;
    }

    .skills-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .number-block {
        padding: 24px;
        gap: 18px;
        min-height: auto;
    }

    .number-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-top: 2px;
    }

    .number-content {
        gap: 4px;
    }

    .number-value {
        font-size: 34px;
    }

    .unit {
        font-size: 18px;
    }

    .plus {
        font-size: 28px;
    }

    .number-subtitle {
        font-size: 14px;
    }
}

.skills-category h3 {
    color: #1b1b1b;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: left;
    position: relative;
    padding-bottom: 15px;
}

.skills-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #3c2c30;
    border-radius: 2px;
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.skill-name {
    color: #1b1b1b;
    font-weight: 500;
    font-size: 15px;
}

.skill-percentage {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 15px;
    text-align: right;
    min-width: 45px;
    opacity: 0.7;
}

.skill-bar {
    height: 6px;
    background-color: #F0F0F0;
    overflow: hidden;
}

.skill-progress {
    width: 0;
    height: 100%;
    background: #3c2c30;
    transition: width 2.5s ease-in-out;
}

.key-numbers .section-title,
.competences .section-title {
    text-align: left;
    padding: 0;
}

.key-numbers .section-title h2,
.competences .section-title h2 {
    position: relative;
    padding-bottom: 15px;
}

.key-numbers .section-title h2::after,
.competences .section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #3c2c30;
    border-radius: 2px;
}

.testimonials {
    background-color: #1b1b1b;
    padding: 80px 40px;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    padding: 0 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-padding: 0 20px;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(50% - 15px);
    scroll-snap-align: center;
    min-width: calc(50% - 15px);
    background: #000000;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 4px #fff, 
                0 0 10px rgba(255, 255, 255, 0.7), 
                0 0 20px rgba(255, 255, 255, 0.5), 
                0 0 30px rgba(255, 255, 255, 0.3);
}

.profile-info h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.profile-info .job-title {
    color: #ffffff;
    font-size: 14px;
    opacity: 0.7;
}

.testimonial-text {
    color: #FFFFFF;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
}

.testimonials-wrapper {
    position: relative;
    padding: 0 50px;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b1b1b;
    transition: all 0.3s ease;
    z-index: 2;
}

.slider-control:hover {
    background: #1b1b1b;
    color: #ffffff;
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(100% - 30px);
        min-width: calc(100% - 30px);
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 20px;
    }

    .testimonials-wrapper {
        padding: 0 0px;
    }

    .slider-control {
        width: 35px;
        height: 35px;
        background: #FFFFFF;
        color: #1b1b1b;
    }

    .slider-control:hover,
    .slider-control:active,
    .slider-control:focus {
        background: #FFFFFF;
        color: #1b1b1b;
    }
}

.experience {
    background-color: #000000;
    padding: 80px 40px;
}

.experience-container {
    max-width: 1400px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding: 0px 0px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-white) 0%, var(--color-white-20) 100%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    padding: 50px 0;
    position: relative;
    align-items: flex-start;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b1b1b;
    box-shadow: 0 0 0 4px #fff, 0 0 10px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.3);
}

.timeline-content {
    width: 45%;
}

.timeline-content.right {
    padding-top: 50px;
}

.timeline-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
    font-size: 15px;
    margin-bottom: 15px;
}

.timeline-content.left .timeline-date {
    justify-content: flex-end;
    padding-right: 60px;
}

.timeline-content.right .timeline-date {
    justify-content: flex-start;
    padding-left: 60px;
}

.timeline-content.left .timeline-date i {
    order: 2;
}

.timeline-content.left .timeline-date span {
    order: 1;
    margin-right: 8px;
}

.timeline-card {
    background: #262626;
    border-radius: 16px;
    padding: 25px 25px 25px 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
    padding-bottom: 35px;
}

.timeline-card:hover {
    transform: translateY(-5px);
}

.timeline-card h3 {
    color: #1b1b1b;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: none;
}

.timeline-card .company {
    color: #FFFFFF;
    font-size: 15px;
    display: block;
    margin-bottom: 15px;
}

.timeline-card .description {
    color: #FFFFFF;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, margin-bottom 0.3s ease-out;
    opacity: 0.8;
}

.timeline-card.expanded .description {
    max-height: 500px;
    margin-bottom: 20px;
    opacity: 1;
}

.toggle-description {
    position: absolute;
    bottom: -20px;
    right: 25px;
    left: auto;
    transform: none;
    background: #FFFFFF;
    border: none;
    color: #1b1b1b;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.toggle-description:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.toggle-description i {
    font-size: 16px;
    transition: transform 0.3s ease;
    transform: rotate(90deg);
}

.timeline-card.expanded .toggle-description i {
    transform: rotate(-90deg);
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-marker {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column;
        padding: 20px 0;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }

    .timeline-content.right {
        padding-top: 0;
    }

    .timeline-content.left .timeline-date,
    .timeline-content.right .timeline-date {
        justify-content: flex-start;
        padding: 10px 5px 0px 0px;
    }

    .timeline-content.left .timeline-date i {
        order: 1;
    }

    .timeline-content.left .timeline-date span {
        order: 2;
        margin-right: 0;
    }

    .timeline-content.left .timeline-card .toggle-description,
    .timeline-content.right .timeline-card .toggle-description {
        left: 80%;
        right: auto;
    }

    .toggle-description {
        width: 35px;
        height: 35px;
        bottom: -17px;
        left: auto;
        right: 20px;
        transform: none;
    }

    .toggle-description:hover {
        transform: scale(1.1);
    }

    .timeline-card {
        padding-bottom: 35px;
        padding-right: 25px;
    }
}

/* Ajout de styles pour la mise en forme du texte de la description */
.timeline-card .description strong {
    color: #1b1b1b;
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 15px;
}

.timeline-card .description br {
    content: "";
    display: block;
    margin-bottom: 5px;
}

/* Alignement à droite des dates pour les blocs de gauche */
.timeline-content.left .timeline-date {
    justify-content: flex-end;
}

/* Inversion de l'ordre des éléments dans la date pour les blocs de gauche */
.timeline-content.left .timeline-date i {
    order: 2;
}

.timeline-content.left .timeline-date span {
    order: 1;
}

/* Ajustement du responsive */
@media (max-width: 768px) {
    .timeline-content.left .timeline-date {
        justify-content: flex-start;
    }

    .timeline-content.left .timeline-date i {
        order: 1;
    }

    .timeline-content.left .timeline-date span {
        order: 2;
    }
}

@media (max-width: 768px) {
    .experience {
        padding: 80px 20px 80px 3px;
    }
}

.formation {
    padding: 100px 0;
}

/* Styles pour la section Use Cases */
.use-cases {
    padding: 100px 0;
    background-color: #1b1b1b;
}

.use-cases-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.case-studies-wrapper {
    position: relative;
    margin-top: 50px;
    overflow: hidden;
    padding: 20px 0;
}

.case-studies-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.case-study {
    background: #000;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    flex: 0 0 100%;
    max-width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: center;
}

@media (min-width: 992px) {
    .case-study {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
        margin: 0 10px;
    }
}

.case-study:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.case-studies-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    align-items: center;
}

.case-studies-controls.top-controls {
    margin-top: 20px;
    margin-bottom: 30px;
}

.case-studies-dots {
    display: flex;
    justify-content: center;
    margin: 0 15px;
}

.case-studies-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.case-studies-dot.active {
    background-color: #ffffff;
}

.case-studies-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.case-studies-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.case-study-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.case-study-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

.case-study-slider {
    margin-bottom: 25px;
    border-radius: 10px;
    overflow: hidden;
}

.slider-container {
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.slider-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.slider-prev-btn, .slider-next-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--color-white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-prev-btn:hover, .slider-next-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #ffffff;
}

.case-study-description {
    margin-bottom: 25px;
    color: var(--color-white-80);
    flex-grow: 1;
}

.case-study-description p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.case-study-description ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.case-study-description li {
    margin-bottom: 10px;
    position: relative;
    list-style-type: none;
    padding-left: 20px;
}

.case-study-description li::before {
    content: '•';
    color: var(--color-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 20px;
}

.case-study-description strong {
    color: var(--color-white);
    font-weight: 500;
}

.case-study-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.case-study-cta {
    margin-top: auto;
    text-align: center;
}

.case-study-button {
    display: inline-block;
    padding: 12px 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
    position: relative;
    box-shadow: 0 0 0 0px #fff, 0 0 0px rgba(255, 255, 255, 0.7), 0 0 5px rgba(255, 255, 255, 0.5), 0 0 15px rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    overflow: hidden;
}

.case-study-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

.case-study-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
    .case-studies-wrapper {
        gap: 30px;
    }
    
    .case-study {
        padding: 25px;
    }
    
    .case-study-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .use-cases {
        padding: 70px 0;
    }
    
    .case-studies-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .case-study-description {
        font-size: 16px;
    }
    
    .case-study-button {
        width: 100%;
    }
}

.formation-container {
    max-width: 1400px;
    margin: 0 auto;
}

.formation .timeline-marker i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .formation {
        padding: 80px 20px 80px 3px;
    }
}

.contact {
    background-color: #000000;
    padding: 80px 40px;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    margin-top: 40px;
    flex-direction: row-reverse;
}

.contact-form, .contact-info {
    flex: 1;
}

.contact-form h3, .contact-info h3 {
    color: #1b1b1b;
    font-size: 24px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-form h3::after, .contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #3c2c30;
    border-radius: 2px;
}

/* Style du formulaire */
.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--color-white-30);
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--color-white);
    outline: none;
}

.submit-btn {
    background: var(--color-white);
    color: var(--color-black);
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--color-white-80);
    transform: translateY(-2px);
}

/* Style des informations de contact */
.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    color: #FFFFFF;
    font-size: 24px;
    padding-top: 5px;
}

.info-content h4 {
    color: #1b1b1b;
    font-size: 18px;
    margin-bottom: 5px;
}

.info-content a {
    color: var(--color-white-70);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--color-white);
}

/* Responsive */
@media (max-width: 768px) {
    .contact {
        padding: 60px 20px;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .contact-form h3, .contact-info h3 {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Palette harmonisée */

/* Couleurs principales */
:root {
    /* Noir et ses variantes */
    --color-black: #000000;
    --color-black-light: #262626;
    
    /* Blanc et ses variantes */
    --color-white: #FFFFFF;
    --color-white-90: rgba(255, 255, 255, 0.9);
    --color-white-80: rgba(255, 255, 255, 0.8);
    --color-white-70: rgba(255, 255, 255, 0.7);
    --color-white-50: rgba(255, 255, 255, 0.5);
    --color-white-30: rgba(255, 255, 255, 0.3);
    --color-white-20: rgba(255, 255, 255, 0.2);
    --color-white-10: rgba(255, 255, 255, 0.1);
}

/* Remplacements à effectuer */

/* Fonds */
body, .top-menu, .experience, .contact { background-color: #000000; }

/* Textes */
body, .timeline-date, .testimonial-text { color: var(--color-white); }
.timeline-card h3, .info-content h4 { color: var(--color-white); }
.timeline-card .description { color: var(--color-white-80); }
.info-content a { color: var(--color-white-70); }
.info-content a:hover { color: var(--color-white); }

/* Bordures et séparateurs */
.timeline::before {
    background: linear-gradient(to bottom, var(--color-white) 0%, var(--color-white-20) 100%);
}

/* Boutons et éléments interactifs */
.toggle-description, .submit-btn {
    background: var(--color-white);
    color: var(--color-black);
    box-shadow: 0 0 10px var(--color-white-30);
}

.toggle-description:hover, .submit-btn:hover {
    background: var(--color-white-80);
}

/* Tags et badges */
.tag {
    background: var(--color-white-10);
    color: var(--color-white);
}

/* Formulaires */
.form-group input, .form-group textarea {
    border-color: var(--color-white-30);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--color-white);
}

/* Effets de survol et transitions */
.cv-button {
    border-color: var(--color-white);
    color: var(--color-white) !important;
}

.cv-button:hover {
    background-color: var(--color-white-10);
}

/* Modification des couleurs de texte */
.contact-form h3, 
.contact-info h3,
.timeline-card .description strong,
.info-content h4,
.timeline-card h3,
.skills-category h3,
.skill-name,
.section-title h2,
.counter,
.counter-label {
    color: var(--color-white) !important;
}

/* Ajustement des opacités pour la hiérarchie visuelle */
.timeline-card .description,
.counter-label,
.skill-name {
    opacity: 0.8;
}

.info-content a,
.timeline-card .company {
    color: var(--color-white);
    opacity: 0.7;
}

.info-content a:hover {
    opacity: 1;
}

/* Style spécial pour les tags de budget */
.tag-shine {
    position: relative;
    overflow: hidden;
    background: var(--color-white-10);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.tag-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

.mobile-break {
    display: none;
}

/* Styles pour les messages du formulaire */
.form-message {
    margin: 15px 0;
    font-size: 14px;
    line-height: 1.4;
}

.form-message .success {
    color: #28a745;
    padding: 10px;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 4px;
}

.form-message .error {
    color: #dc3545;
    padding: 10px;
    background-color: rgba(220, 53, 69, 0.1);
    border-radius: 4px;
}

.form-message .sending {
    color: #6c757d;
    font-style: italic;
}

/* Styles pour le bouton désactivé */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Styles pour la protection anti-spam */
.protected-info {
    display: inline-block;
    cursor: pointer;
    color: var(--color-white-70);
    position: relative;
    padding-left: 2px;
    padding-right: 2px;
    transition: color 0.3s ease;
}

.protected-info:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.protected-info::before {
    content: "\f06e";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 6px;
    font-size: 0.9em;
}

.revealed-info {
    color: var(--color-white-70);
    transition: color 0.3s ease;
}

.revealed-info:hover {
    color: var(--color-white);
    text-decoration: underline;
}

/* Styles pour la modale de CV */
.cv-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.cv-modal-content {
    background-color: #262626;
    padding: 35px;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 
                0 0 15px rgba(255, 255, 255, 0.2), 
                0 0 30px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cv-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
    color: var(--color-white-70);
}

.cv-modal-close:hover {
    color: var(--color-white);
    transform: scale(1.1);
}

.cv-modal h3 {
    margin-top: 0;
    margin-bottom: 25px;
    color: var(--color-white);
    font-size: 24px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.cv-modal h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--color-white-50);
    border-radius: 2px;
}

.cv-modal p {
    margin-bottom: 30px;
    line-height: 1.6;
    color: var(--color-white-80);
    font-size: 16px;
}

.cv-modal .contact-button {
    display: inline-block;
    padding: 12px 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 0 0 0px #fff, 0 0 0px rgba(255, 255, 255, 0.7), 0 0 5px rgba(255, 255, 255, 0.5), 0 0 15px rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    overflow: hidden;
}

.cv-modal .contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

.cv-modal .contact-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Adaptation mobile */
@media (max-width: 768px) {
    .cv-modal-content {
        padding: 25px;
        max-width: 90%;
    }
    
    .cv-modal h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .cv-modal p {
        font-size: 15px;
        margin-bottom: 25px;
    }
} 