@font-face {
    font-family: 'Nexmod Regular', sans-serif;
    src: local("Nexmod Regular"), url(/Nexmod-Regular.ttf) format("opentype");
}


@import url('https://fonts.googleapis.com/css2?family=Jersey+20&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Elms+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import "tailwindcss";

:root {
    --salmon: #dae5e8;
    --dark-salmon: #f80101;
    --light-salmon: #a31313;
    --background-color: #000000;
    --text-color: #f0f0f0;
    --font-family: 'Nexmod Regular', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    overflow-x: hidden;
    color: var(--text-color);
    font-family: var(--font-family);
}



/*TAOS STYLE*/


#lien_nav_deconnexion{
    color: rgb(161, 16, 16);
    text-decoration: none;
}


/*CUSTOM VARIABLES HERE*/
.section-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100vh;
    margin: 0 auto;
}

.section-hero .h1 {
    font-size: 20vmin;
    line-height: 0.9;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 10px var(--background-color);
}

.section-hero .hero-title-clone {
    position: absolute;
    color: var(--salmon);
}

.section-hero .hero-img-wrapper {
    position: relative;
    margin-top: -10vh;
    overflow: hidden;
    background-color: var(--background-color);

}

.section-hero .hero-img-wrapper img {
    border-radius: 10px;
}


/*END OF CUSTOM VARIABLES*/

.section-hero~.section {
    position: relative;
    z-index: 2;
}

.section-text {
    background: #000000;
    margin-top: 20vh;
}

.section-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgb(0, 0, 0), rgb(0, 132, 255));
}

.section-text div {
    position: relative;
    max-width: 700px;
    padding: 100px 0;
    margin: 0 auto;
}

.section-text p {
    margin-top: 20px;
}

.section-textdark {
    background: #000000;
    /* margin-top: 20vh; */
}

.section-textdark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgb(0, 0, 0), rgb(255, 0, 0));
}

.section-textdark div {
    position: relative;
    max-width: 700px;
    padding: 100px 0;
    margin: 0 auto;
}

.section-textdark p {
    margin-top: 20px;
}


/*STYLE*/


.nav-links {
    display: flex;
    gap: 20px;
    margin: 0;
    align-items: center;
    list-style: none;
    background-color: rgb(0, 0, 0);
    padding: 10px 20px;
    font-size: 20px;

}

.nav-link {
    color: white;
    text-decoration: none;

}

.nav-link:hover{
    background-color:  white;
    color: #000000;
    padding: 10px;
}

.logonavbar {
    width: 200px;

}

.textfollow {
    font-size: 30px;
    line-height: 1.5;
}

.reseauxsociaux {
    background-color: rgb(0, 132, 255);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    align-items: center;
    padding: 20px;
}

.logosreseauxo {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.facebook, .tiktok, .instagram {
    width: 70px;
    height: 70px;
    cursor: pointer;
}