/* Styles pour la page Mentions légales */

/* Définition de la police Comfortaa */
@font-face {
  font-family: 'Comfortaa';
  src: url('../Font/Comfortaa-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Section principale des mentions légales */
.mentions-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url('../images/websiteNumerique-100.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Overlay sombre */
.mentions-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 28, 43, 0.25);
  z-index: 2;
}

/* Contenu des mentions légales */
.mentions-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-family: 'Comfortaa', Arial, sans-serif;
  color: #e0e6f7;
  font-size: 1.13rem;
  line-height: 1.7;
}

/* Sections de texte */
.mentions-section-text {
  margin-bottom: 1.5rem;
}

.mentions-section-text:last-child {
  margin-bottom: 0;
}

.mentions-section-text strong {
  color: #e0e6f7;
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1em;
}

/* Responsive design */
@media (max-width: 768px) {
  .mentions-content {
    padding: 2rem 1rem;
    font-size: 1rem;
    margin: 1rem;
    max-width: calc(100% - 2rem);
  }
  
  .mentions-section-text {
    margin-bottom: 1.2rem;
  }
  
  .mentions-section-text strong {
    font-size: 1.05em;
  }
}

@media (max-width: 480px) {
  .mentions-content {
    padding: 1.5rem 0.8rem;
    font-size: 0.95rem;
    margin: 0.5rem;
    max-width: calc(100% - 1rem);
  }
  
  .mentions-section-text {
    margin-bottom: 1rem;
  }
  
  .mentions-section-text strong {
    font-size: 1em;
  }
}

/* Séparateur */
.mentions-separateur {
  min-height: 5px;
  height: 5px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 -6px 16px 0px rgba(0,0,0,0.85), 0 6px 16px 0px rgba(0,0,0,0.85);
  margin: 0;
  padding: 0;
  display: block;
  border-radius: 0;
  position: relative;
  z-index: 10;
} 