body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: #191a23;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

@font-face {
    font-family: "HelveticaNeue-Bold";
    src:
        url("../fonts/HelveticaNeue-Bold.woff2") format("woff2"),
        url("../fonts/HelveticaNeue-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: "HelveticaNeue-Medium";
    src:
        url("../fonts/HelveticaNeue-Medium.woff2") format("woff2"),
        url("../fonts/HelveticaNeue-Medium.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "HelveticaNeue-Roman";
    src:
        url("../fonts/HelveticaNeue-Roman.woff2") format("woff2"),
        url("../fonts/HelveticaNeue-Roman.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "BebasNeue-Bold";
    src:
        url("../fonts/BebasNeue-Bold.woff2") format("woff2"),
        url("../fonts/BebasNeue-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
}



.site-notification {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 30px;
  width: 100%;
  background: #dc1d52;
  color: #ffffff;
  font-family: "HelveticaNeue-Bold", sans-serif;
  font-size: 12px;
  z-index: 10001;
}
/* =========================
   HEADER
========================= */
.site-header {
  position: sticky;
  top: 30px; /* hoogte van je banner */
  left: 0;
  width: 100%;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 40px;
  box-sizing: border-box;

  z-index: 10000;
  
  font-family: "HelveticaNeue-Bold", sans-serif;

  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(20, 20, 25, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* logo / nav / profile */
.logo {
  flex: 0 0 auto;
  height: 35px;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: white;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
  font-size: 14px;
}

.nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: 0.3s;
  z-index: -1;
  border-radius: 6px;
}

.nav a:hover::before {
  opacity: 1;
}

.login-button {
  padding: 8px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}

.login-button:hover {
  background: rgba(255,255,255,0.15);
}

.profile-wrapper {
  position: relative;
  display: inline-block;
}

.profile-icon img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
}

/* dropdown */
.dropdown {
  position: absolute;
  right: 0;
  top: 50px;

  background: rgba(20,20,25,.9);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;

  display: none;
  flex-direction: column;
  min-width: 180px;

  z-index: 9999;
}

.dropdown a {
  padding: 10px;
  color: white;
  text-decoration: none;
}

.dropdown a:hover {
  background: rgba(255,255,255,0.08);
}

.dropdown.show {
  display: flex;
}

/* =========================
   BACKGROUND FADE
========================= */
.fade-layer {
  position: fixed;
  inset: 0;
  background: #15141b;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}