@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Playfair+Display:ital@0;1&display=swap');

:root {
  --black-color: #000;
  --grey-color: #000000;
}

body{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #000000;
    background-color: var(--black-color);
    margin:0;
    padding:0;
  }
  *, *::after, *::before {
      box-sizing: border-box;
  }
  body, html {
    cursor: url(/assets/images/cursor/icon_cursor_pink.png), default!important;
    scroll-behavior: smooth;
  }
  body a {
    cursor: url(/assets/images/cursor/icon_cursor_pointer_netmag.png), pointer !important;
  }
  a {
    cursor: url("/assets/images/cursor/icon_cursor_pointer_netmag.png") 16 16, auto !important;
  }

  *[href] {
      cursor: url("/assets/images/cursor/icon_cursor_pointer_netmag.png") 16 16, auto !important;
  }


  main{
    display: flex;
    flex-direction: column;
  }

/*----- SCROLLBAR STYLE -----*/
.scrollbar ::-webkit-scrollbar
{
	width: 10px ;
	background-color: var(--black-color);
}

.scrollbar ::-webkit-scrollbar-thumb
{
	background-color: #fcf5ac;
}

.scrollbar {
	scrollbar-color: #fcf5ac #252525;
	scrollbar-width: thin;
}



  /*----- NAVBAR -----*/
  .navbar{
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    z-index: 10;
    background-color: transparent;
    transition: background-color 0.5s ease-in-out;
  }
  .logo_main img{
    width: 140px;
    display: block;
  }
  .nav-active{
    background-color: var(--black-color)
  }
  .nav_social{
    display: flex;
    flex-direction: row;
  }
  .nav_social-active{
    background-color: #fcf5ac;
    color: #000000;
  }
  .nav_social a{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 90px;
    background: transparent;
    color: #FFF;
    border:1px solid #FFF;
    width: 38px;
    height: 38px;
    margin: 0 4px;
    font-size: 22px;
  }
  .nav_social a:hover{
    background-color: #fcf5ac;
    color: #000;
  }

  /*----- MENU -----*/
  .menu-desktop{
    visibility: visible;
    opacity: 1;
  }
  .menu-desktop a{
    font-size: 26px;
    color: #FFF;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    padding:0 10px;
    height: 100%;
    transition: 0.4s ease-in-out;
  }
  .menu-desktop a:hover{
    color: #fcf5ac;
  }
  @media (max-width: 1024px){
    .menu-desktop {
      visibility: hidden;
      opacity: 0;
      transition: visibility 0s, opacity 0.4s linear;
    }
    .menu-desktop a{
      padding:0;
    }
  }
  /*MAX 390PX*/
  @media (max-width: 760px){
    .menu-desktop {
      display: none;
    }
  }
  
