
/* ******************************* */

/* Polices / Fonts */
@font-face {
    font-family: 'Avigea';
    src: url('../fonts/Avigea.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Avigea';
    src: url('../fonts/Avigea Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: 'Gabriola';
    src: url('../fonts/Gabriola.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Calibri';
    src: url('../fonts/calibri.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Calibri';
    src: url('../fonts/calibrib.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Conthrax';
    src: url('../fonts/conthraxsb.otf') format('opentype');
}

/* ******************************* */

/* Set Global */
:root {
    --gold-primary: #ffd700;
    --gold-glow: #ffaa00;
    --gold-light: #fff3a8;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 215, 0, 0.15);
    --text-muted: #8a8a93;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

/* 1. Masquer la barre sur Firefox, IE et Edge (HTML + BODY) */
html, body {
    scrollbar-width: none; 
    -ms-overflow-style: none; 
    scroll-behavior: smooth;
}

body {
    font-family: 'Calibri', sans-serif;
    background-color: #000000 !important;
    color: #000000;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Empêche le défilement horizontal */
}

/* 2. Masquer la barre sur Chrome, Brave, Safari, Opera (HTML + BODY) */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

/* ******************************* */

/* SPLASH SCREEN SETUP */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    display: flex !important; /* Force le mode Flexbox */
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.8s ease-in-out;
}

/* Taille du logo animé */
#splash-video {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
    flex-shrink: 0; /* Empêche le navigateur de déformer ou d'écraser la vidéo */
}

/* Classe activée par le JavaScript à la fin de la vidéo */
#splash-screen.fade-out {
    opacity: 0;
    pointer-events: none; /* Permet de cliquer à travers pendant la disparition */
}

/* ******************************* */

/* BG - Version Vidéo Animée */
.bg-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
    /* filter: blur(2px); */
    transform: scale(1.04); /* Évite les bords blancs à cause du flou */
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.400);
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Remplit tout l'écran sans distorsion */
    object-position: center;
    animation: fadeIn 1.5s ease-out forwards, loopFade 60s infinite linear;
    /* z-index: -2; */
}



/* Animation pour l'apparition au chargement de la page */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Animation synchronisée sur les 60 secondes de ta vidéo 
   Elle reste opaque à 100% tout le long, descend très légèrement 
   à la toute fin (à 59.5s) puis revient à 100% pour le redémarrage.
*/
@keyframes loopFade {
    0% { opacity: 1; }
    98% { opacity: 1; }   /* À 58.8 secondes, la vidéo reste bien visible */
    99% { opacity: 0.3; } /* À 59.4 secondes, léger fondu pour masquer le cut du replay */
    100% { opacity: 1; }  /* Recommence à 100% en parfaite synchronisation */
}

/* ******************************* */

/* Structure Glabal */
.main-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 2px 20px;
}

.container {
    width: 100%;
    max-width: 480px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ******************************* */

/* Header */
.profile-header-custom {
    display: grid;
    /* grid-template-columns: 110px 1fr;  */
    gap: 15px 20px; /* Écart vertical et horizontal */
    padding: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    width: 100%;
}

/* Bloc Image (Gauche) */
.profile-left {
    grid-column: 1;
    grid-row: 1; /* Reste en haut à gauche */
    align-self: center;
}

/* Image PNG sans cadre */
.profile-img-custom {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border: none;
    border-radius: 0;
    filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.185)) drop-shadow(0 0 12px rgba(255, 217, 0, 0.226));
}

/* Bloc Textes & Boutons (Droite) */
.profile-right {
    grid-column: 2;
    grid-row: 1; /* Reste en haut à droite sur mobile et PC */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Nom */
/* Nom avec effet de lévitation fluide (Floating) */
.name-custom {
    font-family: 'Avigea', sans-serif; /*[cite: 1] */
    font-size: 30px; /*[cite: 1] */
    font-weight: normal; /*[cite: 1] */
    color: #ffffff; /*[cite: 1] */
    letter-spacing: 0.5px; /*[cite: 1] */
    margin-bottom: 5px; /*[cite: 1] */
    margin-top: 50px; /*[cite: 1] */
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.2); /*[cite: 1] */
    
    /* On applique l'animation : 4 secondes pour un mouvement très aérien et calme */
    animation: textFloating 4s infinite ease-in-out;
}

