/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
   max-width: 100%;
  width: 100%;
  min-width: 100%;
  min-height: 100vh;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #000000;
  color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  width: 100%;
  min-width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-size: 16px;
}

/* logo */
.logo-link {
  color: white;
  letter-spacing: -2px;
  font-weight: bold;
  font-size: 1.6rem;
  text-decoration: none;
}
.logo-link:hover {
  color: #dcdcdc;
}
.logo a {
  font-family: 'Asset';
  letter-spacing: -2px;
}

/* Réseaux sociaux page principale */
.social-vertical {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10;
    z-index: 1000; /* passer devant tout */
    position: fixed; /* ✅ reste fixé même si le container change */

}

.social-vertical a img {
  width: 20px;
  height: 70px;
  filter: brightness(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
  animation: pulseGlow 10s reverse;
  cursor: pointer;
}

/* ✅ Effet de zoom au survol */
.social-vertical a img:hover {
  transform: scale(2.2);
  filter: brightness(140%);
}


/* Navbar */
.navbar {
  width: 100%;
  max-width: 100%;
  padding: 20px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 90px;
}
/* Liens desktop */
.nav-links {
  display: flex;
  gap: 20px;
}
.nav-links a {
  text-decoration: none;
  color: white;
  transition: color 0.5s;
}
.nav-links a:hover {
  color: #2800e8;
}


/* Timeline */
.timeline-section {
  text-align: center;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}
.timeline-section h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 40px;
}
.timeline-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}
.timeline-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  padding: 20px;
  min-width: 220px;
  text-align: center;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: transform 0.6s ease, background 0.3s ease;
}
.timeline-item:hover {
  background: rgba(40, 0, 232, 0.8);
  transform: scale(1.05);
}
.timeline-year {
  display: block;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffffff;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(40, 0, 232, 0.8), rgba(158, 5, 240, 0.9));
  backdrop-filter: blur(20px);
  border-radius: 30px;
  max-width: 1000px;
  margin: 70px auto;
  text-align: center;
  padding: 60px 30px;
  box-shadow: 0 0 30px rgba(40, 0, 232, 0.4);
  position: relative;
  overflow: hidden;
  animation: fadeIn 1s ease-in-out;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-conic-gradient(rgba(255,255,255,0.08) 10%, transparent 40%);
  animation: rotateBg 10s linear infinite;
  z-index: 0;
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-section h2 {
  font-size: 2.2rem;
  color: white;
  margin-bottom: 15px;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  line-height: 1.6;
}
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #2800e8, #4a24ff);
  color: white;
  padding: 15px 40px;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 15px rgba(40, 0, 232, 0.5);
}
.cta-button:hover {
  background: linear-gradient(135deg, #4a24ff, #2800e8);
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(40, 0, 232, 0.7);
}

/* Animations */
@keyframes rotateBg {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Burger caché sur desktop */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

/* Responsive : mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    padding: 15px;
    border-radius: 10px;
    width: 200px;
  }
  .nav-links.show {
    display: flex;
  }
  .nav-links a {
    padding: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }
  .nav-links a:last-child {
    border-bottom: none;
  }
}

.nav-links li a:hover {
  color: #2800e8;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 162px auto; /* ✅ centre horizontalement et garde un seul margin-bottom */
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; /* ✅ espace entre la partie gauche et droite */
  background: linear-gradient(135deg, #000000 50%, #000000 50%);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(70, 70, 70, 0.165); /* ✅ ombre un peu adoucie */
  box-sizing: border-box;
}


/* Section gauche */
.left {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.left h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}
.left p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #fff;
}
.buttons {
  display: flex;
  gap: 15px;
}
.btn {
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: 0.3s ease;
}
.btn-primary {
  background: #2800e8;
  color: white;
}
.btn-primary:hover {
  background: #3a1aff;
}
.btn-explore {
  background: white;
  color: #000;
}
.btn-explore:hover {
  background: #f0f0f0;
}

/* Section droite - Vidéo */
.video {
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px; /* Réduction du padding */
  position: relative;
  overflow: hidden;
  flex: 1;
  width: 100%;
  max-width: 800px; /* ✅ Limite la largeur */
  max-height: 700px; /* ✅ Limite la hauteur */
  border-radius: 20px;
}

.video video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ✅ Assure que la vidéo garde un beau ratio */
  border-radius: 20px;
}


