/* =================================================
   05-header.css – Header schwarz + höher (minimal)
   ================================================= */

.site-header{
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;

  background: #000; /* komplett schwarz */
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 40px;

}

/* Container bleibt wie gehabt */
.site-header .container{
  max-width:1320px;
  margin:0 auto;
  padding:0 var(--gutter);
}

/* ✅ Header höher */
.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 22px 0; /* vorher kleiner -> jetzt höher */
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  text-decoration:none;
  color:var(--text);
}

.brand .logo{
  width:40px;
  height:40px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:rgba(99,212,113,.10);
  border:1px solid rgba(99,212,113,.22);
}

.brand .name{
  font-size:18px;
  letter-spacing:.2px;
}

/* Actions */
.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Burger */
.burger{
  width:46px;
  height:46px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.burger-lines{ width:22px; }
.burger-lines span{
  display:block;
  height:2px;
  background:var(--text);
  border-radius:2px;
}
.burger-lines span+span{ margin-top:6px; }

/* Overlay */
.drawer-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.65);
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
  z-index:500;
}
.drawer-overlay.open{
  opacity:1;
  pointer-events:auto;
}

/* Drawer */
.drawer{
  position:fixed;
  top:0;
  right:0;
  height:100vh;
  width:360px;
  background:#0b0b0d;
  border-left:1px solid rgba(255,255,255,.06);
  box-shadow:-20px 0 60px rgba(0,0,0,.75);
  transform:translateX(100%);
  transition:transform .18s ease;
  z-index:600;
  display:flex;
  flex-direction:column;
}
.drawer.open{ transform:translateX(0); }

.drawer-head{
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.drawer-title{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
}

.drawer-nav{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.drawer-nav a{
  padding:12px 12px;
  border-radius:12px;
  text-decoration:none;
  color:rgba(255,255,255,.75);
  background:rgba(255,255,255,.02);
}
.drawer-nav a:hover{
  background:rgba(255,255,255,.06);
  color:#fff;
}

.drawer-nav hr.sep{
  border:none;
  border-top:1px solid rgba(255,255,255,.06);
  margin:10px 0;
}
