/* ==========================================
   STYLES GÉNÉRAUX
   ========================================== */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: url("/images/rideau.jpg") no-repeat center center fixed;
  background-size: cover;
  color: #fdf5e6;
  line-height: 1.6;
  font-size: 16px;
  display: flex;
  flex-direction: column;
}

/* ==========================================
   LOGO
   ========================================== */
.logo {
  display: block;
  margin: 30px auto;
  width: 160px;
  height: auto;
}

/* ==========================================
   NAVIGATION
   ========================================== */
nav {
  background: transparent;
  padding: 20px 0 10px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-container {
  background-color: rgba(30, 30, 30, 0.85);
  width: fit-content;
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.9em;
  position: relative;
}

.menu-toggle {
  display: none;
  font-size: 1.8em;
  cursor: pointer;
  color: #fdf5e6;
  text-align: right;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: nowrap;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: #fdf5e6;
  text-decoration: none;
  padding: 8px 15px;
  display: block;
}

nav ul li:hover > a {
  background-color: rgba(255, 168, 87, 0.2);
  border-radius: 5px;
}

nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(30, 30, 30, 0.95);
  padding: 10px 0;
  border-radius: 5px;
  min-width: 180px;
}

nav ul li:hover ul {
  display: block;
}

nav ul li ul li a {
  white-space: nowrap;
}

/* ==========================================
   CONTENU PRINCIPAL
   ========================================== */
main {
  flex: 1;
  overflow-y: auto;
  max-width: 900px;
  margin: 30px auto 20px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  box-sizing: border-box;
}

h2 {
  color: #ffa857;
  border-bottom: 1px solid #444;
  padding-bottom: 5px;
  margin: 20px 0 10px;
  text-align: center;
}

p {
  margin-bottom: 14px;
  text-align: justify;
}

/* ==========================================
   CARTES INTERACTIVES (CTA)
   ========================================== */
.cta-buttons {
  margin-top: 40px;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-card {
  width: 240px;
  height: 140px;
  background: rgba(30, 30, 30, 0.75);
  border: 1px solid rgba(255, 168, 87, 0.4);
  border-radius: 15px;
  color: #fdf5e6;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
  text-align: center;
  transition: transform .25s ease, background .3s ease, border-color .3s ease;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

.cta-card span {
  font-size: 2em;
  margin-bottom: 10px;
}

.cta-card:hover {
  transform: scale(1.07);
  background: rgba(255, 168, 87, 0.15);
  border-color: #ffa857;
}
/* ==========================================
   FOOTER
   ========================================== */
footer.neon-footer {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  padding: 15px 20px;
  border-top: 1px solid #666;
  font-size: 0.9em;
  color: #fff;
  text-shadow: 0 0 2px #fff, 0 0 4px #fff, 0 0 6px #ccc, 0 0 8px #aaa, 0 0 10px #999;
  font-family: 'Segoe UI', sans-serif;
  margin-top: auto;
  position: relative;
}

.footer-wrapper {
  text-align: center;
  position: relative;
}

.footer-left {
  display: inline-block;
}

/* Bouton AAP - VRAIMENT à droite maintenant */
.aap-button {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  background: linear-gradient(135deg, rgba(255, 168, 87, 0.6), rgba(255, 140, 0, 0.5));
  border: 2px solid #ffa857;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.7em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-shadow: 0 0 5px rgba(255, 168, 87, 1);
  box-shadow: 0 3px 10px rgba(255, 168, 87, 0.4);
}

.aap-button:hover {
  background: linear-gradient(135deg, rgba(255, 168, 87, 0.8), rgba(255, 140, 0, 0.7));
  border-color: #ffbb75;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 5px 20px rgba(255, 168, 87, 0.7);
}

.aap-icon {
  font-size: 1.2em;
}

.aap-text {
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 968px) {
  .aap-button {
    position: static;
    transform: none;
    margin-top: 10px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  
  .aap-button:hover {
    transform: scale(1.05);
  }
  
  .footer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .aap-button {
    font-size: 0.75em;
    padding: 6px 12px;
  }
}}}}/* ==========================================
   WIDGET TRADUCTION
   ========================================== */
.gtranslate_wrapper {
  background: rgba(0, 0, 0, 0.6) !important;
  border-radius: 8px;
  padding: 5px;
  position: fixed;
  bottom: 80px;
  left: 20px;
  z-index: 9999;
}

.gt_float_switcher {
  background: transparent !important;
  box-shadow: none !important;
}

.gt_options.gt-open {
  background: rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(6px);
  border-radius: 8px;
}

.gt_options.gt-open a {
  color: #ffd47b !important;
  font-weight: bold;
}

.gt-selected,
.gt-current-lang {
  background: rgba(0, 0, 0, 0.3) !important;
  border-radius: 6px !important;
  color: #ffd47b !important;
  padding: 4px 6px;
}

/* Responsive */
@media (max-width: 480px) {
  .footer-content {
    font-size: 0.85em;
  }
  
  .gtranslate_wrapper {
    bottom: 70px;
    left: 10px;
  }
}
Changements :/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    text-align: right;
    margin-bottom: 10px;
  }

  nav ul {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  nav ul li {
    width: 100%;
    text-align: center;
  }

  nav ul li a {
    padding: 12px;
    display: block;
    width: 100%;
  }

  nav ul.show {
    display: flex;
  }

  main {
    width: 95%;
    margin: 10px auto;
    padding: 15px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .cta-card {
    width: 90%;
    max-width: 300px;
    height: auto;
    padding: 20px 10px;
    font-size: 1em;
  }

  .cta-card span {
    font-size: 1.5em;
    margin-bottom: 5px;
  }

  .logo {
    width: 120px;
    margin: 20px auto;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  h2 {
    font-size: 1.2em;
  }

  .cta-card {
    font-size: 0.95em;
  }
}