/*----- HEADER -----*/
header{
  position: relative;
  display: flex;
  height: 70vh;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: height 1s ease; 
  -moz-transition: height 1s ease; 
  -ms-transition: height 1s ease; 
  -o-transition: height 1s ease; 
  transition: height 1s ease; 
}
.video_background{
  object-fit: cover;
  width: 100%;
  max-height: 100%;
}
header h2{
  position: absolute;
  left: 50%;
  top: 40%;
  width: 70%;
  font-size: 9vh;
  font-weight: 600;
  line-height: 8vh;
  color:#FFF;
  transform: translate(-50%,-50%);
  mix-blend-mode: overlay;
}
.scroll-down-cursor {
  cursor: pointer;
  text-decoration: none;
  position: absolute;
  transform: translate(-50%);
  left: 50%;
  bottom: 24%;
  display: none;
}
.scroll-down-cursor .border {
  height: 57px;
  width: 34px;
  border: 2px solid #fcf5ac;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
}
.scroll-down-cursor .cursor {
  height: 30px;
  stroke: #fcf5ac;
  animation: arrow-scroll 1.7s infinite ease;
}
@keyframes arrow-scroll {
  0% {
      transform: translateY(8px)
  }

  50% {
      transform: translateY(-9px)
  }

  55% {
      transform: translateY(-9px)
  }

  to {
      transform: translateY(8px)
  }
}
.btn-rdv-abs{
  position: absolute;
  right: 6vw;
  bottom: 4vw;
}
.btn-prendrerdv{
  display: flex;
  padding: 1vw 1.4vw;
  background-color: #000;
  text-decoration: none;
  margin-top: 2vw;
  align-items: center;
  color: #FFF;
  font-size: 1.6vw;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  box-shadow: 8px 8px 0 #fcf5ac;
  border: 1px #fcf5ac;
  border-style: dotted;
  opacity: 1;
  z-index: 99;
  transition: all 0.4s ease;
}
.btn-prendrerdv:hover{
  box-shadow: 14px 14px 0 #fb9da5;
}
.btn-rdvbarber{
  display: flex;
  padding: 1.4vw;
  background-color: #fcf5ac;
  text-decoration: none;
  margin-top: 2vw;
  color: #000;
  font-size: 2vw;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  box-shadow: 8px 8px 0 #000;
  border: 1px #000;
  border-style: dotted;
  opacity: 1;
  z-index: 99;
  transition: all 0.4s ease;
}
.btn-rdvbarber:hover{
  box-shadow: 14px 14px 0 #fb9da5;
  background-color: #fcf5ac;
  color: #000;
}
.btn-rdvtattoo{
  display: flex;
  padding: 1.4vw;
  background-color: #000;
  text-decoration: none;
  margin-top: 2vw;
  color: #FFF;
  font-size: 2vw;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  box-shadow: 8px 8px 0 #fcf5ac;
  border: 1px #fcf5ac;
  border-style: dotted;
  opacity: 1;
  z-index: 99;
  transition: all 0.4s ease;
}
.btn-rdvtattoo:hover{
  box-shadow: 14px 14px 0 #fb9da5;
  background-color: #fcf5ac;
  color: #000;
}
.btn-prendrerdv svg, .btn-rdvtattoo svg, .btn-rdvbarber svg{
  display: block;
  margin-left:20px;
  animation: arrow-btn 1.7s infinite ease;
}
@keyframes arrow-btn {
  0% {
      transform: translateX(6px)
  }

  50% {
      transform: translateX(-8px)
  }

  55% {
      transform: translateX(-8px)
  }

  to {
      transform: translateX(6px)
  }
}
@media (max-width: 920px){
  header{
    height: 100vh;
  }
  header h2{
    position: absolute;
    left: 50%;
    top: 7%;
    width: 90%;
    font-size: 6vh;
    line-height: 6vh;
    transform: translate(-50%);
    mix-blend-mode: overlay;
  }
  .scroll-down-cursor {
    display: block;
  }
  .btn-prendrerdv{
    opacity: 0;
    transition: opacity 0.6s ease;
  }
}

