:root{
    /* les couleurs du site */
    --ecru: #fff8dc;
    --jaune: #fde517;
    --bleu: #1550c6;
    --bRoi: #4169E1;
    font-size: 12px;
    /* font-family: 'Philosopher', 'Lora', Tahoma, sans-serif; */
    /* font-family: 'Roboto','Philosopher'; */
}

@font-face {
    font-family: 'coolveticaRegular';
    src: url('/fonts/coolvetica rg.otf');
    font-weight: normal; /* Définit le poids (normal, bold, etc.) */
    font-style: normal;  /* Définit le style (normal, italic, etc.) */

}

@font-face {
    font-family: 'sansationRegular';
    src: url('/fonts/Sansation_Regular.ttf');
    font-weight: normal; /* Définit le poids (normal, bold, etc.) */
    font-style: normal;  /* Définit le style (normal, italic, etc.) */
    
}

body{
    font-family: 'sansationRegular', sans-serif;
    /* background-color: var(--bRoi); */
    /* background-color: var(--bleu); */
    background-color: #3c6dce;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Conteneur principal */
.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Assure que le conteneur prend toute la hauteur de la page */
}

/* Contenu principal */
.content-wrapper {
    flex: 1; /* Permet à main de remplir l'espace restant */
    padding: 20px; /* Ajuste les marges internes */
    overflow: auto; /* Permet un défilement si le contenu dépasse */
}

/* Navbar */
#navbar {
    height: 100%;
    position: relative;
    background-image: url('../cssHome/fondHand.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}
nav a {
    /* color: black !important; */
    color: rgb(255, 255, 255) !important;
    font-size: 1.7rem;
    font-weight: 700;
    margin-right: 20px; /* marge autour des menus */
}

nav p {
    color: rgb(255, 255, 255) !important;
    font-size: 1.7rem;
    font-weight: 700;
    margin-right: 20px; /* marge autour des menus */
}

.dropdown-menu {
    background-color: var(--bRoi);
}

/* bouton */
.custom-toggler {
    width: 47px;
    height: 34px;
    background-color: var(--jaune);
}

#container {
    z-index: 10;
    font-size: 1rem;
}

.nav-item {
    font-size: 1.5rem;
}

footer {
    background-color: var(--jaune);
}

footer h1 {
    text-align: center;
    font-size: 1rem;
    padding: 10px 0;
}

.lab {
    font-size: 3.5rem;
}

footer section {
    display: flex;
    width: 100%;
    flex-direction: column;
    text-align: center;
}

footer section ul {
    list-style-type: none;
    text-align: center;
} 

footer section ul li  {
    display: inline;
}

footer section ul li a {
    text-decoration: none;
}

/* Fin de la vue portable */
/* Ecran d'au moins 1024px de largeur */
@media screen and (min-width:1024px) {
    :root {
        font-size: 16px;
    }

    /* Header */
    header nav {
        padding: 1rem;
    }
    
    .navbar-nav .nav-link {
        background-color: transparent;
        /* color: white; */
    }

    footer h1 {
        margin: 15px;
    }
}
/* fin de la vue ordinateur */