@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&display=swap');

/* UTILS */

::selection {
  background-color: #ffe65b79;
}

::-webkit-scrollbar {
  width : 4px;
  height: 11px;
  display: none;
}

::-webkit-scrollbar-thumb {
  background   : #BCAA44;
  border-radius: 30px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-track {
  background   : #2B2320;
  border-radius: 0px;
}

/* HTML */

html{
  background: #2B2320;
  scroll-behavior: smooth;
}

/* BODY */

body{
  margin:0;
  opacity: 0;
    transition: opacity 5s;
}

/* HEADER */

.header {
  padding: 10px 16px;
  color: #f1f1f1;
  z-index: 999;
}

.header img.logo{
  width:6vw;
  filter: drop-shadow(0 0 0.3vw #BCAA44);
}

.header_container{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.nav{
  margin-top:-20px;
  margin-right:20px;
  display:flex;
  list-style:none;
  font-size:0.9vw;
  font-weight:bold;
  gap:1.3em;
}

.nav_items a{
  font-family: "Cinzel", sans-serif;
  color:white;
  text-decoration:none;
  transition:opacity 0.5s;
}

.nav_items a:hover{
  opacity:0.5;
}

.join_option a{
  color:#BCAA44;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.sticky + .main {
  padding-top: 102px;
}

/* MAIN */

  .main{
    z-index: 0;
  }

  .home_section{
    margin-top:-5em;
    width:99vw;
    height:98vh;
    position:relative;
  }

  #homeSection{
    transform:scale(0.7);
      transition: transform 2s;
  }

  .background_images{
    height:100%;
    width:100%;
    position:relative;
    transform: scale(0.5);
  }

  .background_images img{
    width:19vw;
    opacity:0.5;
    position:absolute;
    filter: brightness(70%) drop-shadow(0 0 0.75vw black);
  }

  .main_pic_container{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:90%;
    display:flex;
    justify-content:center;
    align-items:center;
  }

  .main_pic{
    filter: drop-shadow(0 0 0.75vw rgba(188,170,68, 0.8));
    width:50vw;
  }

  .discord_icon{
    position:absolute;
    bottom:5vw;
    right:20vw;
    opacity:0.5;
    transition:opacity 0.5s, filter 0.5s;
  }

  .discord_icon:hover{
    opacity:0.9;
    filter: drop-shadow(0 0 0.75vw rgba(188,170,68, 0.8));
  }

  .horizontal_divider_container{
    display: flex;
    justify-content: center;
    align-items: center;
    height:10vh;
  }

  .horizontal_divider{
    fill: #b09e3c;
    opacity: 0.8;
    width:50vw;
  }

  .who_are_we{
    width:99vw;
    display: flex;
    justify-content:space-evenly;
    font-family: "Cinzel", sans-serif;
    align-items:center;
    position: relative;
  }

  .who_are_we .background{
    background-image: url("http://cdn.blackwell-university.fr/site/2024-06-25_21.33.29.png");
    background-size: cover;
    -webkit-mask-image:-webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0)), to(rgba(0,0,0,2)));
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,2));
    background-position: center;
    height: 100vh;
    width: 70%;
  }

  .who_are_we .divider{
    width:1.5vw;
    height:100%;
    background:#2B2320;
    position:absolute;
    top:0;
    left:62%;
    transform: translateX(-50%);
  }

  .who_are_we .text{
    width: 30%;
    padding:3vw;
    font-size: 1.1vw;
  }

  .who_are_we .text p{
    color:white;
    text-align: right;
  }

  .who_are_we .text h1, .title{
    color: #795b00;
    font-weight: bold;
    font-size: 2.2vw;
    padding-bottom:0.9vw;
    text-align: center;
    text-shadow: 2px 0 0 #b09e3c, -2px 0 0 #b09e3c, 0 2px 0 #b09e3c, 0 -2px 0 #b09e3c, 1px 1px #b09e3c, -1px -1px 0 #b09e3c, 1px -1px 0 #b09e3c, -1px 1px 0 #b09e3c;
  }

  .who_are_we .text h1:after, .title:after{
    content:" ---";
    color: #795b00;
    font-weight: bold;
    font-size: 2.2vw;
  }

  .who_are_we .text h1::before, .title::before{
    content:"--- ";
    color: #795b00;
    font-weight: bold;
    font-size: 2.2vw;
  }

  /* INFORMATIONS */

    .information{
      padding-top: 5vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      font-family: "Cinzel", sans-serif;
      transform: scale(1);
      background-color: black;
      position: relative;
      border-top: #b09e3c solid 4px;
      padding-bottom: 100px;
    }

    .information::after{
      content: "";
      position: absolute;
      top: 2vh;
      left: 0;
      width: 100vw;
      height: 2vh;
      background-color: #2B2320;
      border-top: #b09e3c solid 4px;
      border-bottom: #b09e3c solid 4px;
      z-index: -1;
    }

    .information p{
      color:white;
      font-weight: bold;
      font-size: 1.1vw;
      text-align: center;
    }

    .information .textContainer{
      display: flex;
      flex-direction: column;
      width: 70%;
    }

    .information .textContainer a::selection {
	background-color: black;
	color:black;
    }



    .information > div > ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: row;
      justify-content: space-evenly;
      align-items: center;
      gap: 1vw;
    }

    .information li > iframe{
      width:30vw;
      height:20vw;
    }

    .information .horizontal_divider{
      width: 20vw;
    }

    .information div a > img{
      width:50vw;
    }

    .flex_wrap{
      flex-wrap: wrap;
    }

    .trailer_container{
      width: 80%;
      height:700px;
      margin-bottom: 200px;
    }

    .trailer_container iframe{
      width: 100%;
      height: 100%;
    }

    .spoilers_list{
      display: flex;
      flex-direction: row;
      justify-content: space-around !important;
      align-items: flex-start !important;
      width: 85%;
      height: 100%;
      padding: 0;
      margin: 0;
      font-family: "Cinzel", sans-serif;
      font-size: 1.1vw;
      color: white;
      margin-bottom: 30px;
    }

    .spoilers_list .spoiler{
      display: flex;
      flex-direction: column;
      padding: 0;
      margin: 0;
      font-family: "Cinzel", sans-serif;
      width: 25%;
      font-size: 1.1vw;
      color: white;
      background-color: black;
      padding: 1vw;
      padding-top:0;
      border-left: solid 4px;
      border-color: #2B2320;
      border-radius: 5px;
      background-color: #2B2320;
      opacity: 0.5;
      transition: opacity 0.5s, border-color 0.5s;
    }

    .spoilers_list .spoiler:hover{
      opacity: 1;
      border-color: #b09e3c;
    }

    .spoiler h2{
      font-size: 1.2vw;
      border-bottom: #b09e3c solid 3px;
      padding-bottom: 6px;
      border-radius: 5px;
    }

    .spoiler h3{
      font-size: .8vw;
      padding:0;
      margin-top: 0;
      font-style: italic;
    }

    .spoiler p{
      font-size: 0.7vw;
      padding:0;
      margin-top: 0;
      text-align: justify;
    }

    .spoiler img{
      width: 100%;
    }

  .center_flex_container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  /* FOOTER */

  footer{
    background-color: black;
    color: white;
    padding: 30px;
    font-size:10px;
    font-family: "Cinzel", sans-serif;
  }

  /* BENE BEHAVIOUR */

    .bene{
      position: absolute;
      bottom: 1vw;
      width: 3vw;
      right: 1vw;
    }

    .bene svg path{
      opacity: 0.05;
      fill: #b09e3c;
      transition: opacity 0.5s ease-in-out, fill 0.5s ease-in-out;
    }

    .bene a:hover svg path{
      opacity: 0.7;
      fill: #970707;
    }

    .bene{
      animation: glitch 1s linear infinite;
    }

  /* ANIMATIONS */

    @keyframes glitch{
      2%,64%{
        transform: translate(2px,0) skew(0deg);
      }
      4%,60%{
        transform: translate(-2px,0) skew(0deg);
      }
      62%{
        transform: translate(0,0) skew(5deg); 
      }
    }



    /* RULES LIST */

    .rules_container{
      border: 3px solid #b09e3c;
      outline:3px solid #b09e3c ;
      outline-offset: 10px;
      color:white;
      font-family: "Cinzel", sans-serif;
      display: flex;
      flex-direction: column;
      padding: 30px ;
      width: 50vw;
      margin: auto auto;
      margin-bottom: 20px;
    }

    .rules_container h3{
      text-decoration: underline;
    }

    .rules_container .horizontal_divider_container{
      width:30vw;
      margin: auto auto;
    }

    /* WhoAreWe Page */

    .faq-left-section{
      display: flex;
      flex-direction: row;
      justify-content: space-around;
      align-items: flex-start;
      width: 70%;
      color: white;
      font-family: "Cinzel", sans-serif;
      font-size: 1.1vw;
      margin: 0 auto;
    }

    .faq-right-section{
      display: flex;
      flex-direction: row;
      justify-content: space-around;
      align-items: flex-start;
      width: 70%;
      color: white;
      font-family: "Cinzel", sans-serif;
      font-size: 1.1vw;
      margin: 0 auto;
    }

    .faq-text-container{
      width: 40%;
    }