/* Importation des polices */
@font-face {
  font-family: 'Garet'; 
  src: url('fonts/garet/Garet-Book.woff2') format('woff2'),
       url('fonts/garet/Garet-Book.woff') format('woff'),
       url('fonts/garet/Garet-Heavy.ttf') format('truetype');
}

@font-face {
  font-family: 'Montserrat'; 
  src: url('fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
}

/* Section générale */
body {
  font-family: 'Garet', Arial, sans-serif; 
  margin: 0; 
  padding: 0; 
  height: 100vh; 
  overflow: hidden;
}

.index-page {
  background: url('img/mocktail.jpg') no-repeat center center/cover; 
  position: relative; 
  height: 100vh; 
  display: flex; 
  flex-direction: column; 
  justify-content: flex-end;
  overflow: hidden;
}

/* Titre principal */
.custom-title {
  font-family: 'Garet', sans-serif;
  font-size: 145pt; 
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  text-align: right;
  position: absolute;
  bottom: 150px; 
  right: 20px;
}

/* Texte principal et section adresse */
.mocktail-section {
  position: absolute;
  bottom: 120px; 
  left: 10px; 
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: white;
  font-family: 'Montserrat', sans-serif;
  padding-left: 10px;
}

.text-content {
  text-align: left;
  margin-bottom: -18px;
  font-size: 23pt;
}

.text-content .headline {
  font-family: 'Montserrat', sans-serif;
  font-size: 30pt; 
  color: white;
  margin: 0;
  line-height: 1.5;
}

.address-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.address-section .icone.loc img {
  height: 47px;
  width: auto;
  display: block;
}

.address-section p {
  font-family: 'Montserrat', sans-serif; 
  font-size: 17.2pt; 
  color: white;
}

/* Boutons principaux */
.buttons-container {
  position: absolute;
  bottom: 50px; 
  right: 20px;
  width: 337px;
  height: 77px;
  background-color: #fd6c51;
  border-radius: 38.5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-custom {
  flex: 1;
  font-family: 'Montserrat', sans-serif;
  font-size: 16pt;
  font-weight: bold;
  color: white;
  text-decoration: none;
  text-align: center;
  line-height: 77px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-custom:hover {
  background-color: #fd6c51; 
  color: white; 
  transform: scale(1.05);
}

.divider {
  width: 3px;
  height: 50%;
  background-color: white;
}

/* Logo en haut à gauche */
.logo {
  position: absolute;
  top: 0;
  left: 0;
  margin: 10px; /* Petit espace par rapport au coin */
  width: 150px; /* Taille par défaut */
  height: auto;
  display: none;
}

.logo img {
  width: 100%;
  height: auto;
}

/* Vue mobile */
@media (min-width: 0px) and (max-width: 1100px) {
  .custom-title {
    font-size: 85pt; 
    bottom: 230px; 
    right: 20px;
  }

  .mocktail-section {
    bottom: 120px; 
    left: 5px; 
    padding-left: 10px;
  }

  .text-content .headline {
    font-size: 14pt;
  }

  .address-section p {
    font-size: 13pt;
  }

  .buttons-container {
    width: 280px;
    height: 65px;
    bottom: 50px;
  }

  .btn-custom {
    font-size: 12pt;
    line-height: 65px;
  }

  .divider {
    width: 2px;
    height: 40%;
  }
}

/* Vue tablette */
@media (min-width: 1100px) and (max-width: 1440px) {
  .custom-title {
    font-size: 90pt; 
    bottom: 210px; 
    right: 20px;
  }

  .mocktail-section {
    bottom: 120px; 
    left: 15px; 
    padding-left: 10px;
  }

  .text-content .headline {
    font-size: 17pt;
  }

  .address-section p {
    font-size: 15pt;
  }

  .buttons-container {
    width: 320px;
    height: 70px;
    bottom: 50px;
  }

  .btn-custom {
    font-size: 14pt;
    line-height: 70px;
  }

  .divider {
    width: 3px;
    height: 45%;
  }

  .logo {
    display: block;
    width: 500px; 
    margin-top: -670px;
    left: -100px;
  }
}

/* Vue bureau */
@media (min-width: 1440px) {
  .custom-title {
    font-size: 110pt;
    bottom: 100px; 
    right: 20px;
  }

  .mocktail-section {
    bottom: 120px; 
    left: 10px; 
    padding-left: 10px;
  }

  .text-content .headline {
    font-size: 19.5pt;
  }

  .address-section p {
    font-size: 17.2pt;
  }

  .buttons-container {
    width: 337px;
    height: 77px;
    bottom: 50px;
  }

  .btn-custom {
    font-size: 16pt;
    line-height: 77px;
  }

  .divider {
    width: 3px;
    height: 50%;
  }

  .logo {
    display: block;
    width: 500px; 
    margin-top: -660px;
    left: -100px; 
  }
}