/*----- SECTION INTRO -----*/
.section_intro{
  background-color: #252525;
  justify-content: flex-start;
  padding: 0;
  z-index: 9;
}
.intro-container{
  width: 100%;
  display: flex;
  flex-direction: row;
}
.intro-img{
  width: 50vw;
  height: 40vw;
  background-image: url(../images/bg_001.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  order: 1;
  background-color: #e9e9e9;
}
.intro-content{
  color: #FFF;
  position: relative;
  padding: 5vw 4vw;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  font-weight: 300;
  width: 50vw;
  line-height: 24px;
  background-color: #f5ef81;
  opacity: 1;
  background-image:  linear-gradient(#dbd591 1.5px, transparent 1.5px), linear-gradient(to right, #dbd591 1.5px, #fcf5ac 1.5px);
  background-size: 30px 30px;
}
.intro-content h2{
  position: absolute;
  top: -8vw;
  left: 4vw;
  display: block;
  font-size: 14vw;
  color: #fcf5ac;
  font-weight: 400;
  letter-spacing: -1.4vw;
  font-weight: 800;
  z-index: 1000;
  mix-blend-mode: difference;
}
.intro-content p{
  color: #000000;
  display: block;
  font-size: 3.8vw;
  line-height: 3vw;
  text-align: left;
  margin-top: 9vw;
  margin-bottom: 10%;
}
.ic-adress{
 display: flex;
 flex-direction: row;
 align-items: center;
}
.ic-adress svg{
 color: #000;
 height: 5vh;
 width: 3vw;
 margin-right: 1vw;
 }
.ica-content{
  display: flex;
  flex-direction: column;
  color:#000;
  font-size: 1.8vw;
  line-height: 2vw;
  text-align: left;
}
@media (max-width: 920px){
  .intro-container{
    flex-direction: column;
  }
  .intro-content, .intro-img{
    width: 100%;
  }
  .intro-content h2{
    font-size: 20vw;
  }
}


/*----- SECTION TATTOO -----*/
.section_tattoo{
  background-color: #252525;
  justify-content: flex-start;
  padding: 0;
  z-index: 9;
}
.tattoo-container{
  width: 100%;
  height: 36vw;
  display: flex;
  flex-direction: row;
}
.tattoo-img{
  width: 40vw;
  background-color: #636363;
}
.tattoo-content{
  color: #FFF;
  position: relative;
  padding: 2vw 7vw;
  display: flex;
  flex-direction: column;
  font-size: 20px;
  text-align: center;
  align-items: center;
  font-weight: 300;
  width: 60vw;
  line-height: 24px;
  background-color: #000000;
}
.tattoo-content h2{
  display: block;
  font-size: 13vw;
  color: #fcf5ac;
  margin: 0;
  position: absolute;
  left: 20px;
  letter-spacing: -1vw;
  font-weight: 900;
  top: 3vw;
  z-index: 1000;
  mix-blend-mode: difference;
}
.tattoo-content p{
  color: #fcf5ac;
  display: block;
  font-size: 1.6vw;
  line-height: normal;
  text-align: left;
  margin-top: 10vw;
}
.owl-carousel, .owl-stage-outer {
  height:100%;
}
@media (max-width: 920px){
  .tattoo-container{
    flex-direction: column;
  }
  .tattoo-content{
    width: 100%;
  }
  .tattoo-img{
    width: 100%;
    height: 120vw;
    order: 1;
  }
  .tattoo-content h2{
    font-size: 20vw;
  }
}


/*----- SECTION BARBER -----*/
.section_barber{
  display: flex;
  background-color: #252525;
  justify-content: flex-start;
  padding: 0;
  z-index: 9;
}
.barber-container{
  width: 100%;
  height: 80vh;
  display: flex;
  flex-direction: row;
}
.barber-img{
  width: 40%;
  background-color: #636363;
}
.barber-content{
  color: #FFF;
  position: relative;
  padding: 2vw 7vw;
  display: flex;
  flex-direction: column;
  font-size: 20px;
  text-align: center;
  align-items: center;
  font-weight: 300;
  width: 60vw;
  line-height: 24px;
  background-color: #fcf5ac;
}
.barber-content h2{
  position: absolute;
  margin: 0;
  top: -1.7vw;
  display:
  flex;
  font-size: 12vw;
  color: #fcf5ac;
  letter-spacing: -1.4vw;
  line-height: 10vw;
  font-weight: 800;
  z-index: 1000;
  mix-blend-mode: difference;
}
.barber-content p{
  color: #000;
  display: block;
  font-size: 1.6vw;
  line-height: normal;
  text-align: left;
  margin-top: 10vw;
}
@media (max-width: 920px){
  .barber-container{
    flex-direction: column;
  }
  .barber-content{
    width: 100%;
  }
  .barber-img{
    width: 100%;
    height: 120vw;
    order: 1;
  }
  
  .barber-content h2{
    font-size: 20vw;
  }
}



/*----- MENU MOBILE -----*/
.menu_mobile{
 display: none;
}

.btn_menuMobile{
  width: 100%;
  display: flex;
  position: fixed;
  bottom:-260px;
  left: 0;
  z-index: 1999;
  visibility: hidden;
  border-top: 1px solid #fcf5ac;
  opacity: 0;
  transition: all 1s ease;
}
.btn_menuMobile a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding:16px 0;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.6s ease;
  cursor: pointer;
}
.btn228{
  background-color: #000000;
  color:#fcf5ac;
  border-right: 1px solid #fcf5ac;
}
.btn229{
  background-color: #000000;
  color:#FFF;
}
.btn228:hover, .btn229:hover{
  background-color: #fcf5ac;
  color:#252525;
}

@media (max-width: 1024px){
  .btn_menuMobile{
    bottom:-1px;
    left:0;
    width:100%;
    visibility: visible;
    opacity: 1;
  }
}
/*----- MENU MOBILE -----*/
.menu_mobile {
  position: fixed;
  transform: translateY(110%);
  transition: transform 0.8s ease-in-out;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  right: 0;
  bottom: 0;
  z-index: 98;
  background: #000000;
  color: #ffffff;
  list-style: none;
  padding-top: 0;
}
.show_menu_mobile {
  transform: translateY(0);
}
.menu_mobile ul{
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.menu_mobile ul li{
  font-size: 5vh;
}
.menu_mobile_item a{
  display: flex;
  align-items: center;
  padding: 19px 10px;
  font-size: 12vw;
  letter-spacing: -1vw;
  text-decoration: none;
  font-weight: 700;
  color: #FFF;
}
.menu_mobile_item a:hover{
  background: #fcf5ac;
  color: #000;
  transition: 300ms linear;
}
.close_menu{
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
  padding:20px;
  color: #FFF;
  cursor: pointer;
}
.close_menu:hover{
  color: #cbc77f;
}
.close_menu svg{
  width: 40px;
  height: 40px;
}

/*----- FOOTER -----*/
footer{
  display: flex;
  background:#000;
  padding: 6vw 0;
  align-items: center;
  justify-content: center;
}
footer img{
  width: 8vw;
}
.footer-adress{
  display: flex;
  flex-direction: column;
  color:#FFF;
  border-left: 1px solid #dbd591;
  padding:0 20px;
  margin-left:20px;
  line-height: 1vw;
  font-size: 0.8vw;
  font-weight: 100;
}
.footer-adress a{
  color: #FFF;
  text-decoration: none;
}



/*----- MEDIA QUERIES -----*/
/*MAX 1530PX*/
@media (max-width: 1530px){

}
/*MAX 920PX*/
@media (max-width: 920px){
  .intro-container{
    flex-direction: column;
  }
  .intro-content{
    padding: 20vw 6vw;
    order: 2;
  }
  .intro-content, .intro-img{
    width: 100%;
  }
  .intro-content h2{
    font-size: 24vw;
    top: -17vw;
    left: 5vw;
  }
  .intro-content p {
    color: #000000;
    display: block;
    font-size: 7.8vw;
    line-height: 8vw;
    text-align: left;
    margin-top: 13vw;
    margin-bottom: 15vw;
  }
  .ic-adress svg {
    color: #000;
    height: 7vh;
    width: 8vw;
    margin-right: 2vw;
  }
  .ica-content {
    display: flex;
    flex-direction: column;
    color: #000;
    font-size: 5vw;
    line-height: 5.4vw;
    text-align: left;
  }
  .intro-img{
    height: 100vw;
  }
  .tattoo-container, .barber-container{
    height: 100%;
  }
  .tattoo-content, .barber-content{
    padding: 14vw 7vw;
    order: 2;
  }
  .tattoo-content p, .barber-content p{
    font-size: 5vw;
    margin: 20vw 0;
  }
  .btn-rdvtattoo, .btn-rdvbarber{
    font-size: 5vw;
    padding: 4.4vw;
    margin-top: 4vw;
  }
  footer{
    margin-bottom: 70px;
  }
  footer img{
    width: 17vw;
  }
  .footer-adress{
    display: flex;
    flex-direction: column;
    color:#FFF;
    border-left: 1px solid #dbd591;
    padding:0 20px;
    margin-left:20px;
    line-height: 3.6vw;
    font-size: 3vw;
    font-weight: 100;
  }
}
/*MAX 390PX*/
@media (max-width: 390px){

}


/*------ MODAL RDV ------*/
.show_modal{
  opacity: 1;
  visibility: visible!important;
}
#animatedModal{
  background-color: rgb(0 0 0 / 90%)!important;
}
.modal-content{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90vh;
}
.close-animatedModal{
  color: #ccc880;
  align-items: center;
  display: flex;
  position: absolute;
  font-weight: 600;
  right: 20px;
  padding: 0.3vw;
  top:20px;
  font-size: 28px;
}
.close-animatedModal svg{
  width: 60px;
  height: 60px;
}
.modal-rdv-container{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 0.2vw;
  margin-bottom: 20px;
  background: #ccc87f;
  box-shadow: 14px 14px 0px #ccc880;
  border: 3px dotted #cbc77f;
}
.rdv-tattoo, .rdv-barber{
  padding:2vw;
}
.rdv-tattoo{
  background: #000000;
  padding: 2vw;
}
.rdv-barber{
  background: #000000;
  padding: 2vw;
}
.rdv-tattoo ul, .rdv-barber ul{
  list-style: none;
  padding:0;
  margin: 0;
}
.mrdv-title{
  font-size: 6vw;
  font-weight: 600;
  letter-spacing: -4px;
  color: white;
  text-shadow: 4px 4px 0px #fb9da5;
}
.modal-rdv-container a{
  font-weight: 400;
  text-decoration: none;
}
.modal-rdv-links a{
  font-size: 2vw;
  color:#f5ef81;
  cursor: pointer;
}
.modal-rdv-links a:hover{
  color:#fb9da5;
}
@media (max-width: 920px){
  .modal-rdv-container{
    flex-direction: column;
    display: flex;
    gap:1vw;
  }
  .rdv-tattoo, .rdv-barber{
    padding:2vw;
  }
  .mrdv-title{
    font-size: 10vw;
  }
  .rdv-tattoo, .rdv-barber {
    background: #000000;
    padding: 6vw;
  }
  .modal-rdv-links a {
    font-size: 6vw;
    color: #FFF;
  }
}