/* Responsive */
@media (max-width: 900px) {
  .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .left {
    padding: 40px;
  }
  .buttons {
    justify-content: center;
  }
  .navbar {
    flex-direction: column;
    gap: 15px;
  }
  .nav-left {
    flex-direction: column;
    gap: 15px;
  }
  .nav-links {
    gap: 15px;
  }
}

/* Bouton "Télécharger" */
.btn-download {
  padding: 10px 24px;
  background: #000;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: pulse 2s infinite;
}
.btn-download::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(81, 70, 134, 0), transparent);
  transition: 0.4s;
}
.btn-download:hover {
  background: #111;
  box-shadow: 0 0 15px #2800e8, 0 0 30px #2800e8;
  transform: scale(1.05);
}
.btn-download:hover::before {
  left: 100%;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Style pour les pages internes */
.page-content {
  width: 100%;
  margin: 80px auto;
  text-align: center;
  padding: 20px;
  flex: 1;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.page-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}
.page-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ddd;
}
.ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  padding-inline-start: 40px;
  unicode-bidi: isolate;
}

/* page MEDIA */
.twitter-tweet {
  margin-bottom: 15%;
  margin-top: 10%;
}

/* page FONTIONNALITES */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: rgba(40, 0, 232, 0.1);
  border-radius: 16px;
  margin: 20px auto;
  max-width: 100%;
}
.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #2800e8;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  box-shadow: 0 0 12px rgba(40, 0, 232, 0.6);
  transition: all 0.3s ease;
}
.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(40, 0, 232, 0.9);
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 60px auto;
  padding: 0 20px;
}
.feature-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}
.feature-card:hover {
  background: rgba(40, 0, 232, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(40, 0, 232, 0.7);
}
.icon {
  font-size: 2rem;
  margin-bottom: 15px;
  animation: spin 3s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.cta-section {
  text-align: center;
  padding: 50px 20px;
  background: rgba(40, 0, 232, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  margin: 50px auto;
}

/* page JOBS */
.jobs-hero {
  text-align: center;
  margin: 3rem auto 2rem;
  max-width: 800px;
}
.jobs-hero h1 {
  font-size: 2.5rem;
  color: #2800e8;
}
.jobs-hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
}
.jobs-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.job-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  padding: 20px;
  border-radius: 20px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(40,0,232,0.4);
}
.job-card h2 {
  color: #fff;
  margin-bottom: 10px;
}
.job-card p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 10px;
}
.job-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}
.job-card ul li {
  margin: 5px 0;
  color: #ccc;
}
.btn-apply {
  display: inline-block;
  padding: 10px 20px;
  background: #2800e8;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-weight: bold;
}
.btn-apply:hover {
  background: #4a24ff;
  box-shadow: 0 0 15px rgba(74,36,255,0.8);
}
.jobs-cta {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 10%;
}
.jobs-cta .btn-apply.big {
  font-size: 1.2rem;
  padding: 15px 30px;
  margin-top: 5%;
}

/* page Politiques de confidentialités */
.legal-hero {
  text-align: center;
  margin: 3rem auto 2rem;
  max-width: 800px;
}
.legal-hero h1 {
  font-size: 2.5rem;
  color: #2800e8;
}
.legal-hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
}
.legal-toc {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 15px;
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
}
.legal-toc ul {
  list-style: none;
  padding: 0;
}
.legal-toc li {
  margin: 8px 0;
}
.legal-toc a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}
.legal-toc a:hover {
  color: #4a24ff;
}
.legal-content {
  max-width: 800px;
  margin: 40px auto;
  line-height: 1.6;
}
.legal-content h2 {
  color: #fff;
  margin-top: 30px;
  font-size: 1.6rem;
}
.legal-content p {
  color: rgba(255,255,255,0.8);
}

