
body {
  margin: 0;
  padding: 0;
  background-color: #000;
  font-family: 'Arial Black', Gadget, sans-serif;
  color: white;
  scroll-behavior: smooth;
}

/* Header et titre */
header {
  background-color: #000;
  padding: 20px 0;
  border-bottom: 2px solid #ff5900;
  text-align: center;
}

header h1 {
  color: #ff5900;
  font-size: 2.5rem;
  display: inline;
}

header h1 span {
  color: white;
}

/* Navigation */
nav {
  margin-top: 10px;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}

nav ul li a {
  position: relative;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

nav ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #ff5900;
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: #ff5900;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Titres sections */
section h2 {
  color: #ff5900;
  border-bottom: 2px solid #ff5900;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

/* Contenu */
.content-section {
  padding: 60px 20px;
  text-align: center;
}

/* Glow-boxes */
.glow-box {
  border: 2px solid #ff5900;
  border-radius: 10px;
  padding: 20px;
  margin: 20px auto;
  max-width: 600px;
  background-color: #111;
  box-shadow: 0 0 15px #ff5900;
  text-align: left;
}

/* Images */
.glow-box img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Texte & Fluo */
.highlight {
  color: #ff0000;
  font-weight: bold;
}

.glow-box ul {
  padding-left: 20px;
}

.glow-box li {
  margin-bottom: 10px;
  color: white;
}

/* Footer */
footer {
  background-color: #000;
  color: white;
  text-align: center;
  padding: 20px 0;
  border-top: 2px solid #ff5900;
}
/* Link Cards dans liens externes */
.link-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border: 2px solid #ff5900;
  border-radius: 10px;
  background-color: #111;
  text-decoration: none;
  color: white;
  box-shadow: 0 0 10px #ff5900;
  transition: transform 0.3s, box-shadow 0.3s;
}

.link-card img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
}

.link-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px #ff5900;
}
PAGELOGO {
   display: inline-block;
   height: 1em; 
   width: auto; 
   vertical-align: middle; 
   margin-left: 10px; 
 }


/* Menu Toggle Button */
.menu-toggle {
  position: fixed;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background-color: #222;
  border: none;
  padding: 12px;
  cursor: pointer;
  z-index: 2100;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  height: 48px;
  width: 48px;
}

/* SIDE MENU */
.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  background-color: #000; /* Black background */
  box-shadow: 2px 0 10px rgba(255, 165, 0, 0.3);
  padding: 60px 20px 20px 20px;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 2000;
  overflow-y: auto;

  /* Rounded UI corner (on top-right side) */
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* When open */
.side-menu.open {
  transform: translateX(0);
}

/* Menu UL full height */
.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-start; /* or space-around/space-between if you want spacing */
}

/* Menu items */
.side-menu li {
  margin: 16px 0;
}

/* Links */
.side-menu a {
  text-decoration: none;
  color: #fff; /* white text on black background */
  font-size: 18px;
  font-weight: bold;
  transition: color 0.2s ease;
}

.side-menu a:hover {
  color: orange;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  z-index: 2101;
}

/* Burger Bars */
.menu-toggle .bar {
  width: 24px;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: 0.3s ease all;
}

/* Transform to X when menu is open */
.menu-toggle.open .bar1 {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open .bar2 {
  opacity: 0;
}
.menu-toggle.open .bar3 {
  transform: rotate(-45deg) translate(5px, -5px);
}
