@import url('https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz:wght@200..700&display=swap');

.font-syselio {
    font-family: "Yanone Kaffeesatz", sans-serif;
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.aspect-square {
    aspect-ratio: 1 / 1;
}

.disc {
    position: absolute;
    border-radius: 9999px;
    opacity: 0.55;
    filter: blur(1px);
    /* Will be customized per-disc */
}

/* Disc 1 */
.disc-1 {
    width: 75vh;
    height: 75vh;
    background: rgb(51 195 240 / 0.2);
    top: 12%;
    left: -10%;
    animation: move1 21s ease-in-out infinite alternate;
}
/* Disc 2 */
.disc-2 {
    width: 50vh;
    height: 50vh;
    background: rgba(155, 135, 245, 0.2);
    top: 55%;
    left: 75%;
    animation: move2 23s ease-in-out infinite alternate;
    animation-delay: 2s;
}
/* Disc 3 */
.disc-3 {
    width: 40vh;
    height: 40vh;
    background: rgba(254, 198, 161, 0.2);
    top: 70%;
    left: 15%;
    animation: move3 27s ease-in-out infinite alternate;
    animation-delay: 6s;
}
/* Disc 4 */
.disc-4 {
    width: 25vh;
    height: 25vh;
    background: rgba(242, 252, 226, 1);
    top: 20%;
    left: 70%;
    animation: move4 19s ease-in-out infinite alternate;
    animation-delay: 4s;
}

/* Subtle, slow keyframes for each disc */
@keyframes move1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(60px, 40px) scale(1.08);
    }
}

@keyframes move2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-35px, -60px) scale(1.07);
    }
}

@keyframes move3 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, -30px) scale(1.11);
    }
}

@keyframes move4 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-25px, 70px) scale(1.09);
    }
}

/* Styles pour l'avatar utilisateur dans la navbar */
.avatar {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.avatar-xl {
    width: 2.5rem;
    height: 2.5rem;
}

.avatar-name {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
}

/*.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    min-width: 250px;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-item form button {
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    padding: 0;
    color: inherit;
}

.dropdown-item form button:hover {
    background: none;
}*/

.bg-primary-gradient {
    background-image: linear-gradient(to right,var(--falcon-cyan), var(--falcon-blue),var(--falcon-purple));
}

.bg-primary-gradient-vertical {
    background-image: linear-gradient(to bottom,var(--falcon-cyan), var(--falcon-blue),var(--falcon-purple));
}