/* page PARTENAIRES */
.partners-hero {
  text-align: center;
  margin: 3rem auto 2rem;
  max-width: 800px;
}
.partners-hero h1 {
  font-size: 2.5rem;
  color: #2800e8;
}
.partners-hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
}
.partners-grid1,
.partners-grid2,
.partners-grid3,
.partners-grid4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 40px auto;
}
.partners-grid1 { background: rgba(11, 204, 59, 0.134); }
.partners-grid2 { background: rgba(84, 13, 120, 0.142); }
.partners-grid3 { background: rgba(216, 161, 51, 0.178); }
.partners-grid4 { background: rgba(255, 255, 255, 0.05); }
.partner-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}
.partner-card img {
  max-width: 80px;
  margin-bottom: 10px;
}
.partner-card p {
  color: white;
  font-weight: bold;
}
.partner-card:hover {
  background: rgba(40, 0, 232, 0.7);
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(40, 0, 232, 0.6);
}
.partners-cta {
  text-align: center;
  margin: 60px auto;
  max-width: 700px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px;
}
.btn-partner {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: #2800e8;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.btn-partner:hover {
  background: #4a24ff;
  box-shadow: 0 0 15px rgba(74, 36, 255, 0.7);
}

/* page TELECHARGER */
.qr-card {
  background: #4a24ff;
  margin-top: 50px;
  margin-bottom: 110px;
}
.titre {
  margin-top: 50px;
  margin-bottom: 11px;
}

/* page FAQ */
.faq-section {
  max-width: 900px;
  margin: 50px auto 110px auto;
  padding: 20px;
  text-align: center;
}
.faq-section h1 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 10px;
}
.faq-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 0 20px rgba(40, 0, 232, 0.4);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  background: none;
  border: none;
  outline: none;
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}
.faq-question:hover {
  color: #2800e8;
  cursor: zoom-in;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  padding: 0 20px;
  transition: max-height 0.5s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 20px;
}

/* page TELECHARGER */
.download-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: 40px 20px;
}
.download-page h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.download-page p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
}
.qr-section {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.qr-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 20px;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}
.qr-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(40, 0, 232, 0.7);
}
.qr-card img {
  width: 150px;
  margin-bottom: 15px;
}
.qr-card a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  background: #2800e8;
  padding: 10px 18px;
  border-radius: 12px;
  transition: background 0.3s ease;
}
.qr-card a:hover {
  background: #4a24ff;
}

/* Page CGU */
/* Sommaire (TOC) */
.toc {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--card-border);
  margin-bottom: 110px;
  margin-top: 80px;
}
.toc h2 {
  margin: 0 0 10px 0;
  font-size: 1.15rem;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}
.toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 10px;
}
.toc a {
  display: block;
  padding: 10px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,0.02);
  text-align: center;
  font-weight: 600;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  border: 1px solid rgba(255,255,255,0.02);
  margin-bottom: 10px;
}
.toc a:hover,
.toc a:focus {
  background: linear-gradient(90deg, rgba(40,0,232,0.95), rgba(74,36,255,0.95));
  box-shadow: 0 6px 20px rgba(40,0,232,0.35);
  transform: translateY(-4px) scale(1.02);
  outline: none;
}

/* Glass card used for each CGU article */
.glass-card {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--card-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(12px);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.6), 0 0 40px rgba(40,0,232,0.06);
}
.glass-card h2 {
  margin: 0 0 8px 0;
  color: #fff;
  font-size: 1.35rem;
  display: block;
}
.glass-card p,
.glass-card li {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.98rem;
  margin: 0 0 .8rem 0;
}
.glass-card h3 {
  margin-top: 10px;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.05rem;
}
.glass-card a.call-link {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg,var(--accent),#4a24ff);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(40,0,232,0.25);
}

