
* {
  color: white;
  font-family: "Playfair Display", serif;
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
}

html
{
  scroll-behavior: smooth;
}

body {
  background-color: #222222;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x:hidden;
}

header {
  width: 100vw;
  background-image: url("images/header.png");
  background-size: cover;
  background-position: center;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 80px;
  text-align: center;
}

header h1 {
  width: 700px;
}

#logoResponsive, #burgerMenu
{
  display:none;
}

nav {
  display: flex;
  flex-direction: row;
  width: 100vw;
  position: fixed;
  top: 0;
  justify-content: space-between;
  align-items: center;
  background-color: #222222;
  padding: 10px;
  z-index: 9999;
}

nav div {
  display: flex;
  width: fit-content;
  flex-direction: row;
}

nav div ul {
  display: flex;
  width: fit-content;
  flex-direction: row;
  gap: 2vw;
  align-items: center;
  font-weight: bold;
}

nav div ul li {
  font-size: 16px;
}

nav div ul li:hover {
  color: #B1B1B1;
}

#logo {
  margin-right: 20px;
}

#navdroite {
  display: flex;
  align-items: center;
  font-weight: bold;
  padding-right: 50px;
  gap: 3vw;
}

#navdroite p:hover {
  color: #B1B1B1;
}


.bouton {
  all: unset;
  background-color: #BA9A3B;
  display: flex;
  outline: 0;
  padding: 15px 50px;
  font-weight: bold;
  transform: scale(1);
  transition: transform 0.4s ease;
  cursor: pointer;
  font-size:1vw;
}

.bouton:hover {
  transform: scale(1.06);
}

#titreDetail {
  color: #BA9A3B;
}

#titre {
  font-size: 40px;
}

#boutonHeader {
  background-color: white;
  color: black;
}

#quiSN {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #191919;
  padding-top: 90px;
  padding-bottom: 90px;
  gap: 100px;
  width: 100%;
}

#titreSN {
  font-size: 40px;
}

#SN {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4vw;
  padding-left:10vw;
  padding-right:10vw;
}

#texteSN {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
}

#texteSN p {
  font-size: 20px;

}

#imageSN {
  width: 20%;
  height: 100%;
  display: flex;
  justify-content: left;
  #NP 
  padding-left: 100px;
}

#imageSN img {
  width: 100%;
}

#NP {
  display: flex;
  flex-direction: column;
  padding-top: 90px;
  padding-bottom: 90px;
  gap: 12vw;
  align-items: center;
}

#NPtitre {
  font-size: 40px;
}

#NPcartes {
  display: flex;
  flex-direction: row;
  gap:4vw;
}

.carte {
  display: flex;
  flex-direction: column;
  gap: 60px;
  transition: transform 0.3s ease;
}


.carte:hover {
  transform: translateY(-20px);
}

.carte img {
  height: 5vw;
}

.carte p {
  font-weight: bold;
  font-size: 1.5vw;
  text-align: center;
}


#R {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #191919;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 150px;
}

#R h2 {
  font-size: 40px;
}

#Rbox {
  outline: 1px solid #BA9A3B;
  width: 70vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  background-color: #222222;
  gap: 50px;
}

#Rprestation {
  background-color: white;
  color: #545454;
  font-weight: bold;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 15px;
  width: fit-content;
  gap: 30px;
  justify-content: center;
  outline: none;
  border: none;
  font-size: 16px;
  width:40%;
}

#Rprestation option {
  color: #545454;
}

#rbouton {
  padding: 15px 70px;
}

#contactTitre {
  font-size: 40px;
  color: #BA9A3B;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 90px;
  gap: 5vh;
}

#contactCoordo {
  display: flex;
  flex-direction: column;
  gap: 2vh;
}

#contactTrucs {
  display: flex;
  flex-direction: row;
  gap: 2vw;
}

/* === ANIMATIONS SCROLL === */

.reveal {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-bas {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.reveal-bas.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-haut {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.reveal-haut.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === SLIDE REVEAL (QUI SOMMES NOUS) === */

#texteSN,
#imageSN {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

#texteSN.visible,
#imageSN.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1000px)
{
  nav
  {
    padding-left:60px;
    padding-right:0px;
  }

  #logoResponsive
  {
    display:flex;
    align-items:center;
  }

  #logoResponsive img 
  {
    width:15vw;
  }

  #Rprestation
  {
    border-radius:0;
    padding-left:35px;
    padding-right:35px;
  }

  #burgerMenu img
  {
    width:20vw;
  }

  #navdroite,#burgerMenu,#logoResponsive
  {
    flex:1;
  }

  #navGauche
  {
    display:none;
  }

  #contact 
  {
    display:none;
  }

  #logoResponsive, #burgerMenu
  {
    display:inline;
  }

  #burgerMenu img
  {
    width: 40px;
  }

  header
  {
    background-image: url("images/header2.png");
  }

  #titre
  {
    font-size:6vw;
    width:85vw;
  }

  #titreSN,#NPtitre,#titreReservation
  {
    font-size:6vw;
  }
  
  #NP 
  {
    width:80%;
  }


  #logoResponsive
  {
    display:flex;
    justify-content:center;
  }
  
  #navdroite 
  {
    display:flex;
    justify-content:right;
  }

  #SN 
  {
    padding-left:5vw;
    padding-right:5vw;
  }

  #texteSN
  {
    width:80vw;
  }

  #texteSN p
  {
    font-size: 3.7vw;
  }

  #imageSN 
  {
    display:none;
  } 


  .bouton 
  {
    text-align:center;
    width:20vw;
    font-size:3vw;
    display:flex;
    align-items:center;
    justify-content:center;
  }

  #boutonNav
  {
    width:5vw;
  }

  #Rprestation
  {
    font-size:2.8vw;
    width:fit-content;
  }

  .carte img 
  {
    height:10vw;
  }
  
  .carte 
  {
  gap: 10vw;
  align-items:center;
  }

  .carte p 
  {
    font-size:3vw;
  }

  #NPcartes 
  {
    gap:5vw;
  }

}
#sidebar 
{
  position: fixed;
  top: 0;
  right: -100vw;
  width: 280px;
  height: 100%;
  background-color: #222222;
  border-left: 1px solid #BA9A3B;
  padding: 80px 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 99999;
  transition: right 0.3s ease;
}
#sidebar.open 
{
  right: 0;
}

#sidebar a {
  font-size: 20px;
  font-weight: bold;
  color: white;
}

#sidebar a:hover {
  color: #BA9A3B;
}

#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 9998;
  transition: opacity 0.3s ease;
}

#overlay.active 
{
  opacity: 1;
  pointer-events: auto;
}