/* Animation de lévitation douce */
@keyframes textFloating {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px); /* Le texte monte de 4 pixels au sommet de la vague */
    }
    100% {
        transform: translateY(0); /* Redescente en douceur */
    }
}

/* Sous nom */
.subtitle-custom {
    font-family: 'Calibri', serif;
    font-size: 18px;
    color: #FFD662;
    line-height: 1.1;
    letter-spacing: 1px;
}

.subtitle-group {
    margin-bottom: 10px;
}

/* ******************************* */

/* Les boutons info */
.action-buttons-profil {
    display: flex;
    justify-content: center; /* centre les boutons */
    align-items: center;
    gap: 12px; /* espace entre les boutons */
}

/* Bio Button */
.bio-btn-custom {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #FFD662;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 20px;
    transition: all .3s ease;
}

.bio-btn-custom:hover {
    background: #FFD662;
    color: #000;
}


/* Alignement et taille parfaits pour le bouton Resume (Ajustement central) */
.resume-btn {
    text-decoration: none;
    display: inline-flex !important; /* Force le mode Flexbox pour le centrage */
    justify-content: center;        /* Centre horizontalement */
    align-items: center;            /* Centre verticalement */
    padding: 0 !important;          /* Supprime les marges internes */
    margin-top: 20px;               /* Aligne parfaitement la hauteur */
    margin-bottom: 20px;
}

/* Redimensionnement de l'icône de la feuille */
.resume-btn i {
    font-size: 16px;                /* Même taille que le porte-document */
    line-height: 1 !important;      /* Supprime l'espace invisible qui décale l'icône */
    display: inline-block;
}

/* Alignement et taille parfaits pour le bouton portfolio */
.portfolio-btn {
    text-decoration: none;
    display: inline-flex !important; /* Force le mode Flexbox pour le centrage */
    justify-content: center;        /* Centre horizontalement au pixel près */
    align-items: center;            /* Centre verticalement au pixel près */
    padding: 0 !important;          /* Supprime les marges internes par défaut */
    margin-top: 20px;               /* Aligne parfaitement la hauteur avec les autres boutons */
    margin-bottom: 20px;
}

/* Redimensionnement de l'icône porte-document */
.portfolio-btn i {
    font-size: 16px;                /* Augmenté de 14px à 16px pour correspondre à l'icône contact */
    line-height: 1 !important;      /* Supprime l'espace invisible sous l'icône */
    display: inline-block;
}

/* Bouton contact */
.contact-btn {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-btn i {
    font-size: 14px;
}

/* On applique l'animation en continu (Rythme plus long à 3s) */
.action-buttons-profil > * {
    animation: profilePulse 3s infinite ease-in-out;
}

/* Configuration du décalage ajustée pour un rythme plus lent */
.action-buttons-profil > *:nth-child(1) {
    animation-delay: 0s;
}
.action-buttons-profil > *:nth-child(2) {
    animation-delay: 0.3s; /* Le décalage prend son temps */
}
.action-buttons-profil > *:nth-child(3) {
    animation-delay: 0.6s;
}
.action-buttons-profil > *:nth-child(4) {
    animation-delay: 0.9s;
}

/* L'animation de pulsation continue pour les boutons du profil */
@keyframes profilePulse {
    0% {
        background: transparent;
        color: #fff;
        border-color: #FFD662;
    }
    50% {
        background: #FFD662; /* Se remplit de doré */
        color: #000000;      /* L'icône/Texte devient noir */
        border-color: #FFD662;
        box-shadow: 0 0 12px rgba(255, 214, 98, 0.5); /* Léger halo */
    }
    100% {
        background: transparent;
        color: #fff;
        border-color: #FFD662;
    }
}

/* ******************************* */

/* Modal Overlay */
/* Popup */
.bio-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all .35s ease;
    z-index: 9999;
}

.bio-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal content */
.bio-modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
    background: rgba(0,0,0,.50);
    backdrop-filter: blur(10px);
    border: 1px solid #FFD662;
    border-radius: 18px;
    padding: 35px;
    transform: scale(.9);
    opacity: 0;
    transition: all .35s ease;
}

.bio-modal-overlay.active .bio-modal-content {
    transform: scale(1);
    opacity: 1;
}


/* Close Button */
.bio-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: transparent;
    color: #FFD662;
    cursor: pointer;
    font-size: 18px;
    transition: .3s;
}

