body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.logo {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    margin-top: 20px;
    z-index: 100;
    img {
        width: 100px;
        height: 100px;
    }
}

.name {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
    margin-top: 40px;
    z-index: 100;
    h1 {
        font-size: 24px;
        font-weight: bold;
        color: white;
    }
}

.menu {
    display: flex;
    position: fixed;
    top: 20px;
    right: 0;
    left: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
    margin-top: 40px;
    gap: 40px;
    z-index: 100;

    a {
        position: relative;
        color: white;
        text-decoration: none;
        font-size: 18px;
        font-weight: bold;
        transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    a::after {
        content: attr(data-text);
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, #2af7a8, #44d01a);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        opacity: 0;
        transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }

    a:hover::after {
        opacity: 1;
    }

    .menu-indicator {
        position: absolute;
        bottom: -8px;
        left: 0;
        height: 2px;
        width: 0;
        border-radius: 2px;
        background: linear-gradient(to right, #2af7a8, #44d01a);
        pointer-events: none;
        transition:
            left 0.35s cubic-bezier(0.4, 0, 0.2, 1),
            width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

.lore {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding-top: 100px;
    pointer-events: none;
    h2 {
        font-size: 24px;
        font-weight: bold;
        color: white;
        margin-bottom: 10px;
    }
    p {
        font-size: 14px;
        font-weight: bold;
        color: white;
        text-align: center;
        margin: 5px 0;
    }
}

.leadership {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding-top: 100px;
    h2 {
        font-size: 24px;
        font-weight: bold;
        color: white;
        margin-bottom: 20px;
    }
    .leadership-card {
        img {
            width: 50px;
            height: 50px;
            border-radius: 25%;
        }
        h3 {
            font-size: 18px;
            font-weight: bold;
            color: white;
        }
        p {
            font-size: 14px;
            font-weight: bold;
            color: white;
            text-align: center;
        }
        .reqeuss-card {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            border: 5px solid rgba(255, 255, 255, 0.7);
            padding: 10px;
            width: 200px;
            height: 200px;
            overflow: hidden;
            isolation: isolate;
            will-change: transform, clip-path, filter;
            a {
                color: rgb(255, 230, 0);
                text-decoration: none;
                font-size: 14px;
                font-weight: bold;
                transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            }
        }
        .reqeuss-card::before {
            content: "";
            position: absolute;
            inset: -60%;
            background: conic-gradient(
                from 0deg,
                #ff71f1,
                #49d41f,
                #7bffea,
                #ff71f1
            );
            animation: gradient-rotate 3s linear infinite;
            z-index: 0;
        }
        .reqeuss-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                repeating-linear-gradient(
                    0deg,
                    rgba(0, 0, 0, 0.2) 0px,
                    rgba(0, 0, 0, 0.2) 1px,
                    transparent 1px,
                    transparent 3px
                ),
                repeating-linear-gradient(
                    90deg,
                    rgba(255, 255, 255, 0.03) 0px,
                    rgba(255, 255, 255, 0.03) 1px,
                    transparent 1px,
                    transparent 4px
                );
            mix-blend-mode: overlay;
            pointer-events: none;
            z-index: 1;
            animation: vhs-scanlines 0.12s steps(2) infinite;
        }
        .reqeuss-card > * {
            position: relative;
            z-index: 2;
        }
    }
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding-top: 100px;
    padding-bottom: 50px;
    h2 {
        font-size: 24px;
        font-weight: bold;
        color: white;
        margin-bottom: 15px;
    }
    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        p {
            font-size: 16px;
            font-weight: bold;
            color: white;
            margin: 0;
        }
        a {
            color: #2af7a8;
            text-decoration: none;
            transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }
        a:hover {
            color: #44d01a;
        }
    }
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
    p {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.6);
        margin: 0;
    }
}

@keyframes gradient-rotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes vhs-scanlines {
    to {
        transform: translateY(4px);
    }
}

/* Désactiver uniquement le défilement vertical */
body {
    overflow-y: hidden;
}

/* Désactiver uniquement le défilement horizontal */
body {
    overflow-x: hidden;
}