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

/*===== VARIABLES CSS =====*/
:root {
    --header-height: 4rem;
    
    /* Couleurs Signatures */
    --primary-color: #ff914d;
    --primary-color-glow: rgba(255, 145, 77, 0.4);
    --dark-color: #0b0b14; /* Un peu plus profond pour faire ressortir le orange */
    --dark-light: #1a1a2e; /* Ta couleur secondaire */
    
    /* Couleurs de texte */
    --text-color: #e6e6e6;
    --text-color-light: #a0a0b0;
    
    /* Glassmorphism */
    --glass-bg: rgba(26, 26, 46, 0.6);
    --glass-border: rgba(255, 145, 77, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    /* Fontes */
    --body-font: 'Poppins', sans-serif;
    --title-font: 'Rajdhani', sans-serif;

    /* Tailles */
    --big-font-size: 2.5rem;
    --h1-font-size: 1.8rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.125rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;

    --z-tooltip: 10;
    --z-fixed: 100;
}

@media screen and (min-width: 968px) {
    :root {
        --big-font-size: 4.5rem;
        --h1-font-size: 2.5rem;
        --h2-font-size: 1.75rem;
        --normal-font-size: 1rem;
    }
}

/*===== BASE =====*/
*, ::before, ::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--dark-color);
    color: var(--text-color);
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Grille Tech */
.tech-background {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: 
        linear-gradient(rgba(255, 145, 77, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 145, 77, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
    pointer-events: none;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* Highlight Text */
.highlight { color: var(--primary-color); }
.dot { color: var(--primary-color); font-weight: bold; }

/*===== LAYOUT =====*/
.bd-container {
    max-width: 1024px;
    width: calc(100% - 2rem);
    margin-left: auto;
    margin-right: auto;
}
.bd-grid { display: grid; gap: 2rem; }
.section { padding: 6rem 0 2rem; }

.section-title {
    font-size: var(--h1-font-size);
    font-family: var(--title-font);
    color: #fff;
    margin-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/*===== GLASS PANELS (Reusable) =====*/
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    padding: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.glass-panel:hover {
    border-color: rgba(255, 145, 77, 0.4);
    box-shadow: 0 10px 40px rgba(255, 145, 77, 0.1);
}

/*===== HEADER =====*/
.l-header {
    width: 100%;
    position: fixed;
    top: 0; left: 0;
    z-index: var(--z-fixed);
    background-color: rgba(11, 11, 20, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: 0.3s;
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    color: #fff;
    font-weight: 700;
    font-family: var(--title-font);
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.nav__link {
    color: var(--text-color);
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: -4px; left: 0;
    background-color: var(--primary-color);
    transition: 0.3s;
}
.nav__link:hover::after, .active-link::after { width: 100%; }
.nav__link:hover, .active-link { color: var(--primary-color); }

.nav__toggle {
    font-size: 1.8rem;
    cursor: pointer;
    color: #fff;
}

/*===== HERO / HOME =====*/
.home__container {
    align-items: center;
    min-height: calc(100vh - var(--header-height));
}

.home__badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 145, 77, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    font-size: var(--small-font-size);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.home__name {
    font-size: var(--big-font-size);
    font-family: var(--title-font);
    line-height: 1.1;
    margin-bottom: 1rem;
}
.home__name span {
    background: linear-gradient(90deg, #fdd2b7, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home__profession {
    font-size: var(--h2-font-size);
    margin-bottom: 1.5rem;
    color: var(--text-color-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.home__description {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.home__buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
}

.button-primary {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-color-glow);
}
.button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--primary-color-glow);
}

.button-outline {
    border: 2px solid var(--glass-border);
    background: var(--glass-bg);
    color: #fff;
}
.button-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}
.social-link {
    font-size: 1.8rem;
    color: var(--text-color-light);
    transition: 0.3s;
}
.social-link:hover {
    color: var(--primary-color);
    transform: translateY(-5px) scale(1.1);
    text-shadow: 0 0 10px var(--primary-color-glow);
}

.home__img-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.glow-circle {
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--primary-color-glow) 0%, transparent 70%);
    z-index: -1;
    animation: pulse 4s infinite alternate;
}
.home__img-float {
    width: 320px;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 1; }
}






/*===== ROADMAP / EXPERIENCE RE-DESIGN =====*/
.roadmap {
    position: relative;
    padding: 2rem 0;
}

/* Ligne verticale centrale */
.roadmap__line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: rgba(255, 145, 77, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

/* Effet de remplissage lumineux sur la ligne */
.roadmap__line-filler {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    animation: scan-line 4s linear infinite;
}

@keyframes scan-line {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.roadmap__item {
    position: relative;
    width: 50%;
    padding: 1rem 3rem;
    margin-bottom: 2rem;
}

/* Alternance Droite / Gauche */
.roadmap__item--right {
    margin-left: auto;
}

/* Le point sur la ligne (Marker) */
.roadmap__marker {
    position: absolute;
    right: -20px;
    top: 20px;
    width: 44px;
    height: 44px;
    background: var(--dark-light);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    color: var(--primary-color);
    font-size: 1.25rem;
    box-shadow: 0 0 15px var(--primary-color-glow);
    transition: 0.4s;
}

.roadmap__item--right .roadmap__marker {
    left: -20px;
    right: auto;
}

/* La Flèche Stylisée */
.roadmap__arrow {
    position: absolute;
    top: 25px;
    right: -15px;
    color: var(--primary-color);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px var(--primary-color-glow));
    transition: 0.4s;
}

.roadmap__item--right .roadmap__arrow {
    left: -15px;
    right: auto;
}

/* Animation au survol */
.roadmap__item:hover .roadmap__marker {
    background: var(--primary-color);
    color: #1a1a2e;
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 0 25px var(--primary-color);
}

.roadmap__item:hover .roadmap__content {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 145, 77, 0.2);
}

.roadmap__item:hover .roadmap__arrow {
    transform: translateX(5px);
}
.roadmap__item--right:hover .roadmap__arrow {
    transform: translateX(-5px);
}

/* Détails du contenu */
.roadmap__content {
    position: relative;
    padding: 1.5rem;
    border: 1px solid var(--glass-border);
}

.roadmap__date {
    display: block;
    font-size: var(--small-font-size);
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.roadmap__title {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.75rem;
    font-family: var(--title-font);
}

.roadmap__desc {
    font-size: var(--normal-font-size);
    color: var(--text-color-light);
    margin-bottom: 1rem;
}

.roadmap__tech-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.roadmap__tech-tags span {
    font-size: 0.7rem;
    background: rgba(255, 145, 77, 0.1);
    color: var(--primary-color);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 145, 77, 0.2);
}

/*===== ADAPTATION MOBILE =====*/
@media screen and (max-width: 768px) {
    .roadmap__line {
        left: 20px;
    }
    
    .roadmap__item {
        width: 100%;
        padding-left: 3.5rem;
        padding-right: 1rem;
    }
    
    .roadmap__marker {
        left: -1px;
        right: auto;
    }
    
    .roadmap__arrow {
        left: -12px;
        right: auto;
    }

    .roadmap__item--right .roadmap__arrow {
        left: -12px;
    }
    
    .roadmap__item:hover .roadmap__arrow {
        transform: translateX(3px);
    }
}



/*===== PROJECTS REVOLTMAN V2 =====*/
.project-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-color-light);
    padding: 0.6rem 1.8rem;
    border-radius: 12px;
    cursor: pointer;
    font-family: var(--title-font);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.4s;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 20px var(--primary-color-glow);
    transform: translateY(-2px);
}

