/* === THEME DARK === */
[data-bs-theme=dark] {
    --bs-body-bg: #0b0e16;
    --bs-body-bg-rgb: 11, 14, 22;
    --bs-tertiary-bg: #0c0f18;
    --bs-tertiary-bg-rgb: 12, 15, 24;
}

/* === RESET HTML & BODY === */
html,
body {
    height: auto !important;
    min-height: 100% !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    margin: 0;
    padding: 0;
}

/* === BODY === */
body {
    background: #141928;
    display: block !important;   /* supprime le flex du body */
    min-height: 100vh !important;
}

/* === APP WRAPPER === */
#app {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: visible !important;   /* empêcher le blocage du scroll */
}

/* === PARTICULES === */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* === TEXTES === */
a {
    text-decoration: none;
}

h1 {
    text-align: center;
}

.content {
    margin-top: 5rem;
    margin-bottom: 5rem;
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
}

/* === NAVBAR === */
.navbar .navbar-nav {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
}

.navbar .nav-item {
    margin-left: 0.7rem !important;
    margin-right: 0.7rem !important;
}

.navbar .navbar-nav .nav-link {
    color: #fff;
    font-weight: 600;
}

/* === HOME BACKGROUND === */
.home-background {
    position: relative;
    min-height: 100vh; /* pas besoin du !important */
    height: auto !important;
    overflow: visible !important;
}

.home-background::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0, var(--bs-body-bg), rgba(0, 0, 0, 0.15) 80%);
}

.home-background .container {
    min-height: calc(100vh - 100px);
}

/* === HOME LINKS === */
.home-links .home-link {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: inline-block;
    font-size: 12px;
    transition: .3s;
}

.home-links .home-link:hover {
    transform: scale(1.15);
    border: 1px solid rgba(255, 255, 255, .8);
}

/* === HOME SECTIONS === */
.home-section-information .element {
    height: 100%;
    padding: 3rem;
    text-align: center;
    background: rgba(0, 0, 0, .2);
    border-radius: 25px 0 25px 0;
}

.home-section-information .element i {
    font-size: 3rem;
}

.home-section-information .element h3 {
    font-size: 2rem;
    margin-top: .8rem;
    font-weight: 400;
}

.home-section-information .element p {
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 200;
    color: #9fa1a5;
}

/* === COLOR INHERIT === */
.color-inherit {
    color: inherit !impo
