:root {
  --bg: #0b1220;
  --panel: #0f1724;
  --panel-soft: #141c2c;
  --text: #e6eef6;
  --muted: #9aa4b2;
  --accent: #38bdf8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* HEADER */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 110px;
  padding: 0 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 18, 32, .92);
  backdrop-filter: blur(10px);
  z-index: 1002;
}

header strong { font-size: 1.7rem; font-weight: 600; word-spacing: 0.7rem; }
nav a { margin-left: 28px; color: var(--muted); font-size: 1.15rem; font-weight: 600; text-decoration: none; transition: .3s; }
nav a:hover { color: var(--text); text-shadow: 0 0 1px var(--text); }

/* HERO */
.hero {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 700px;
  margin-top: 110px;
  background: url("img/header_logo/herobild.png") center/cover no-repeat;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.9));
}

.hero-content { position: relative; z-index: 1; width: 100%; display: flex; justify-content: center; }
.hero h2 { font-size: 3.6rem; padding: 1.4rem 2.6rem; border-radius: 16px; background: rgba(0,0,0,.55); text-align: center; }

.hero.hide { opacity: 0; transform: translateY(-140px); pointer-events: none; transition: opacity .6s, transform .6s; }

/* MAIN */
main { position: relative; z-index: 1001; margin-top: 810px; background: var(--bg); }
section { padding: 90px 20%; }
.alt { background: var(--panel); }

/* ÜBERSCHRIFTEN OPTIMIERT */
#intro h3, #events h3, #map h3, .list h3 { 
  font-size: 3rem; 
  margin-bottom: 30px; 
  font-weight: 800;
}
#events h3 { text-align: center; }

#intro p { font-size: 1.45rem; color: var(--muted); line-height: 1.9; max-width: 960px; }

/* EVENTS */
.events-row { display: flex; align-items: center; justify-content: center; gap: 32px; }
.event-arrow {
  width: 72px; height: 72px; border-radius: 50%; aspect-ratio: 1/1;
  background: rgba(255,255,255,.08); border: none;
  color: white; font-size: 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: .15s;
}
.event-arrow:hover { background: rgba(255,255,255,.16); }

.event-viewport { overflow: hidden; flex-grow: 1; }
.event-wrapper { display: flex; gap: 30px; margin: 20px 0; transition: transform .65s cubic-bezier(.22,.9,.3,1); }
.event {
  min-width: calc(50% - 15px);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border-radius: 20px; padding: 16px; box-shadow: 0 8px 24px rgba(2,6,12,0.6);
}
.event img { width: 100%; height: 180px; object-fit: cover; border-radius: 14px; margin-bottom: 12px; }

/* DRINKS */
#drinks { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; }
.list { background: var(--panel); padding: 35px; border-radius: 20px; }
.list td { padding: 12px 0; font-size: 1.2rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.mix { background: var(--panel-soft); padding: 22px; border-radius: 18px; margin-bottom: 20px; font-size: 1.15rem; }

/* MAP & REVIEWS OPTIMIERT */
.map-wrap { background: var(--panel); padding: 22px; border-radius: 20px; margin-bottom: 50px; }
iframe { width: 100%; aspect-ratio: 21 / 9; border-radius: 14px; border: 0; }

.review-wrap { 
  border-top: 2px solid rgba(255,255,255,.15); 
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px; /* Gleicher Abstand zwischen den Review-Containern */
}
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.review { background: rgba(255,255,255,.06); padding: 20px; border-radius: 16px; border-left: 4px solid var(--accent); }
.review-seperator { display: none; } /* Entfernt den ungleichmäßigen Abstand */
.stars { color: var(--accent); margin-bottom: 6px; }

/* FOOTER */
footer { padding: 30px 10%; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,.06); color: var(--muted); }
footer .right { display: flex; align-items: center; gap: 28px; }
footer a { color: var(--muted); text-decoration: none; transition: .3s; }
footer a:hover { color: var(--text); }