.projects__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.project__card {
    position: relative;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--dark-light);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Image de fond avec overlay intégré */
.project__img-box {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.project__img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
    filter: brightness(0.6) saturate(0.8);
}

/* Gradient pour la lisibilité du texte */
.project__img-box::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 70%;
    background: linear-gradient(to top, rgba(11, 11, 20, 1) 10%, transparent);
    z-index: 2;
}

/* Badge de statut */
.project__status-badge {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: rgba(11, 11, 20, 0.8);
    backdrop-filter: blur(5px);
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    z-index: 10;
}

/* Contenu textuel par dessus l'image */
.project__data {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 5;
    transform: translateY(40px);
    transition: 0.5s ease;
}

.project__title {
    font-size: 1.5rem;
    font-family: var(--title-font);
    color: #fff;
    margin-bottom: 0.5rem;
}

.project__desc {
    font-size: var(--small-font-size);
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
    opacity: 0;
    transition: 0.4s;
    line-height: 1.4;
        opacity: 1;

}

.project__tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.project__tags span {
    background: rgba(255, 145, 77, 0.15);
    color: var(--primary-color);
    font-size: 0.7rem;
    padding: 0.2rem 0.7rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 145, 77, 0.2);
}

/* Bouton d'action */
.project__link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: #fff;
    padding: 0.7rem 1.2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: var(--small-font-size);
    opacity: 0;
    transform: scale(0.8);
    transition: 0.4s;
}

