body {
    font-family: "Poppins", sans-serif;
}

@font-face {
    font-family: "Pretendo";
    src: url("/assets/fonts/Pretendo.ttf") format("truetype");
}

.font-pretendo {
    font-family: "Pretendo", sans-serif;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
button,
img,
svg {
    filter: drop-shadow(0 0 0.75rem #000);
}

.social-media svg {
    width: 55px;
    height: 55px;
    fill: #fff;
}

/* outline for the card's title */
.card h3 {
    text-align: center;
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 0 0 0.75rem #000;
}

.card {
    transition: 0.3s ease-in-out;
}

.card:not(.still):hover {
    transform: scale(0.95) !important;
    opacity: 0.8 !important;
}

.isclickable {
    cursor: pointer;
}

.desc p {
    margin-top: 0px;
    margin-bottom: 0px;
}

.desc hr {
    margin-top: 20px;
    margin-bottom: 20px;
}

.desc h1,
.desc h2,
.desc h3,
.desc h4,
.desc h5,
.desc h6 {
    margin-top: 20px;
    margin-bottom: 0px;
    font-weight: bold;
}

.desc h1 {
    font-size: 1.5rem;
}

.desc h2 {
    font-size: 1.4rem;
}

.desc h3 {
    font-size: 1.3rem;
}

.desc h4 {
    font-size: 1.2rem;
}

.desc h5 {
    font-size: 1.1rem;
}

.desc h6 {
    font-size: 1rem;
}

.desc ol {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 20px;
    list-style-type: decimal;
}

.desc ul {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 20px;
    list-style-type: disc;
}

.swiper-wrapper {
    height: max-content !important;
}
.swiper-slide {
    padding: 10px;
}
.swiper-slide img {
    filter: drop-shadow(0 0 0rem #000) !important;
}

.heav-bg {
    position: fixed;
    top: -5vh; /* Extend beyond viewport to avoid white borders */
    left: -5vw;
    width: 110vw; /* Make it larger than viewport */
    height: 110vh;
    background: url("https://heaventy-projects.fr/assets/images/background.jpg") center/cover no-repeat;
    filter: blur(10px);
    z-index: -1;
}

.heav-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #070b14;
    border-bottom-color: #0a7aff;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    filter: drop-shadow(0 0 0.75rem #000);
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Pour les navigateurs basés sur WebKit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 10px; /* Largeur de la scrollbar */
}

::-webkit-scrollbar-track {
    background: #070b14; /* Couleur de fond de la scrollbar */
}

::-webkit-scrollbar-thumb {
    background: #0a7aff; /* Couleur de la barre de défilement */
    border-radius: 5px; /* Arrondi des bords */
}

::-webkit-scrollbar-thumb:hover {
    background: #0868d9; /* Changement de couleur au survol */
}
/* Pour Firefox */
* {
    scrollbar-color: #0a7aff #070b14; /* (barre, fond) */
    scrollbar-width: thin; /* Peut être thin, auto ou none */
}

#social-media a:hover {
    transform: scale(1.2);
    transition: 0.2s;
}
#social-media a {
    transition: 0.2s;
}
