body.body2 {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
  overflow-x: hidden;
  position: relative;
  background: #000;
  display: flex;
  flex-direction: column; 
  justify-content: space-between;
  min-height: 100dvh;
}

/* Canvas en arrière-plan */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

/* Overlay principal */
header, main, footer {
  position: relative;
  z-index: 1;
}

/* Header */
.header {
  background-color: rgba(17, 17, 17, 0.8);
  padding: 1rem 2rem;
  border-bottom: 2px solid #EDB918;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-title {
  font-size: 2rem;
  color: #EDB918;
}

.navbar {
  position: relative;
}

.menu-toggle {
  background: none;
  border: none;
  color: #EDB918;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

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

/* Bannière */
.banniere {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(0, 0, 0, 0.6);
}

.highlight {
  color: #EDB918;
}

.intro {
  font-size: 1.2rem;
  margin-top: 1rem;
}

.imggal {
  margin-top: 2rem;
  text-align: center;
}

.responsive-img {
  max-width: 90%;
  height: auto;
  border: 2px solid #EDB918;
  border-radius: 10px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1rem;
  background-color: rgba(17, 17, 17, 0.8);
  border-top: 2px solid #EDB918;
}

.footer .logo {
  margin-top: 0.5rem;
  width: 60px;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: rgba(17, 17, 17, 0.9);
    position: absolute;
    right: 0;
    top: 100%;
    width: 200px;
    padding: 1rem;
  }

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

  .nav-links li {
    margin: 0.5rem 0;
  }
}

/* === SECTIONS COMMUNES === */
.section { padding: 4rem 2rem; text-align: center; background: rgba(0,0,0,0.6); }
.section-title { font-size: 2rem; margin-bottom: 2rem; color:#EDB918; }

/* === TEAM === */
.team-grid { display:grid; gap:2rem; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); }
.team-member { background:#111a; padding:1.5rem; border:1px solid #EDB91844; border-radius:12px; }
.team-photo { width:100%; height:auto; border-radius:10px; margin-bottom:1rem; }
.team-info h3 { margin:0.5rem 0; color:#EDB918; }

/* === JOB CARDS === */
.job-card { display:flex; flex-wrap:wrap; align-items:center; gap:1.5rem; margin-bottom:2rem; background:#111a; padding:1.5rem; border:1px solid #EDB91844; border-radius:12px; }
.job-photo { width:160px; height:auto; border-radius:10px; flex-shrink:0; }
.job-info h3 { margin:0 0 0.5rem; color:#EDB918; }

/* === AWARDS LIST === */
.awards { list-style:none; padding:0; max-width:600px; margin:0 auto; }
.awards li { margin:1rem 0; }

/* === GALLERY === */
.gallery-grid { display:grid; gap:1rem; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); }
.gallery-grid img { width:100%; height:auto; border-radius:10px; border:1px solid #EDB91833; }

/* === CARDS (atouts) === */
.cards { display:grid; gap:2rem; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); }
.card { background:#111a; padding:1.5rem; border:1px solid #EDB91844; border-radius:12px; }
.card h3 { color:#EDB918; margin-top:0; }

/* === CTA === */
.btn-cta { display:inline-block; margin-top:2rem; padding:0.8rem 1.6rem; background:#EDB918; color:#000; text-decoration:none; font-weight:bold; border-radius:8px; transition:opacity 0.3s; }
.btn-cta:hover { opacity:0.8; }

.responsive-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.responsive-img img:hover {
    transform: scale(1.05);
}

.lienaccueil{
    text-decoration: none;
}

.album-image {
    grid-area: image;
    max-width: 90%;
    height: auto;
    border: 2px solid #EDB918;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    justify-self: center;
    transition: transform 0.3s ease-in-out;
}

.album-image:hover {
    transform: scale(1.05);
}
