/* ################### */
/* Global */
/* ################### */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  list-style: none;
  outline: none;
  border:none;
  scroll-behavior: smooth;
  overflow-y: auto;
  overflow-x: hidden;
}

:root {
  --accent: #E27406;
  --accent2: #891E0C;
  --bg: #FED287;
  --text: #333;
  --light: #fff;
}

body{
  font-family: Poppins;
}

 *::-webkit-scrollbar{
  width: 0.1rem;
 }

*::-webkit-scrollbar-thumb{
  background-color: red;
  border-radius: 0.1rem;
  cursor: pointer;
  -webkit-border-radius: 0.1rem;
  -moz-border-radius: 0.1rem;
  -ms-border-radius: 0.1rem;
  -o-border-radius: 0.1rem;
}

*::-webkit-scrollbar-track{
  background-color: var(--text);
  cursor: pointer;
} 

section {
  width: 100vw;
  height: 100vh;
  padding: 0px 10%;
  margin-top:0px;
  overflow: hidden;
}  

.souligne{
  font-weight: bold;
}

.btn {
  border-radius: 7px;
  padding: 5px 8px;
  background: var(--accent2);
  transition: background .2s ease-in-out;
  cursor:pointer;
  width: 225px;
}

.btn-bouton{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap:20px;
}

button{
  border-radius: 7px;
  padding: 5px 8px;
  background: var(--accent2);
  transition: background .2s ease-in-out;
  color:var(--light);
  cursor:pointer;
  width: 200px;
  text-align: center;
}

button:hover{
   background: var(--accent);
  transition: background .2s ease-in-out;
  color:var(--light);
}

 .btn a{
  width: 100%;
  color: var(--light);
  text-align: center;
} 

.btn:hover {
  background: var(--accent);
}

.titre {
  text-align: center;
  font-size: calc(0.7rem + 1.2vw);
  font-weight: 600;
  overflow: hidden;
}

/* ################### */
/*  chargement loader*/
/* ################### */