/* EFFETS HOVER "WOAH" */
.project__card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.project__card:hover .project__img {
    transform: scale(1.1);
    filter: brightness(0.4) blur(2px);
}

.project__card:hover .project__data {
    transform: translateY(0);
}

.project__card:hover .project__desc,
.project__card:hover .project__link-btn {
    opacity: 1;
    transform: scale(1);
}

.project__link-btn:hover {
    background: #464646;
    color: var(--primary-color);
    box-shadow: 0 0 20px #1a1a2e;
}

/*===== SKILLS =====*/
.skills__container { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.skills__block { padding: 2rem; }
.skills__subtitle {
    font-size: var(--h2-font-size);
    color: #fff;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.skill__item { margin-bottom: 1.5rem; }
.skill__info { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; font-weight: 500; }
.skill__info i { color: var(--primary-color); font-size: 1.2rem; }

/* Barres de progression stylisées */
.skill__bar {
    width: 100%; height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.skill__progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #ffccaa);
    border-radius: 10px;
    position: relative;
}
/*.skill__progress::after {
    content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
} */

@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

.skills__tags-container { display: flex; flex-wrap: wrap; gap: 1rem; }
.skill-tag {
    padding: 0.6rem 1.2rem;
    background: rgba(255, 145, 77, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    transition: 0.3s;
}
.skill-tag:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--primary-color-glow);
}

/*===== DIPLOMES =====*/
.diploma__card {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}
.diploma__icon-box {
    width: 80px; height: 80px;
    background: rgba(255, 145, 77, 0.1);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 3rem; color: var(--primary-color);
}
.highlight-text { color: var(--primary-color); font-weight: 500; }


/*===== IA SECTION AMÉLIORÉE =====*/
.ai__container { 
    grid-template-columns: 1fr; 
    gap: 3rem; 
}

.ai__text-box { 
    padding: 2.5rem; 
    border-left: 4px solid var(--primary-color);
    background: linear-gradient(90deg, rgba(255, 145, 77, 0.05) 0%, transparent 100%);
}

.ai__grid { 
    display: flex; 
    gap: 2.5rem; 
    justify-content: center; 
    flex-wrap: wrap; 
    perspective: 1000px; /* Nécessaire pour l'effet 3D */
}

/* La Carte IA */
.ai__card { 
    position: relative;
    width: 260px; 
    padding: 2rem;
    text-align: center; 
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    cursor: pointer;
}

/* Effet de lueur interne au survol */
.ai__card::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 0;
}

/* Couleurs spécifiques des lueurs */
.ai__card.gemini:hover::before {
    width: 150px; height: 150px;
    background: rgba(78, 140, 255, 0.2);
    opacity: 1;
}

.ai__card.mistral:hover::before {
    width: 150px; height: 150px;
    background: rgba(253, 111, 0, 0.2);
    opacity: 1;
}

