/* 
// Pfad: css
// Datei: header.css 
*/

/* ============================= */
/*         SITE HEADER           */
/* ============================= */
.site-header {
  position: fixed;
  top: 0; 
  left: 0; 
  right: 0; 
  width: 100%;
  height: 64px;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  background: var(--color-dark);
  padding: 0 16px;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* ============================= */
/*         HAMBURGER             */
/* ============================= */
.hamburger {
  grid-column: 1;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, #fff, #f8f9fa, #fff);
  background-size: 200% 200%;
  border-radius: 2px;
  animation: shimmerWhite 4s ease-in-out infinite;
}

@keyframes shimmerWhite {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

/* ============================= */
/*         LOGO / TITEL          */
/* ============================= */
.logo-wrap {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-title {
  font-family: var(--font-family-primary);
  font-size: 1.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(270deg, #39FF14, #00f2ff, #ff00ff, #ff073a, #39FF14);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbowFlow 12s ease-in-out infinite;
  margin: 0;
}

@keyframes rainbowFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ============================= */
/*       SPACER RECHTS           */
/* ============================= */
.header-spacer {
  display: none;
}

/* TEST */


.site-title {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 2rem;
  font-weight: bold;
}

.site-title .top10 {
  font-family: 'Fredoka', sans-serif;
  color: #fff;
}

.site-title .megas {
  font-family: 'Anton', sans-serif;
  background: linear-gradient(90deg, #f0f, #0ff, #ff0);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: colorShift 6s infinite linear;
}

.site-title .de {
  font-family: 'Italianno', cursive;
  font-size: 1.2rem;
  color: #ccc;
  margin-left: 2px;
}

@keyframes colorShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