.bio-close-btn:hover {
    transform: rotate(90deg);
    color: #fff;
}

/* Titre popup */
.bio-modal-title {
    text-align: center;
    color: #fff;
    font-family: 'Avigea', sans-serif;
    margin-bottom: 6px;
}

/* Sous Titre popup */
.bio-modal-subtitle {
    text-align: center;
    color: rgba(255,255,255,.8);
    font-family: 'Calibri', serif;
    font-weight: normal;
    margin-bottom: 25px;
}

/* text area popup */
.bio-modal-text {
    max-height: 55vh;
    overflow-y: auto;
    padding-right: 12px;
    color: #fff;
    font-family: 'Calibri', serif;
    text-align: justify;
    line-height: 1.8;
}

.bio-modal-text p {
    margin-bottom: 18px;
}

/* Scrollbar Gold */
.bio-modal-text::-webkit-scrollbar {
    width: 5px;
}

.bio-modal-text::-webkit-scrollbar-thumb {
    background: #d4af3791;
    border-radius: 50px;
}

/* ******************************* */

/* Popup Contact */
/* Bouton downloads */
.download-contact-container {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.download-contact-btn {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-contact-btn i {
    font-size: 14px;
}

/* ******************************* */

/* Boutons de contact rapides ss name */
.action-buttons-custom {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
}

.action-btn-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.2);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.action-btn-custom i {
    font-size: 14px;
}

.action-btn-custom:hover {
    color: #000000;
    background: #FFD662;
    box-shadow: 0 0 15px var(--gold-glow);
    border-color: #FFD662;
    transform: translateY(-2px);
}

/* ******************************* */

/* Lignes - Séparateur */
.gold-separator1 {
    width: 50%;          /* largeur réduite */
    height: 1px;         /* trait très fin */
    margin: 0px auto;   /* centrée horizontalement */
    margin-top: 5px;
    margin-bottom: 50px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 215, 0, 0.3) 20%,
        #FFD662 50%,
        rgba(255, 215, 0, 0.3) 80%,
        transparent 100%
    );
    margin-bottom: 60px;
}

.gold-separator2 {
    width: 50%;          /* largeur réduite */
    height: 1px;         /* trait très fin */
    margin: 0px auto;   /* centrée horizontalement */
    margin-top: 50px;
    margin-bottom: 50px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 215, 0, 0.3) 20%,
        #FFD662 50%,
        rgba(255, 215, 0, 0.3) 80%,
        transparent 100%
    );
}

.gold-separator3 {
    width: 50%;          /* largeur réduite */
    height: 1px;         /* trait très fin */
    margin: 0px auto;   /* centrée horizontalement */
    margin-top: 20px;
    margin-bottom: 20px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 215, 0, 0.3) 20%,
        #FFD662 50%,
        rgba(255, 215, 0, 0.3) 80%,
        transparent 100%
    );
}

/* ******************************* */

/* One link for all links */
.tagline {
    font-family: 'Avigea', sans-serif;
    text-align: center;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 20px 0;

    background: linear-gradient(
        120deg,
        #ffffff 0%,
        #ffffff 43%,
        #be9019 48%,
        #d4b15a 49.5%,
        #ffebaa 50%,
        #d4b15a 50.5%,
        #be9019 52%,
        #ffffff 57%,
        #ffffff 100%
    );

    background-size: 300% 100%;

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;

    animation: luxuryGold 10s linear infinite alternate;
}

@keyframes luxuryGold {
    from {
        background-position: 100% center;
    }

    to {
        background-position: 0% center;
    }
}

/* ******************************* */

/* SECTIONS ET BOUTONS DE LIENS */
/* (TEXTES CENTRÉS, ICONES À GAUCHE) */
.link-section {
    margin-bottom: 50px;
}

/* .link-section2 {
    margin-bottom: 50px;
} */

.section-title {
    font-family: 'Avigea', sans-serif;
    font-size: 1rem;
    letter-spacing: 1.5px;
    color: #ffffffb0;
    margin-bottom: 15px;
    display: flex;
    align-items: center; /* 🔥 alignement parfait avec barre */
    padding-left: 8px;
    border-left: 2px solid #ffc82f;
}

.typewriter {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    max-width: 100%; /* Empêche le débordement sur mobile */
    opacity: 0;
    animation: typing 7s infinite ease-in-out;
}

