/* Werbestudio – Site-Bar (fixe Leiste)
 *
 * Mobil  (< 768): nach 3 Sekunden einblenden, 60px
 * Ab 768:          erscheint beim Scrollen, dann oben fixiert, 80px
 */

.site-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 100;
  background: var(--bg-dark);
  color: var(--cream);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.site-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.site-bar__inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.site-bar__logo {
  order: 1;
  margin-right: auto;
}

.site-bar__logo img {
  width: 132px;
  height: auto;
}

.site-bar__contact {
  order: 2;
  margin-right: 1.1rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.site-bar__toggle {
  order: 3;
}

.site-bar__toggle img {
  width: 28px;
  height: auto;
}

@media (min-width: 768px) {
  .site-bar {
    height: 80px;
  }

  .site-bar__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .site-bar__toggle {
    order: 1;
    justify-self: start;
  }

  .site-bar__toggle img {
    width: 36px;
  }

  .site-bar__logo {
    order: 2;
    justify-self: center;
    margin-right: 0;
  }

  .site-bar__logo img {
    width: 168px;
  }

  .site-bar__contact {
    order: 3;
    justify-self: end;
    margin-right: 0;
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-bar {
    transition: none;
  }
}
