* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
   transition: all 0.4s ease;
    font-family: "description";
}

body {
  background: #fff;
  overflow-x: hidden;
  text-decoration: none;
}

a {
  color: #000000;
    text-decoration: none;
}

a:hover {
    color: #595959;
}

@font-face {
  font-family: "description";
  src: url(medias/ABCOttoVariable-Trial.ttf);
}

@font-face {
  font-family: "italic";
  src: url(medias/GT-Alpina-Standard-Regular-Italic.otf);
}

.container {
  padding: 40px 60px;
}

/* HEADER */
header img {
width: 100%;
padding-bottom: 550px;
}

/* MAIN LAYOUT */
main {
  display: flex;
  gap: 80px;

}

/* LEFT */
.left {
  width: 40%;
  font-size: 14px;
  line-height: 1.6;
}

.intro {
  width:70%;
  text-align: justify;
}
.left p {
  margin-bottom: 18px;
   hyphens: auto;
  -webkit-hyphens: auto;
  word-spacing: -0.05em;
}

.signature {
  margin-top: 20px;
}

.reserve a {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 40px 0;
}

.dot {
  width: 35px;
  height: 35px;
  background: black;
  border-radius: 50%;
  flex-shrink: 0; /* évite qu’il se déforme */
}
.reserve a:hover .dot {
  background-color: #595959;
}
.reserve a:hover {
  color: #595959;
}

/* INFOS */
.infos,
.horaires {
  display: flex;
gap: 50px;
  margin-top: 30px;
}

.infos h4,
.horaires h4 {
  font-weight: normal;
  margin-bottom: 10px;
}

.footer {
  display: flex;
gap: 50px;
  margin-top: 40px;
}

.copyright {
  margin-top: 60px;
  font-size: 12px;
}

/* RIGHT IMAGE */
.right {
  width: 60%;
  display: flex;
   justify-content: flex-end; /* 👉 pousse l’image à droite */
}

.right img {
  width: 700px;
  height: 100%;
  object-fit: cover;
background-size: cover;
  display: block;
  cursor: pointer;
}

/* 📱 MOBILE */
@media (max-width: 1050px) {


  main {
    flex-direction: column;
     
  }

  .left, .right {
    width: 100%;
   font-size: 12px;
    
  }

  .container {
    padding: 20px;
  }

  .infos,
  .horaires {
    display: flex;
gap: 80px;
  }

  .intro {
    width: 70%;
  }

  .footer {
    flex-direction: column;
    gap: 10px;
  }

  .right img {
    width: 50%;
  }
  header img {
width: 100%;
padding-bottom: 150px;
}
}