/* HEADER GLOBAL */
.site-header {
  position: fixed;
  width: 100%;
  height: 80px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-sizing: border-box;
}

/* LOGO */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-logo-img {
  height: 60px;
  width: auto;
}

.site-logo-text {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* NAV */
.site-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.site-nav a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.site-nav a:hover {
  color: #aaa;
}

/* DROPDOWN */
.site-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.site-dropdown-toggle {
  color: white;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* MENU */
.site-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  min-width: 210px;
  background: rgba(15,15,15,0.96);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  z-index: 2000;

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0s linear 1s;
}

.site-dropdown:hover .site-dropdown-menu,
.site-dropdown.open .site-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0s;
}

.site-dropdown-menu a {
  padding: 12px 18px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.site-dropdown-menu a:hover {
  background: rgba(255,255,255,0.06);
}

/* NOTIF RONDE PARTOUT */
.notif-badge {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: #ff3b3b;
  color: white;
  font-size: 11px;
  font-weight: bold;
  line-height: 1;
  flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  .site-header {
    padding: 20px;
    flex-direction: column;
    height: auto;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}