/* Animation de la carte entière */
.ai__card:hover {
   /* transform: translateY(-5px) rotateX(10deg); */
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.ai__content {
    position: relative;
    z-index: 1; /* Pour passer au dessus de la lueur */
}

.ai__icon { 
    font-size: 4.5rem; 
    margin-bottom: 1.5rem; 
    display: inline-block;
    transition: 0.5s ease;
}

/* Animation de flottaison perpétuelle */
.ai__card:hover .ai__icon {
    animation: floating 2s ease-in-out infinite;
    transform: scale(1.1);
}

@keyframes floating {
    0%, 100% { transform: translateY(0) scale(1.1); }
    50% { transform: translateY(-10px) scale(1.15); }
}

.gemini-gradient { 
    background: linear-gradient(45deg, #4E8CFF, #8E2DE2); 
    -webkit-background-clip: text; 
    color: transparent; 
    filter: drop-shadow(0 0 10px rgba(78, 140, 255, 0.3));
}

.mistral-color { 
    color: #fd6f00; 
    filter: drop-shadow(0 0 10px rgba(253, 111, 0, 0.5));
}

.ai__name {
    font-size: 1.5rem;
    font-family: var(--title-font);
    color: #fff;
    margin-bottom: 0.5rem;
}

.ai__tag {
    display: inline-block;
    font-size: var(--small-font-size);
    padding: 0.3rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: var(--text-color-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai__card:hover .ai__tag {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/*===== FOOTER =====*/
.footer {
    background: rgba(11, 11, 20, 0.9);
    border-top: 1px solid var(--glass-border);
    padding-top: 3rem; text-align: center; margin-top: 4rem;
}
.footer__description { margin-bottom: 2rem; color: var(--text-color-light); }
.footer__social { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 3rem; }
.footer__link {
    font-size: 1.5rem;
    width: 45px; height: 45px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    transition: 0.3s;
}
.footer__link:hover { background: var(--primary-color); color: #fff; transform: translateY(-5px); }
.gdpr-box {
    max-width: 500px; margin: 0 auto 2rem;
    background: rgba(255,255,255,0.02);
    padding: 1rem; border-radius: 8px; border: 1px solid var(--glass-border);
    font-size: 0.8rem; color: var(--text-color-light);
}
.footer__copy { font-size: var(--small-font-size); color: var(--text-color-light); padding-bottom: 2rem; }

/*===== MEDIA QUERIES =====*/
@media screen and (max-width: 768px) {
    .nav__menu {
        position: fixed; top: var(--header-height); left: 0; width: 100%;
        background: rgba(11, 11, 20, 0.95);
        backdrop-filter: blur(15px);
        padding: 2rem;
        transform: translateY(-150%);
        transition: 0.4s;
        border-bottom: 1px solid var(--glass-border);
        z-index: 1000;
    }
    .nav__menu.show-menu { transform: translateY(0); }
    .nav__list { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
    
    .home__container { grid-template-columns: 1fr; text-align: center; padding-top: 2rem; }
    .home__buttons, .social-links { justify-content: center; }
    
    .timeline { padding-left: 1rem; }
    .timeline-dot { left: -1.8rem; width: 30px; height: 30px; font-size: 1rem; }
    .timeline-arrow { display: none; /* Désactivé sur mobile pour la propreté */ }
}

@media screen and (min-width: 768px) {
    .nav__toggle { display: none; }
    .nav__list { display: flex; gap: 2rem; }
    .home__container { grid-template-columns: 1fr 1fr; }
    .ai__container { grid-template-columns: 1fr 1fr; align-items: center; }
}





/* Badge Recherche Alternance */
.home__alternance-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 145, 77, 0.1);
    border: 1px dashed var(--primary-color);
    border-radius: 12px;
    margin-bottom: 2rem;
    color: #fff;
    font-size: var(--small-font-size);
    animation: border-pulse 2s infinite ease-in-out;
}

.home__alternance-badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.home__alternance-badge b {
    color: var(--primary-color);
}

@keyframes border-pulse {
    0% { border-color: rgba(255, 145, 77, 0.3); box-shadow: 0 0 0px transparent; }
    50% { border-color: var(--primary-color); box-shadow: 0 0 10px var(--primary-color-glow); }
    100% { border-color: rgba(255, 145, 77, 0.3); box-shadow: 0 0 0px transparent; }
}