/* =========================================================
   RESET & GLOBAL BASE
   Ziel: konsistente Basis, kein Layout-Shift
   ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  background-color: rgb(10, 10, 10);
  color: #fff;

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  scroll-behavior: smooth;
}

/* Anchor-Offsets (wegen fixed Navbar) */
#upcoming,
#featured {
  scroll-margin-top: 92px;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1 {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: clamp(32px, 5.5vw, 64px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: clamp(12px, 2.0vw, 24px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* =========================================================
   NAVBAR (Fixed Header)
   Layout: 3-slot grid (left / center / right)
   ========================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 72px;

  padding: 0 24px;
  z-index: 1000;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* Navbar Slots */
.nav-left {
  justify-self: start;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-center {
  justify-self: center;
  display: inline-flex;
  align-items: center;
}

.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
}

/* Navbar Logo */
.nav-logo {
  height: 50px;
  width: auto;
  display: block;

  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

/* Hover-Glow nur im Center-Slot */
.nav-center:hover .nav-logo {
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.25))
    drop-shadow(0 0 20px rgba(255, 255, 255, 0.15));
}

/* CTA Button in Navbar */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 35px;
  padding: 0 12px;
  border-radius: 10px;

  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;

  color: #000;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);

  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;

  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
  color: #000;
}

/* Mobile Navbar */
@media (max-width: 700px) {
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .nav-left {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }

  .nav-logo {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    height: 30px;
    width: auto;
  }

  .nav-right,
  .nav-cta {
    display: none;
  }
}

/* Icon Buttons (z.B. Insta/Mail) */
.icon-link {
  width: 36px;
  height: 36px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  opacity: 0.85;
  transition: transform 120ms ease, opacity 120ms ease;
}

.icon-link img {
  width: 36px;
  height: 36px;
  display: block;

  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

.icon-link:hover {
  transform: translateY(-1px);
  opacity: 1;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  min-height: 100vh;
  width: 100%;

  background-image: url("Background1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}

/* Dark Overlay for readability */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    rgba(10, 10, 10, 0.8) 65%,
    rgba(10, 10, 10, 1) 90%
  );
}

.hero-content {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
  padding: 0 24px;

  max-width: min(1000px, 90vw);
  gap: 15px;
}

.hero-logo {
  width: clamp(300px, 70vw, 700px);
  height: auto;

  padding-bottom: 60px;

  filter:
    drop-shadow(0 0 10px rgba(10, 10, 10, 0.8))
    drop-shadow(0 0 22px rgba(10, 10, 10, 0.8));

  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.hero-product {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: clamp(18px, 2vw, 24px);

  letter-spacing: 0.25em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}

.hero-claim {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: clamp(22px, 4vw, 50px);

  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 1);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}

@media (max-width: 700px) {
  .hero-logo {
    padding-bottom: 30px;
  }
}

/* =========================================================
   FEATURED SECTION (Highlight Event)
   ========================================================= */
.featured {
  position: relative;
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
}


.feat-event {
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 650px;
  height: 363px;

  margin: 80px 0;
  padding: 0 24px;

  background-image: url("Background2.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.feat-flyer {
  align-items: center;
  justify-content: center;
}

.feat-flyer img {
  height: 270px;
  width: auto;
}

.feat-text {
  max-width: 60%;
  align-items: center;
  justify-content: center;
  font-family: "Oswald";
}

.feat-date {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1;
}

.feat-einlass {
  font-size: 24px;
}

.feat-loc {
  font-size: 24px;
  padding-bottom: 38px;
}

.feat-beschreibung {
  font-size: 16px;
}

.feat-cta {
  display: flex;
  justify-content: flex-end;
}

.feat-cta a {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;

  background-color: rgba(255, 255, 255, 0.8);
  color: #000;

  font-family: "Oswald";
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;

  text-decoration: none;
  padding: 4px 24px;

  transition: transform 120ms ease, background-color 120ms ease;
}

.feat-cta a:hover {
  transform: translateY(-1px);
  background-color: rgba(255, 255, 255, 1);
  color: #000;
}

/* Mobile: Featured Event ausgeblendet */
@media (max-width: 849px) {
  .feat-event {
    display: none;
  }

  h2 {
    padding-bottom: 64px;
  }
}

/* =========================================================
   EVENTS LIST (Upcoming)
   ========================================================= */
.events {
  background: rgb(10, 10, 10);
  font-family: "MyFont", system-ui, sans-serif;

  position: relative;
  padding-bottom: 32px;
}

.events-wrap {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.events-list {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;

  overflow: hidden;

  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(6px);
}

.event-row {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 18px;
  padding: 18px 18px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.event-row:first-child {
  border-top: none;
}

.event-meta {
  display: flex;
  align-items: center;

  gap: clamp(12px, 4vw, 64px);
  min-width: 0;
}

.event-date {
  width: 72px;
  text-align: left;

  font-family: "Oswald", sans-serif;
  font-size: clamp(1.5rem, 1.5vw, 2rem);

  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
}

.event-name {
  font-family: "Oswald", sans-serif;
  font-size: clamp(0.9rem, 1.9vw, 1.5rem);

  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.event-loc {
  margin-top: 4px;

  font-family: "Oswald", sans-serif;
  font-size: clamp(0.8rem, 1.5vw, 1rem);

  color: rgba(255, 255, 255, 0.7);
}

.event-ticket {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 48px;
  padding: 0 16px;

  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.14);

  color: #fff;
  text-decoration: none;

  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;

  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.event-ticket:hover {
  transform: translateY(-1px);
  color: #000;
  background: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 0.22);
}

/* Sold-out state */
.event-row.is-soldout {
  opacity: 0.55;
}

/* =========================================================
   PHOTO STRIP (Scrolling Gallery)
   Hinweis: bewusst breiter als Viewport (120vw). Overflow-X wird gekappt.
   ========================================================= */
.photo-strip {
  position: relative;
  background: rgb(10, 10, 10);

  padding: 60px 120px;

  overflow-x: hidden; /* entscheidend: verhindert horizontales Scrollen */
  overflow-y: visible;
}

.photo-strip__inner {
  width: 120vw; /* bewusst oversized */
  margin-left: calc(50% - 53vw);
  overflow: hidden;
}

.photo-strip__track {
  display: flex;
  gap: 10px;

  width: max-content;
  overflow-x: hidden;

  animation: photostrip-move 70s linear infinite;
  will-change: transform;
}

@keyframes photostrip-move {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.photo-strip__track img {
  flex: 0 0 220px;
  width: 220px;
  height: 220px;

  border-radius: 4px;
  aspect-ratio: 1 / 1;
  object-fit: cover;

  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;

  scroll-snap-align: center;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #000;
  padding: 40px 0 32px;
}

.footer-inner {
  width: min(1100px, 90vw);
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* Footer Logo */
.footer-logo {
  height: 35px;
  width: auto;

  opacity: 0.9;
  transition: opacity 120ms ease;

  user-select: none;
  -webkit-user-drag: none;
}

.footer-logo-link:hover .footer-logo {
  opacity: 1;
}


/* Footer Links */
.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;

  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;

  transition: color 120ms ease;
}

.footer-links a:hover {
  color: #fff;
}
