/* RESET */
*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:'Segoe UI',sans-serif;line-height:1.6;color:#f5f5f5;background:#111;}

/* HEADER */
.topbar{
  position:fixed;
  top:0;left:0;right:0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  height:80px;
  padding:0 30px;
  background:#111;
  color:#FFD1A9; /* or chaud */
  z-index:1000;
  box-shadow:0 2px 8px rgba(0,0,0,0.7);
}
.site-logo{height:90px;width:auto;display:block;}
.topbar nav{display:flex;}
.topbar nav a{
  margin-left:20px;color:#FFD1A9;text-decoration:none;font-weight:600;position:relative;
}
.topbar nav a::after{
  content:"";position:absolute;bottom:-5px;left:0;width:0;height:2px;
  background:#E34234;transition:0.3s;
}
.topbar nav a:hover::after{width:100%;}
.burger{display:none;font-size:1.8rem;cursor:pointer;color:#FFD1A9;}

/* HERO */
.hero{
  height:100vh;
  display:flex;justify-content:center;align-items:center;
  text-align:center;color:white;position:relative;
  padding-top:80px;
}
.hero .overlay{
  position:absolute;top:0;left:0;right:0;bottom:0;
  background:rgba(0,0,0,0.65);
}
.hero .content{position:relative;z-index:2;max-width:600px;width:100%;}
.hero h1{font-size:3rem;color:#FFD1A9;text-shadow:0 0 15px #E34234;}
.hero p{margin:15px 0;font-size:1.2rem;color:#f1f1f1;}

/* HERO Adultes */
.hero-adultes {
  background: url('img/fond-adultes.jpg') no-repeat center/cover;
}

/* FORM HERO */
.hero-form {
  background:rgba(0,0,0,0.7);
  padding:20px;
  border-radius:12px;
  margin-top:20px;
  box-shadow:0 0 20px rgba(227,66,52,0.6);
}
.hero-form input,
.hero-form select,
.hero-form button {
  width:100%;padding:12px;margin:8px 0;border-radius:8px;
  border:1px solid #E34234;font-size:1rem;background:#1a1a1a;color:#fff;
}
.hero-form button {
  background:linear-gradient(45deg,#E34234,#FFD1A9);
  color:#111;font-weight:bold;border:none;cursor:pointer;
}
.hero-form button:hover {
  background:linear-gradient(45deg,#B22222,#FFD1A9);
}

/* SECTIONS */
.section{max-width:1000px;margin:100px auto;padding:30px;text-align:center;}
.section.light{background:#1c1c1c;border-radius:12px;}
.section h2{margin-bottom:20px;color:#FFD1A9;font-size:1.9rem;text-shadow:0 0 8px #E34234;}

/* FORM CONTACT */
.contact-form{max-width:500px;margin:0 auto;}
.contact-form input,.contact-form textarea,.contact-form select,.contact-form button{
  width:100%;padding:12px;margin:8px 0;border-radius:8px;
  border:1px solid #E34234;font-size:1rem;background:#111;color:#fff;
}
.contact-form textarea{min-height:120px;}
.contact-form button{
  background:linear-gradient(45deg,#E34234,#FFD1A9);
  color:#111;border:none;font-weight:bold;cursor:pointer;
}
.contact-form button:hover{
  background:linear-gradient(45deg,#B22222,#FFD1A9);
}

/* FOOTER */
footer{text-align:center;padding:20px;background:#111;color:#FFD1A9;margin-top:40px;}
.mentions-link {color:#FFD1A9;font-weight:600;text-decoration:none;}
.mentions-link:hover {color:#E34234;text-decoration:underline;}

/* AGE MODAL */
.age-modal {
  display:none;
  position:fixed;
  z-index:3000;
  top:0;left:0;right:0;bottom:0;
  background:rgba(0,0,0,0.95);
  justify-content:center;
  align-items:center;
}
.age-modal-content {
  background:#1a1a1a;
  color:#FFD1A9;
  padding:30px;
  border-radius:12px;
  text-align:center;
  border:2px solid #E34234;
  max-width:400px;
  box-shadow:0 0 25px #E34234;
}
.age-modal-content button {
  padding:12px 20px;
  margin:10px;
  border:none;
  border-radius:8px;
  font-weight:bold;
  cursor:pointer;
}
#btn-yes {background:#E34234;color:#fff;}
#btn-yes:hover {background:#B22222;}
#btn-no {background:#444;color:#fff;}
#btn-no:hover {background:#666;}

/* Responsive */
@media(max-width:768px){
  .burger{display:block;}
  .nav-links{
    overflow:hidden;
    max-height:0;
    flex-direction:column;
    position:absolute;
    top:80px;right:0;
    background:#111;width:220px;
    transition:max-height 0.3s ease-out;
  }
  .nav-links a{margin:10px 0;padding:10px;color:#FFD1A9;}
  .nav-links.open{max-height:500px;}
}
/* LISTE DES RÈGLES */
.rules {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.rules li {
  padding: 8px;
  border-left: 4px solid #E34234;
  margin: 6px 0;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
}

/* MODALE Mentions légales */
.mentions-modal {
  display: none;
  position: fixed;
  z-index: 4000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}
.mentions-content {
  background: #1c1c1c;
  color: #FFD1A9;
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  box-shadow: 0 0 25px #E34234;
  text-align: left;
  position: relative;
}
.mentions-content h2 {
  margin-top: 0;
  color: #FFD1A9;
}
.mentions-content p {
  margin: 10px 0;
}
.close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #FFD1A9;
}
.close:hover { color: #E34234; }
/* Décalage contenu sous le menu */
.hero, .section {
  scroll-margin-top: 90px; /* évite que ça colle sous le header */
}
body {
  padding-top: 80px; /* pousse tout sous la barre de menu */
}

/* Responsive header avec logo centré */
@media(max-width:768px){
  .topbar {
    flex-direction: column;
    height: auto;
    padding: 15px;
  }
  .site-logo {
    margin-bottom: 10px;
    height: 70px;
  }
  .nav-links {
    flex-direction: column;
    align-items: center;
  }
  .nav-links a {
    margin: 8px 0;
  }
}
/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: #FFD1A9;
  margin-top: 40px;
}

.footer-top {
  margin-bottom: 10px;
}

.footer-warning {
  background: rgba(227, 66, 52, 0.15); /* rouge transparent */
  color: #FFD1A9;
  font-size: 0.9rem;
  padding: 10px;
  border: 1px solid #E34234;
  border-radius: 6px;
  display: inline-block;
  max-width: 600px;
  line-height: 1.4;
}
.contact-intro {
  max-width: 600px;
  margin: 0 auto 20px auto;
  color: #ddd;
  font-size: 1rem;
  line-height: 1.5;
}
/* Règles en 2 colonnes */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.rules-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rules-grid li {
  padding: 10px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #E34234;
  border-radius: 6px;
  color: #f5f5f5;
  line-height: 1.5;
  font-size: 0.95rem;
}
/* Encadré des règles */
.rules-box {
  background: #111;
  border: 2px solid #E34234;
  border-radius: 12px;
  padding: 25px;
  margin-top: 30px;
  box-shadow: 0 0 20px rgba(227,66,52,0.3);
}
.rules-box h3 {
  color: #FFD1A9;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.4rem;
  text-shadow: 0 0 6px #E34234;
}

/* Grille de règles */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  text-align: left;
}
.rules-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rules-grid li {
  padding: 10px 15px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #E34234;
  border-radius: 6px;
  color: #f5f5f5;
  line-height: 1.5;
  font-size: 0.95rem;
  transition: background 0.3s, transform 0.2s;
}
.rules-grid li:hover {
  background: rgba(227,66,52,0.15);
  transform: translateX(3px);
}
.nav-links {
  transition: max-height 0.3s ease-in-out;
}
/* Liens généraux du site */
a {
  color: #FFD1A9;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #E34234;
}

/* Liens dans le footer (pour être sûr) */
footer a {
  color: #FFD1A9;
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  color: #E34234;
  text-decoration: underline;
}
.seo-line {
  margin-top: 10px;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}
/* ======= BLOC PUBLICITÉ ======= */
.pub-section {
  background: #1c1c1c;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(227,66,52,0.3);
  max-width: 1000px;
  margin: 80px auto;
  padding: 20px;
  text-align: center;
}
.pub-section h2 {
  color: #FFD1A9;
  font-size: 1.6rem;
  margin-bottom: 15px;
  text-shadow: 0 0 8px #E34234;
}
.pub-box {
  border: 2px solid #E34234;
  border-radius: 10px;
  padding: 10px;
  background: rgba(255,255,255,0.05);
  box-shadow: inset 0 0 15px rgba(227,66,52,0.2);

  justify-content: center;
  align-items: center;
  min-height: 120px;
}
