/* ===== CSS CORRIGÉ ===== */
*{margin:0;padding:0;box-sizing:border-box;font-family:'Inter',sans-serif}
body{background:#0b0f14;color:#eaeaea;line-height:1.6}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

/* NAVBAR */
.navbar{
  position:fixed;top:0;left:0;width:100%;height:70px;
  background:rgba(8,12,18,0.9);backdrop-filter:blur(10px);
  display:flex;justify-content:space-between;align-items:center;
  padding:0 40px;z-index:1000;border-bottom:1px solid #00ffcc22
}

/* LOGO */
.logo{display:flex;align-items:center;gap:10px;color:#00ffcc;text-decoration:none}
.logo-text{display:flex;flex-direction:column;line-height:1.1}
.logo-line1{font-size:22px;font-weight:800;letter-spacing:1px}
.logo-line2{font-size:18px;font-weight:700;color:#00ffccaa;letter-spacing:1px;margin-top:2px}
.logo i.fa-brain{font-size:28px;color:#00ffcc}

/* NAV LINKS */
.nav-links{display:flex;gap:30px}
.nav-links a{font-size:15px;color:#ccc;transition:.3s}
.nav-links a:hover{color:#00ffcc}

/* MENU TOGGLE */
.menu-toggle{
  display:none;
  flex-direction:column;
  cursor:pointer;
  background:none;
  border:none;
}
.menu-toggle span{
  height:3px;width:25px;
  background:#00ffcc;
  margin:4px 0;border-radius:3px
}

/* PAGE HEADER */
.page-header{
  padding:150px 8% 60px;
  background:radial-gradient(circle at top left,#00ffcc11,transparent 40%)
}
.page-header h1{font-size:48px;margin-bottom:20px;color:#00ffcc}
.page-header p{font-size:18px;color:#b5b5b5;max-width:800px}

/* CONTENT */
.content-section{
  padding:80px 8%;
  max-width:1200px;
  margin:0 auto;
}
.content-section h2{
  font-size:32px;
  margin-bottom:30px;
  color:#00ffcc;
  border-left:4px solid #00ffcc;
  padding-left:20px;
}
.content-section p{
  margin-bottom:25px;
  color:#b0b0b0;
  font-size:16px;
}
.content-section ul{
  margin:25px 0;
  padding-left:30px;
}
.content-section li{
  margin-bottom:12px;
  color:#aaa;
}

/* TEAM MEMBER STYLES */
.member-avatar {
  width:100px;
  height:100px;
  background:linear-gradient(135deg, #00ffcc22, #00ffcc55);
  border-radius:50%;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  font-weight:bold;
  color:#00ffcc;
}
.member-role {
  color:#00ffcc;
  font-weight:600;
  margin-bottom:10px;
}
.member-bio {
  color:#aaa;
  font-size:14px;
  margin-bottom:15px;
}
.member-skills {
  display:flex;
  gap:8px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:15px;
}
.skill-tag {
  background:#00ffcc15;
  color:#00ffcc;
  padding:4px 12px;
  border-radius:20px;
  font-size:12px;
  border:1px solid #00ffcc33;
}

/* TEAM */
.team{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:40px;
  margin-top:60px;
}
.team-member{
  background:#101621;
  border-radius:20px;
  padding:30px;
  text-align:center;
  border:1px solid #ffffff08;
  transition:transform 0.3s ease;
}
.team-member:hover{
  transform:translateY(-5px);
  border-color:#00ffcc33;
}
.team-member h3{
  color:#00ffcc;
  margin:20px 0 10px;
}
.team-member p{
  color:#aaa;
  font-size:14px;
}

/* FOOTER */
footer{background:#05070c;padding:80px 8% 40px;margin-top:80px}
.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px
}
footer h4{color:#00ffcc;margin-bottom:20px}
footer ul{list-style:none}
footer li{margin-bottom:12px;font-size:14px;color:#aaa}
footer li:hover{color:#fff}
footer a:hover{color:#00ffcc}

.socials{display:flex;gap:20px;margin-top:20px}
.socials img{width:26px;opacity:.7;transition:.3s}
.socials img:hover{opacity:1}

.footer-bottom{
  margin-top:60px;
  padding-top:30px;
  border-top:1px solid #ffffff10;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  font-size:13px;
  color:#777
}

/* ===== CORRECTIONS RESPONSIVE ===== */
@media (max-width:900px){
  body{
    overflow-x:hidden;
  }
  
  .navbar{
    padding:0 20px;
  }
  
  .nav-links{
    position:fixed;
    top:70px;
    right:-100%;
    width:100%;
    height:calc(100vh - 70px);
    background:#05070c;
    flex-direction:column;
    padding:30px;
    gap:20px;
    transition:.3s;
  }
  
  .nav-links.active{
    right:0;
  }
  
  .menu-toggle{
    display:flex;
  }
  
  .page-header{
    padding:150px 6% 40px;
  }
  
  .page-header h1{
    font-size:32px;
  }
  
  .content-section{
    padding:60px 6%;
  }
  
  .footer-grid{
    grid-template-columns:1fr;
  }
  
  footer{
    padding:60px 6% 30px;
  }
  
  .logo-line1 {
    font-size:20px;
  }
  
  .logo-line2 {
    font-size:16px;
  }
}