/* Corps principal */
body {
  background-color: #000;
  color: #a3c1ff;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.menu-harmosys {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.menu-harmosys a {
  color: #aac4ff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu-harmosys a:hover {
  color: #ffffff;
}

/* Header */
header {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 1rem 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #7bb0ff;
}

/* Supprimer liens non désirés */
header nav ul li:nth-child(3) {
  display: none; /* masque 'Page d’exemple' */
}




/* Liens menu */
header nav ul li a {
  color: #7bb0ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

header nav ul li a:hover {
  color: #c3dbff;
  text-decoration: underline;
}

/* Logo centré */
#logo {
  max-width: 220px;
  height: auto;
  margin: 3rem auto 2rem;
  display: block;
  animation: pulse 3s infinite ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* Citation */
blockquote {
  color: #8fb9ff;
  font-style: italic;
  font-size: 1.6rem;
  margin: 2rem auto 1.5rem;
  max-width: 700px;
}

/* Présentation */
.presentation {
  color: #9bbcff;
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 4rem auto;
}

/* Footer */
footer {
  color: #666;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 1rem 0;
  border-top: 1px solid #222;
  margin-top: auto;
}
.site-info,
footer,
#colophon {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}


.intro-title {
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
}

 .presentation-title {
  display: block;
  width: 80%;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 2000;
  color: #aaccff;
  margin: 2rem auto;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  color: #c4dfff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  text-align: center;
  background: url('<?php echo get_template_directory_uri(); ?>/assets/bg.jpg') no-repeat center center fixed;
  background-size: cover;
  position: relative;
}

body {
  background-image: url('assets/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 0.5 = 50% d'opacité */
  z-index: -1;
}