.chargement{
  width: 100%;
  height: 100%;
  position:fixed;
  top:0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 1; 
  background-color: #090909;
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.chargement.active {
  opacity: 0; 
 display: none;
}

.lettre  {
  color:white;
  font-size: 60px;
  font-weight:800;
  margin-top:40px;
 animation: eclair 1.4s linear infinite;
}

@keyframes eclair {
 0%{
    color:var(--bg);
 }
 90%{
    color:var(--light)
 }
 100%{
    color:var(--bg)
 }
}
  
.lettre:nth-child(1){
  animation-delay: 0.1s ;
}
.lettre:nth-child(2){
  animation-delay: 0.2s ;
}
.lettre:nth-child(3){
  animation-delay: 0.3s ;
}
.lettre:nth-child(4){
  animation-delay: 0.4s ;
}
.lettre:nth-child(5){
  animation-delay: 0.5s ;
}
.lettre:nth-child(6){
  animation-delay: 0.6s ;
}
.lettre:nth-child(7){
  animation-delay: 0.7s ;
}
.lettre:nth-child(8){
  animation-delay: 0.8s ;
}
.lettre:nth-child(9){
  animation-delay: 0.9s ;
}
.lettre:nth-child(10){
  animation-delay: 1s ;
}

/* menu contextuel*/

.custom-menu {
  display: none; 
  width: 200px;
  height: auto;
  background: #111;
  box-shadow: 0 5px 15px #111;
  position: fixed;
   z-index: 1500;
}

.custom-menu .btn-button {
  width: 100%;
  text-align: left;
  background-color: #111;
  color: #e7e7e7;
  font-size: 20px;
  padding: 6px 12px;
  cursor: pointer;
}

.custom-menu .btn-button:hover {
  background-color: #1d73cf;
}

/* ################### */
/*  nav*/
/* ################### */

nav{
    width: 100vw;
    height: 60px;
    background-color:whitesmoke;
    position:fixed;
    top:0;
    left: 0;
    height: 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: calc(0.5rem + .8vw);
    font-weight: 500;
    z-index: 1000;
    box-shadow: inset 0px -2px 0px var(--accent);
}

/* nouveau burger*/

.btn-btn-burger {
  background: transparent;
  position: absolute; 
  top: 2px;
  right: 10px; 
  border: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

.spin-container {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  transition: transform 0.6s ease-in-out;
}

.spin-container.active {
  transform: rotateY(180deg);
}

.front, .back {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
}

.front {
  background: var(--accent2);
  color: black;
}

.back {
  color: white;
}

.back.active{
  background: var(--accent);
  backface-visibility: visible;
  transition:transform 0.6s ease-in-out;
   transform: rotateY(180deg); 
}

.bar {
  width: 50%;
  height: 2px;
  background:white;
  border-radius: 10px;
  position: absolute;
  left: 3px;
  top: 22px;
  transform: translateX(10px);
}
.b1 {
  transform: translate(10px, -6px);
}

.b2 {
transform: translate(10px, 2px) ;
}

.b3 {
  transform: translate(10px, 10px);
}

.backb1 {
  visibility: hidden;
}

.backb1.active{
  visibility: visible;
  transform: translate(10px, 0px) rotate(45deg);
}

.backb3 {
  visibility: hidden;
}

.backb3.active{
  visibility: visible;
  transform: translate(10px, 0px) rotate(-45deg);
}

 /* ancre gibier eau*/

.ancre1{
  width: 100vw;
  height: 55px;
  background: bisque;
  position:fixed;
  top:55px;
  left: 0;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: calc(0.5rem + .6vw);
  font-weight: 700;
  
}

.ancre1 a{
  background-color: inherit;
  color:#333;
  padding: 0px 4px;
}

.ancre1 a:hover{
  background-color: var(--accent);
  transition: background .4s ease-in-out;
  color: white;
  border-radius: 5px;
}

.logo{
  display: flex;
  flex-direction: row;
  justify-content: center; 
  align-items: center;
}

.logo img{
  width: 50px;
  height: 50px;
  border-radius: 60%;
  margin-right: 10px;
  margin-left: 10px;
  -webkit-border-radius: 60%;
  -moz-border-radius: 60%;
  -ms-border-radius: 60%;
  -o-border-radius: 60%;
}

 #burger menu{
   display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer; 
}

.chasse{
  font-size: calc(0.5rem + 0.8vw);
  font-weight: 700;
  margin-right: 15px;
}
/* ################### */
/* header*/
/* ################### */

 header{
  position:relative; 
  top:55px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  font-size: calc(0.5rem + 0.8vw);
  font-weight: 400;
} 

.video{
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  filter: brightness(80%);
  aspect-ratio: 1/1;
}

.video1,.video2{
  position: relative;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  filter: brightness(80%);
  aspect-ratio: 1/1;
}

.video3{
  position: relative;
  left: 0;
  top: 200%;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  /* object-position: ; */
  z-index: -1;
  filter: brightness(80%);
  aspect-ratio: 1/1; 
}

.tetefont {
  position: absolute;
  top:120px;
  right: 2%;
  color:var(--light);
  font-size: calc(0.5rem + 0.8vw);
}

.tetefont1 {
  width: 100%;
  position: relative;
  top:140px;
  right: 40px;
  color:var(--light);
  font-size: calc(0.5rem + 0.8vw);
  text-align: right;
}

@media(max-width:900px){
  .tetefont{
    top:70px;
  }
  .tetefont1{ 
    top:60px;
  } 
}

.section2{
  width: 100%;
  height: 100%;
  padding: 0px;
}

@media(max-width:900px){
.section2{
    margin-top: 0px;
  }
}

.menu{
  position:fixed;
  top:55px;
  left:-100%;
  background-color: whitesmoke;
  transition: 0.5s ease-in-out;
  font-size: 1.2rem;
  font-weight: 400;
  width: 50vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:10px;
  z-index: 3000;
}
 
.menu.active{
  left: 0px;
  transition: 0.5s ease-in-out;
}

@media(max-width:920px){
   .menu.active{
    width: 100vw;
    height: 100vh;
  }
}

@media(max-height:650px){
  .menu{
    display: none;
  }
}

 a{
  color:var(--text);
  padding:10px 5px 10px 10px;
  overflow:hidden ;
  cursor: pointer;
  width: auto;
 }

/* video*/

.yt-responsive{
  position:relative;
  top:0px;
  left:0px;
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr ;
  gap:20px;
  overflow-y:auto ;
}

.yt-responsive iframe{
  aspect-ratio : 16/9;
}

@media(max-width:900px){
  .yt-responsive{
      grid-template-columns: 1fr ;
    }
}

.photo {
  width: 1000px;
  height: auto;
  margin: 50px auto;
  display: flex;
  flex-direction: column;
}

@media (max-width:1000px) {
  .photo{
    width: 100%;
    overflow-y: auto;
  }
}

.bloc {
  width: 100%;
  height: 70px;
  padding: 3px;
  overflow: hidden;
  border-radius: 25px;
  background-image: repeating-linear-gradient(135deg, rgba(189,189,189,0.1) 0px, rgba(189,189,189,0.1) 2px,transparent 2px, transparent 4px),linear-gradient(90deg, rgb(255,255,255),rgb(255,255,255));
  position: relative;
  transition:0.4s ease-in-out ;
  -webkit-transition:0.4s ease-in-out ;
  -moz-transition:0.4s ease-in-out ;
  -ms-transition:0.4s ease-in-out ;
  -o-transition:0.4s ease-in-out ;
}

.bloc:hover{
  cursor: pointer;
 }

.bloc.active {
  height: 500px;
  transition: 0.4s ease-out;
  -webkit-transition: 0.4s ease-out;
  -moz-transition: 0.4s ease-out;
  -ms-transition: 0.4s ease-out;
  -o-transition: 0.4s ease-out;
}

.bloc.active:hover{
  cursor:auto;
}

.bloc * {
  pointer-events: none;
}
.bloc-haut {
  height: 70px;
   display: flex;
  align-items: center;
 }
 
.rond {
  margin-left: 20px;
  width: 50px;
  height: 50px;    
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #222, #333);
  border-radius: 50%;
}

.rond img {
  width: 50px;
   height: 50px; 
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.titre-section {
  margin: 0 25px;
  font-size: 1.5rem;
  font-weight: 700;
}

@media screen and (max-width: 800px){
  .titre-section{
    font-size: 1rem;
    font-weight: 600;
  }
 
.bloc.active{
  height: 565px;
}

}
.contenu {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  font-size: 1.1rem;
  }

.contenu img {
  width: 100%; 
  display: flex;
  align-items: center;
  height:100%;
  margin-right: 15px;
  margin-left: 15px;
  height: 420px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-boreder-radius: 50%;
  -o-border-radius: 20px;
}
 
img{
  object-fit: cover;
  object-position: center;
  filter:brightness(0.6);
  -webkit-filter:brightness(0.6);
}

.infos  {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 420px;
  overflow-y: auto;
}
.infos a{
  cursor: pointer;
  }

.infos h2 {
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.infos .bouttons{
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.infos .btn1{
  font-weight: 400;
  background: transparent;
  border: 1px solid #222;
  padding: 2px 2px;
  border-radius: 5px;
  font-size: 1rem;
  pointer-events: auto!important;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

@media (max-width:800px) {
  .contenu{
    width: 100%;
    flex-direction: column;
    justify-content: center;
    height:600px;
    
}
.contenu img{
  width: 60%;
  margin:0px auto;
}
.infos {
  justify-content: flex-start;
  width: 100%;
  word-wrap: break-word ;
  padding: 5px 5px;
  height: 600px;
}

.infos .bouttons{
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

}

@media (max-width:500px){
  .contenu img{
    width: 80%;
    margin:0 auto;
  }
}
/* footer*/

footer{
  margin-top:20px;
  background: #090909;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around; 
  padding: 10px 0px 10px 0px;
}

.img-footer{
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