@keyframes typing {
    0%   { width: 0; opacity: 1; }
    5%   { opacity: 1; }
    47%  { width: 100%; opacity: 1; } /* Utilisation de 100% au lieu de 18ch */
    53%  { width: 100%; opacity: 1; }
    100% { width: 0; opacity: 1; }
}



.links-wrapper {
    display: block;
}

.links-wrapper2 {
    display: block;
}

/* Les blocs */
.link-item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 54px;
    padding: 14px 50px;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: #e4e4e7;
    text-decoration: none;
    font-family: 'Calibri', sans-serif;
    font-weight: bold;
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    animation: none; /* base */
}

/* couche de reflet */
.link-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.25) 45%,
        rgba(255, 255, 255, 0.500) 50%,
        rgba(255, 255, 255, 0.25) 55%,
        transparent 100%
    );
    filter: blur(20px); /* 🔥 effet flou du reflet */
    transform: skewX(-20deg) translateX(-150%);
    pointer-events: none;

    animation: shine 8s infinite linear;
}

/* déplacement droite → gauche */
@keyframes shine {
    /* départ hors écran gauche */
    0% {
        transform: translateX(-150%) skewX(-20deg);
    }
    /* traverse pendant 5s */
    83% {
        transform: translateX(150%) skewX(-20deg);
    }
    /* pause 1s (reste à droite) */
    100% {
        transform: translateX(180%) skewX(-20deg);
    }
}

/* Les icons sur les blocs */
.link-icon {
    position: absolute;
    left: 20px;
    font-size: 22px;
    color: #FFD662;
    transition: transform 0.3s ease;
}

.link-text {
    font-size: 1rem;
    text-align: center;
}

.link-item:hover {
    transform: translateX(4px);
    border-color: goldenrod;
    background: rgba(255, 215, 0, 0.04);
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.15);
    color: #ffffff;
}

.link-item:hover .link-icon {
    transform: scale(1.15);
    color: rgb(255, 187, 0);
}

/* .featured {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.02);
} */

/* ******************************* */

/* Citation */
.lasttext {
    font-family: 'Avigea', sans-serif;
    text-align: center;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffffc5; /* Or élégant */
    margin: 20px 0;
    margin-bottom: 60px;
}

/* ******************************* */

/* Bouton Retour en Haut Statique */
.back-to-top-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px; /* Espace avant le footer */
}

.back-to-top-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.25); /* Bordure dorée subtile */
    background: rgba(255, 255, 255, 0.02);
    color: #FFD662;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-to-top-btn i {
    font-size: 14px;
}

.back-to-top-btn:hover {
    background: #FFD662;
    color: #000000;
    box-shadow: 0 0 15px #ffaa00;
    border-color: #FFD662;
    transform: translateY(-3px); /* Petit effet de lévitation au survol */
}

/* La classe activée par ton script JS */
.back-to-top-btn.pulse-active {
    animation: intensePulse 2s infinite ease-in-out;
}

/* L'animation qui reproduit l'effet de survol complet */
@keyframes intensePulse {
    0% {
        background: rgba(255, 255, 255, 0.02);
        color: #FFD662;
        border-color: rgba(255, 215, 0, 0.25);
        box-shadow: 0 0 0px rgba(255, 170, 0, 0);
        transform: translateY(0);
    }
    50% {
        background: #FFD662; /* Remplissage doré complet */
        color: #000000;      /* L'icône devient noire */
        border-color: #FFD662;
        box-shadow: 0 0 15px #ffaa00; /* Le halo lumineux complet */
        transform: translateY(-3px);  /* Le petit effet de lévitation */
    }
    100% {
        background: rgba(255, 255, 255, 0.02);
        color: #FFD662;
        border-color: rgba(255, 215, 0, 0.25);
        box-shadow: 0 0 0px rgba(255, 170, 0, 0);
        transform: translateY(0);
    }
}


/* ******************************* */

/* Copyright */
.copyright {
  color: rgba(255, 255, 255, 0.541);
  position: relative;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: 'Calibri', Arial, sans-serif;
  font-size: 16px;
  line-height: 50px;
  pointer-events: initial;
  overflow: hidden;
  /* transform: translate(-50%, 300px) scale(1); */
  animation: slideUp 1.5s ease-out 2.4s forwards;
  transition:
    color 0.4s ease,
    transform 0.4s ease,
    text-shadow 0.4s ease;
}

