/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100%;
    width: auto;
    font-family: 'Inter', sans-serif;
    

}




a {
    text-decoration: none;
    color: inherit;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
}

.profile-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    width: 100%;

}

.profile-bubble {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 0.5rem;
    gap: 0rem;

    transition: transform 0.3s ease, background 0.3s ease;
}

.profile-bubble::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: conic-gradient(
        from 0deg,
        #00ff88 0deg,
        #00ccff 60deg,
        #0088ff 120deg,
        #00ff88 180deg,
        #00ccff 240deg,
        #0088ff 300deg,
        #00ff88 360deg
    );
    border-radius: 50%;
    filter: blur(35px);
    transform: translate(-50%, -50%) rotate(0deg);
    animation: sparkle-rotate 3s linear infinite;
    z-index: -1;
    opacity: 0.9;
}

/* Ajout d'un deuxième cercle pour plus d'effet */
.profile-bubble::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 160px;
    background: radial-gradient(
        circle,
        rgba(0, 255, 136, 0.6) 0%,
        rgba(0, 204, 255, 0.4) 50%,
        rgba(0, 136, 255, 0.2) 100%
    );
    border-radius: 50%;
    filter: blur(20px);
    transform: translate(-50%, -50%);
    animation: pulse-glow 2s ease-in-out infinite alternate;
    z-index: -1;
}

/* Animation de rotation scintillante */
@keyframes sparkle-rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
        opacity: 0.9;
    }
    25% {
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg);
        opacity: 0.7;
    }
    75% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
        opacity: 0.9;
    }
}

/* Animation de pulsation */
@keyframes pulse-glow {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.7;
    }
}

/* Effet de hover pour plus d'interactivité */
.profile-bubble:hover::before {
    animation-duration: 1.5s;
    width: 10px;
    height: 10px;
    filter: blur(40px);
}

.profile-bubble:hover::after {
    animation-duration: 1s;
    width: 10px;
    height: 10px;
}

.info-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.8s ease-in-out;
}




.nav-container {
    display: flex;
    gap: 1rem;
    height: auto;


}

main {

    width: 100%;
    



}

.hero {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100dvh;
    z-index: 1;
    margin-top: -4rem;

}

.background-svg {
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    width: 100dvw;
    overflow: hidden;
    pointer-events: none;
}


.hero h1 {
    font-size: 3rem;
    letter-spacing: -0.03em;


}

.hero-content {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;

}

.nav-reseaux {
    font-size: 1rem;
    background: linear-gradient(to right, #0c4897, #1f976b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    display: inline-flex;
    width: auto;
    max-width: max-content;
    align-items: center;
    gap: 0.3rem;
}

.tag {
    color: white;
    font-weight: 100;
    font-size: 2rem;
    display: flex;
}

.text-gradient {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(120deg,
            #0a3b7a 15%,
            #1f976b 35%,
            #0a3b7a 55%,
            #1f976b 75%,
            #0a3b7a 90%);
    background-size: 400% 400%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: chaotic-shine 12s ease-in-out infinite;
}

.bloc1 {
    position: relative;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-arround;
    width: 100%;
    top: 93dvh;
    padding: 4rem;
    gap: 4rem;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    z-index: 10;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.1);
}

.languette {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    /* Centre parfaitement la languette */
    width: 100px;
    height: 6px;
    background-color: #ccc;
    border-radius: 50px;
}

.annonce {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.annonce h2 {
    font-size: 4rem;
    font-weight: 900;
}


@keyframes chaotic-shine {
    0% {
        background-position: 0% 50%;
        opacity: 0.95;
    }

    15% {
        background-position: 75% 40%;
        opacity: 0.7;
    }

    30% {
        background-position: 50% 60%;
        opacity: 1;
    }

    45% {
        background-position: 80% 30%;
        opacity: 0.85;
    }

    60% {
        background-position: 20% 80%;
        opacity: 0.9;
    }

    75% {
        background-position: 90% 40%;
        opacity: 0.6;
    }

    100% {
        background-position: 0% 50%;
        opacity: 1;
    }
}


/********************************************************************************************************/
/* Responsive *******************************************************************************************/
/********************************************************************************************************/

@media (max-width: 600px) {
    

    .nav-link {
        padding: 0.2rem 0.6rem;
        font-size: 1.5rem;
    }

    .hero-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .tag {
        font-size: 1rem;
    }

    .bloc1 {
        flex-direction: column;
        gap: 1.1rem;
    }

    .annonce {
        font-size: 1rem;
    }
}

* {
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* IE/Edge */
}

html {
    scroll-behavior: smooth;
}