/* AmericanTypewriter optimisé */
@font-face {
  font-family: "American";
  src: url("../FONTS/AmericanTypewriter.woff2") format("woff2"),
       url("../FONTS/AmericanTypewriter.woff") format("woff"),
       url("../FONTS/AmericanTypewriter.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* AmericanTypewriter Bold */
@font-face {
  font-family: "American";
  src: url("../FONTS/AmericanTypewriter-Bold.woff2") format("woff2"),
       url("../FONTS/AmericanTypewriter-Bold.woff") format("woff"),
       url("../FONTS/AmericanTypewriter-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: bold;
}

/* Bitter Light */
@font-face {
  font-family: "Bitter";
  src: url("../FONTS/Bitter-Light.woff2") format("woff2"),
       url("../FONTS/Bitter-Light.woff") format("woff"),
       url("../FONTS/Bitter-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

/* Bitter Light Italic */
@font-face {
  font-family: "Bitter";
  src: url("../FONTS/Bitter-LightItalic.woff2") format("woff2"),
       url("../FONTS/Bitter-LightItalic.woff") format("woff"),
       url("../FONTS/Bitter-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}

.navbar {
    justify-content: space-evenly;
    font-family: 'American';
    color: white;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: black;
    font-style: bold;
    font-size: 2.5vh;
    position: fixed;
    top: 0; 
    width: 100%;
    padding-bottom: 14px;
    padding-top: 16px;
    display:flex;
  }

  img{
    position: fixed;
    display: flex;
    justify-content: center;
    width: 58vh;
    max-width: 97vw;
    left: 3%;
    top: 50%;
    transform: translateY(-50%);
    height: auto;
    z-index: 0;
  }



  .navbar a {
    display: block;
    color:black;
  /*   -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black; */
    -webkit-text-stroke-width: 0px;
    text-decoration:none;
    text-transform: none;
  
  }
  

  .petitenavbar{
    display: none;
    justify-content: space-evenly;
    font-family: 'American';
    font-style: bold;
    color:black;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white;
    position: fixed;
    top: 0; 
    width: 100%;
    padding-bottom: 14px;
    padding-top: 16px;
    flex-direction: row;
    text-transform:none;
}


.contact-container {
  position: fixed;
  bottom: 2px;
  width: 100%;
  text-align: center;
  font-family: 'American';
  padding: 60px 0 40px;
}

#contact {
  display: block;
  width: 100%;
  font-size: 2vh;
  padding: 10px 0;
  background: none;
  border: none;
  cursor: pointer;
  color: black;
  background-color: none;
  font-family: 'American';

}

#info-supplementaire {
  display: none;
  font-family: "Bitter";
  font-style: italic;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  background-color: none;
  padding: 8px 0;
  font-size: 1.8vh;
}

#info-supplementaire.visible {
  display: block;
  opacity: 1;
}




@media only screen and (max-width: 1000px) { /* Réduire le point de rupture pour les smartphones */

 
  
      body {
          width:auto;
          justify-content: space-evenly;
      }
      
      .navbar{
          display: none;
      }
      .petitenavbar{
      font-family: 'American';
      font-style: bold;
      color: black;
      display: flex;
      font-size: 9vw;
      }
  
      .petitenavbar a{
          display: block;
      }
  

  img {
    width: 58vh;
    max-width: 93vw;
  }
}