/* Style du lien copyright */
.copyright .link {
  color: inherit;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}

/* Soulignement animé */
.copyright .link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: goldenrod;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* Effet au survol */
.copyright .link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Effet quand on enlève le curseur */
.copyright .link::after {
  transition: transform 0.8s ease;
}

/* ******************************* */

/* SMARTPHONE (jusqu’à 767px) */
@media (max-width: 767px) {

    #splash-video {
        max-width: 140px;
        /* Logo un poil plus petit sur smartphone */
    }

    .bg-overlay {
        height: 100% !important;
        bottom: 0;
    }

    /* Container */
    .main-wrapper {
        padding: 8px 10px;
    }

    .container {
        max-width: 90%;
    }

    /* HEADER */
    .profile-header-custom {
        grid-template-columns: 1fr;
        padding: 5px;
        margin-bottom: 55px;
    }

    .profile-left {
        display: flex;
        justify-content: center;
        margin-bottom: 8px;
    }

    .profile-img-custom {
        width: 150px;
    }

    .name-custom {
        font-size: 18px;
        margin-top: 15px;
    }

    .subtitle-custom {
        font-size: 13px;
    }

    /* BOUTONS */
    .action-buttons-profil {
        gap: 8px;
        /* margin-top: 8px; */
    }

    .bio-btn-custom {
        width: 38px;
        height: 38px;
        font-size: 10px;
    }

    /* LINKS */
    .link-item {
        padding: 12px 40px;
        min-height: 48px;
    }

    .link-text {
        font-size: 0.9rem;
    }

    .link-icon {
        font-size: 18px;
    }

    /* SEPARATEURS */
    .gold-separator1 {
        width: 50%;
        margin: 0px auto;   /* centrée horizontalement */
        margin-top: 5px;
        margin-bottom: 50px;
    }

   .gold-separator2 {
        width: 50%;
        margin: 0px auto;   /* centrée horizontalement */
        margin-top: 50px;
        margin-bottom: 50px;
    }

   .gold-separator3 {
        width: 50%;
        margin: 0px auto;   /* centrée horizontalement */
        margin-top: 20px;
        margin-bottom: 20px;
    }

    /* TAGLINE */
    .tagline {
        font-size: 13px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    /* POPUP */
    .bio-modal-content {
        width: 85%;
        padding: 18px;
    }

    .bio-modal-text {
        font-size: 13px;
    }

    .lasttext {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        width: 70%;
    }

    /* COPYRIGHT */
    .copyright {
        font-size: 12px;
    }
}

/* ******************************* */

/* TABLETTE (768px → 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {

    /* Container */
    .main-wrapper {
        padding: 15px 20px;
    }

    .container {
        max-width: 80%;
    }

    /* HEADER */
    .profile-header-custom {
        padding: 10px;
        margin-bottom: 35px;
    }

    .profile-left {
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
    }

    .profile-img-custom {
        width: 160px;
    }

    .name-custom {
        font-size: 26px;
        margin-top: 25px;
    }

    .subtitle-custom {
        font-size: 16px;
    }

    /* BOUTONS */
    .action-buttons-profil {
        gap: 12px;
        /* margin-top: 15px; */
    }

    .bio-btn-custom {
        width: 42px;
        height: 42px;
        font-size: 11px;
    }

    /* LINKS */
    .link-item {
        padding: 14px 50px;
        min-height: 52px;
    }

    .link-text {
        font-size: 1rem;
    }

    .link-icon {
        font-size: 20px;
    }

    /* SEPARATEURS */
    .gold-separator1 {
        width: 50%;
        margin: 0px auto;   /* centrée horizontalement */
        margin-top: 5px;
        margin-bottom: 50px;
    }

   .gold-separator2 {
        width: 50%;
        margin: 0px auto;   /* centrée horizontalement */
        margin-top: 50px;
        margin-bottom: 50px;
    }

   .gold-separator3 {
        width: 50%;
        margin: 0px auto;   /* centrée horizontalement */
        margin-top: 20px;
        margin-bottom: 20px;
    }

    /* TAGLINE */
    .tagline {
        font-size: 13px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    /* POPUP */
    .bio-modal-content {
        width: 85%;
        padding: 30px;
    }

    .bio-modal-text {
        font-size: 14px;
    }

    /* COPYRIGHT */
    .copyright {
        font-size: 14px;
    }
}

/* ******************************* */