/* Footer placeholder */
footer.page-footer {
  margin-top: 40px;
  padding: 30px 20px;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.8);
  text-align: center;
}

/* Responsive tweaks */
@media (max-width:1024px) {
  main { padding: 18px; }
  .toc ul { grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); }
}
@media (max-width:768px) {
  :root { --max-width: 92vw; }
  .toc { padding: 14px; }
  .toc h2 { font-size: 1.05rem; }
  .glass-card { padding: 18px; }
  .glass-card h2 { font-size: 1.2rem; }
  .toc ul { grid-template-columns: 1fr; gap: 8px; }
}

/* Optional: highlight target section when clicking TOC (visual feedback) */
section:target {
  outline: 3px solid rgba(40,0,232,0.25);
  border-radius: 12px;
  padding: calc(24px - 6px);
}

/* Back to top button */
#backToTopBtn {
  position: fixed;
  right: 20px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg,var(--accent),#4a24ff);
  box-shadow: 0 10px 30px rgba(40,0,232,0.28);
  color: #fff;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px) scale(.98);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 1200;
}
#backToTopBtn.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Accessibility focus */
a:focus, button:focus {
  outline: 3px solid rgba(40,0,232,0.28);
  outline-offset: 2px;
}

/* page help */
.bloc {
  margin-top: 50px;
  margin-bottom: 200px;
}

/* Page A propos */
.hero-apropos {
  text-align: center;
  padding: 80px 20px;
}
.hero-apropos h1 {
  font-size: 2.5rem;
  color: white;
}
.hero-apropos h1 span {
  color: #2800e8;
}
.apropos-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 50px auto;
  max-width: 1000px;
}
.apropos-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  transition: 0.3s ease;
}
.apropos-card:hover {
  background: rgba(40, 0, 232, 0.8);
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(40, 0, 232, 0.7);
}


/* page remboursement  */
.rbt {
  margin-top: 50px;
  margin-bottom: 200px;
}
.precision {
  margin-top: 50px;
  margin-bottom: 95px;
}

/* Menu responsive */
.nav-links {
  display: flex;
  gap: 25px;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
}

/* --- Mobile --- */
@media (max-width: 768px) {
  nav {
    position: relative;
  }

  .menu-toggle {
    display: block;
    z-index: 20;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 8px;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    color: white;
    font-size: 18px;
  }
}


/* footer zone */
.footer {
  background: #000000;
  color: #ffffff;
  padding: 40px 70px;
  font-family: 'Poppins', sans-serif;
  width: 100%;

}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 105px;
  margin-top: 50px;
}
.footer-logo img {
  width: 200px;
  height: auto;
  margin-top: auto;
  margin: 0 auto;
}
.footer-links {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-column h4 {
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: bold;
}
.footer-column a {
  text-decoration: none;
  color: #ffffff;
  font-size: 0.9rem;
  transition: 0.3s;
}
.footer-column a:hover {
  color: #2800e8;
}
.footer-stores {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.store-btn {
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
  transition: 0.3s;
}
.store-btn:hover {
  background: #2800e8;
}
/* Ligne */
.footer hr {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 20px 0;
}
/* Bas du footer */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: #666;
}
.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a {
  text-decoration: none;
  font-size: 0.8rem;
  color: #ffffff;
  transition: 0.3s;
}
.footer-legal a:hover {
  color: #2800e8;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }
  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
  .footer-stores {
    flex-direction: row;
    gap: 10px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Sélecteur de langue */
#languageSwitcher {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #2800e8;
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  font-size: 0.9rem;
  cursor: pointer;
}
#languageSwitcher:focus {
  outline: 2px solid #2800e8;
}

/* Variables CSS */
:root {
  --bg: #0a0a0a;
  --card-bg: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.06);
  --accent: #2800e8;
  --muted: rgba(255,255,255,0.75);
  --glass-shadow: 0 8px 30px rgba(0,0,0,0.6);
  --max-width: 1100px;
  --radius: 16px;
  --gap: 1.2rem;
}