@charset "UTF-8";
/* ANTI-SCROLL AGE-GATE */
body.age-gate-active,
html.age-gate-active {
  overflow: hidden !important;
}

body.age-gate-active {
  position: fixed !important;
  width: 100vw !important;
}

.textaggate {
  font-family: "Domaine", Arial, serif;
  font-weight: 300;
  font-style: italic;
  font-size: 5rem;
}

.age-gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  color: #5E5A54;
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.age-gate-content {
  max-width: 800px;
  padding: 2rem;
  border: 1px solid #eee;
  background-color: #fff;
  text-align: center;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.age-gate-content h1 {
  font-weight: 200;
  font-size: 4.5rem;
  line-height: 5rem;
  text-align: left;
  color: #403d39;
  margin-bottom: 5rem;
}

.age-gate-content p {
  text-align: left;
  font-weight: 300;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* BOUTONS CÔTE À CÔTE - JAMAIS VERTICAL */
.age-gate-buttons {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 2.5rem !important;
  margin: 2rem 0 !important;
  flex-wrap: nowrap !important; /* CRUCIAL : empêche passage à la ligne */
}

.age-gate-buttons .cta-button {
  background-color: #cbb990;
  color: white;
  padding: 20px 45px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Montserrat', Arial, sans-serif;
  flex: 0 0 auto !important; /* Taille naturelle, pas d'étirement */
  min-width: 130px;
  white-space: nowrap !important;
  margin: 0 !important;
}

.age-gate-buttons .cta-button:hover,
.age-gate-buttons .cta-button:focus {
  background-color: #B69E64;
  outline: none;
}

.age-gate-warning {
  font-size: 0.9rem;
  font-style: italic;
  color: #828282;
  margin-top: 1rem;
}

/* MOBILE : toujours côte à côte mais compacts */
@media (max-width: 600px) {
  .age-gate-content {
    padding: 1.5rem;
    margin: 1rem;
    max-width: 95vw;
  }
  
  .age-gate-content h1 {
    font-size: 2rem !important;
    line-height: 2.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .age-gate-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .age-gate-buttons {
    gap: 1.2rem !important;
  }
  
  .age-gate-buttons .cta-button {
    padding: 14px 28px !important;
    font-size: 0.95rem !important;
    min-width: 115px !important;
  }
}

/* Très petits écrans */
@media (max-width: 400px) {
  .age-gate-buttons {
    gap: 0.8rem !important;
  }
  
  .age-gate-buttons .cta-button {
    padding: 12px 20px !important;
    min-width: 100px !important;
    font-size: 0.9rem !important;
  }
}
