* {
    box-sizing: border-box;
}

body {
    background-color: rgb(255, 187, 0);
    position: relative;
}

.container {
    position: fixed;
    bottom: 1em;
    right: 1em;
}

.menu__toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #000000;
    box-shadow: 4px 4px 2px 1px rgb(0 0 0 / 20%);
    position: absolute;
    z-index: 5;
    bottom: 0;
    right: 0;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.menu__toggle span {
    color: #ffffff;
    font-size: 2em;
    transition: 0.4s;
}

.menu__toggle.open span {
    transform: rotate(135deg);
}

.menu__list {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    list-style: none;
    margin: 0;
}

.menu__list .menu__item {
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
    position: absolute;
    background-color: #000000;
    display: grid;
    place-items: center;
    bottom: 0.25em;
    right: 0.25em;
    transition: 0.4s;
}

.menu__list .menu__item a {
    color: #fff;
    text-decoration: none;
}

.menu__list.open .menu__item {
    box-shadow: 4px 4px 2px 1px rgba(0, 0, 0, 0.2);
}

.menu__list.open .menu__item:nth-of-type(1) {
    right: 0.5em;
    bottom: 4.25em;
    transition-delay: 0.2s;
}

.menu__list.open .menu__item:nth-of-type(2) {
    right: 3.5em;
    bottom: 3.5em;
    transition-delay: 0.1s;
}

.menu__list.open .menu__item:nth-of-type(3) {
    right: 4.25em;
    bottom: 0.5em;
}
/* DEBUT DE LA BARRE DE LUMIERE */

light
{
    width: 10%;
    height: 50vh;
    overflow: hidden;
    place-content: center;
}

nav {
    position: relative;
    border-radius: 10px;
    background: #000;
    box-shadow: 0 6.7px 5.3px rgb(0 0 0 / 12%);
    overflow: hidden;
    color: #fff;
}
nav a i {
    color: #ffffff; /* Gris */
}

/* Couleur pour l'icône de l'élément actif */
nav a.active i {
    color: #c99405; /* Bleu */
}
nav ul {
    height: 100%;
    display: grid;
    place-items: center;
    grid-template-columns: repeat(5, 1fr);
}

nav ul li {
    list-style: none;
    padding: 15px;
}

nav ul li a {
    cursor: pointer;
    font-size: 25px;
}

nav ul li a i {
    opacity: 0.4;
    transition: opacity 100ms ease;
}

nav ul li a.active i {
    opacity: 1;
}

nav .spotLight {
    position: absolute;
    left: 0px;
    top: 0px;
    transform: translateX(-50%);
    width: 45px;
    height: 5px;
    border-radius: 5px;
    background: #fff;
    transition: left 400ms ease;
    z-index: 10;
}

nav .lightRay {
    position: absolute;
    left: -30%;
    top: 5px;
    width: 160%;
    height: 80px;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.3) -50%,
            rgba(255, 255, 255, 0) 90%);
    clip-path: polygon(5% 100%, 25% 0px, 75% 0px, 95% 100%);
    pointer-events: none;
}
h1{
    font-family: "Rampart One", sans-serif;
    text-align: center;
    font-size: 3vw;
    background: linear-gradient(45deg, rgb(124, 30, 7), rgb(0, 0, 0)); /* Crée un dégradé de rouge à bleu */
    -webkit-background-clip: text;
    color: transparent;
}
.minititle
{
    font-family: "Nabla";
    text-align: center;
    font-family: "Mountains of Christmas", serif;
    background: linear-gradient(45deg, rgb(46, 14, 1), rgb(0, 0, 0)); /* Crée un dégradé de rouge à bleu */
    font-size: 2vw;
    -webkit-background-clip: text;
    color: transparent;
}
.prez
{
    border-radius: 0.5%;
    flex: 1;
    box-shadow: #000 0 0 10px;
    padding: 1%;
    font-size: 1vw;
    background-color: #ffe0a5;
}
.comp
{
    display: flex;
    justify-content: space-around; /* Cela crée un espace équitable autour des éléments */
    align-items: flex-start; /* Alignez les éléments en haut */
    flex-wrap: wrap;
    gap:1%;
}
.prez, .comp > div {
    flex-basis: 45%; /* Chaque div prendra environ 45% de la largeur du conteneur, s'adaptant à l'espace disponible */
    text-align: justify; /* Optionnel: pour justifier le texte à l'intérieur de chaque div */
}

.minititle2 {
    font-family: "Nabla";
    text-align: center;
    font-family: "Mountains of Christmas", serif;
    background: linear-gradient(45deg, rgb(46, 14, 1), rgb(0, 0, 0)); /* Crée un dégradé de rouge à bleu */
    font-size: 2vw;
    -webkit-background-clip: text;
    color: transparent;
}
.imgaccueil
{
    display: flex;
    justify-content: center; /* Centre les éléments horizontalement */
    align-items: center; /* Centre les éléments verticalement */
    flex-wrap: wrap;
}
.imgaccueil img
{
    margin: 2%;
    border-radius: 10%; /* Rend les images rondes */
    width: 8vw; /* Définir une largeur fixe pour les images */
    height: 8vw; /* Définir une hauteur fixe pour les images */
    object-fit: cover;
    box-shadow: #421a03 2px 2px 20px 5px;
    background-color: #000;
}
.imgcomp
{
    display: flex;
    justify-content: center; /* Centre les éléments horizontalement */
    align-items: center; /* Centre les éléments verticalement */
    flex-wrap: wrap;
}
.imgcomp img
{
    border-radius: 5%; /* Rend les images rondes */
    width: 46%; /* Définir une largeur fixe pour les images */
    object-fit: cover;
    box-shadow: #421a03 2px 2px 20px 5px;
}