:root {
  --violet-fonce: #4A148C;
  --violet-clair: #B39DDB;
  --rose: #F8EAF6;
  --fond: #FFF8F5;
  --texte: #2B2B2B;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: var(--fond);
  color: var(--texte);
  margin: 0;
  padding-top: 90px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, var(--violet-fonce), var(--violet-clair));
  color: white;
  padding: 15px 40px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

.nav-links a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}

.member-profile {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.profile-header {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.profile-header img {
  width: 200px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.profile-info h1 {
  font-family: "Poppins", sans-serif;
  color: var(--violet-fonce);
  margin-bottom: 5px;
}

.profile-bio, .profile-links {
  margin-top: 40px;
}

.profile-bio h2, .profile-links h2 {
  font-family: "Poppins", sans-serif;
  color: var(--violet-fonce);
  margin-bottom: 10px;
}

.profile-links ul {
  list-style: none;
  padding: 0;
}

.profile-links a {
  color: var(--violet-fonce);
  text-decoration: none;
  font-weight: 500;
}

.profile-links a:hover {
  color: var(--violet-clair);
}

footer {
  text-align: center;
  padding: 20px;
  background: var(--violet-fonce);
  color: white;
}

/* --- FOOTER GLOBAL --- */
.footer-global {
  background: linear-gradient(90deg, var(--violet-fonce), var(--violet-clair));
  color: white;
  padding: 50px 20px 20px;
  font-family: "Noto Sans JP", sans-serif;
}

.footer-content {
  display: flex;
  justify-content: center; /* ✅ centré (plus besoin d'espace pour la navigation) */
  flex-wrap: wrap;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

.footer-section h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  padding-bottom: 5px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--rose);
}

/* --- RÉSEAUX --- */
.socials a {
  color: white;
  font-size: 1.6rem;
  margin: 0 8px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.socials a:hover {
  color: var(--rose);
  transform: scale(1.1);
}

/* --- BAS DE PAGE --- */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer-bottom a {
  color: var(--rose);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
}
