/* ===== BASE ===== */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #111;
  background: #fff;
  margin: 0;
  line-height: 1.7;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

/* ===== HEADER (LOGO LEFT / MENU RIGHT) ===== */
.header {
  border-bottom: 1px solid #eee;
  background: #fff;
}

/* Container */
.header .container {
  max-width: 1100px;
  margin: auto;
  padding: 30px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo links */
.logo {
  display: block;
  max-height: 60px;
}

/* Menü rechts */
.header nav {
  display: flex;
  gap: 30px;
}

/* Menü Links */
.header nav a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.header nav a:hover {
  color: #C1121F;
}

/* ===== HERO FINAL FIX (UNABHÄNGIG) ===== */
.hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  margin: 80px 0 60px 0;
  padding: 0 20px;
  text-align: center;
}

/* Inhalt begrenzen */
.hero h1,
.hero p {
  max-width: 800px;
  width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  color: #C1121F;
  margin-top: 40px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

/* ===== SECTIONS ===== */
h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #C1121F;
  margin-top: 40px;
  margin-bottom: 15px;
  text-align: left;
}

p {
  font-size: 16px;
  color: #444;
}

/* ===== EVENTS ===== */
.event {
  border-left: 4px solid #C1121F;
  padding-left: 14px;
  margin: 14px 0;
  font-size: 16px;
  transition: all 0.2s ease;
}

.event:hover {
  background: #fafafa;
}
.event a,
.artist a {
  font-weight: 500;
}

.event a:hover,
.artist a:hover {
  color: #C1121F;
}

/* ===== ARTISTS ===== */
.artist {
  margin: 10px 0;
  font-size: 16px;
  transition: all 0.2s ease;
}

.artist:hover {
  color: #C1121F;
}

/* ===== LINKS ===== */
a {
  color: #111;
  text-decoration: none;
  position: relative;
  transition: all 0.2s ease;
}

/* underline animation */
a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: #C1121F;
  transition: width 0.25s ease;
}

a:hover {
  color: #C1121F;
}

a:hover::after {
  width: 100%;
}