html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'party-vibes';
  src: url('../fonts/party-vibes.otf') format('opentype');
}

body {
  font-family: Arial, sans-serif;
  background: #FFFBDE;
  color: #3a2a20;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-wrapper {
  max-width: 80%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 80px 15px 30px;
  background: #FFFBDE;
  position: relative;
}

.hero h1 {
  font-size: 60px;
  font-family: 'party-vibes';
  letter-spacing: 4px;
  margin: 0;
}

.hero p {
  font-size: 16px;
  font-family: Arial, sans-serif;
  letter-spacing: 4px;
  margin-top: 15px;
}

/* Navigation */
.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  position: relative;
  top: 45px;
  z-index: 20;
}

.nav-btn,
.ticket-btn {
  display: inline-block;
  padding: 10px 30px;
  border: 2px solid #3a2a20;
  background: #FFFBDE;
  color: #3a2a20;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  border-radius: 0;
  transition: all 0.3s ease;
}

.nav-btn:hover,
.ticket-btn:hover {
  background: #3a2a20;
  color: #FFFBDE;
}

/* Kommende Termine */
.dates-page {
  padding: 90px 10% 60px;
  background: #F8C8D8;
}

.dates-page h2,
.archive h2 {
  font-family: 'party-vibes';
  font-size: 42px;
  margin: 0 0 10px 0;
}

/* Archiv */
.archive {
  padding: 60px 10% 70px;
  background: #FFFBDE;
}

.dates-subline {
  font-size: 18px;
  margin: 0 0 30px 0;
  letter-spacing: 1px;
}

/* Bild + Liste */
.dates-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.dates-image {
  flex: 0 0 320px;
}

.dates-image img {
  width: 100%;
  border-radius: 10px;
}

/* Terminlisten */
.dates-list {
  flex: 1;
  min-width: 280px;

  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  gap: 20px 40px;
}
.date-list-item {
  padding: 18px 0;
  border-bottom: 2px solid rgba(58, 42, 32, 0.18);
}

.date-main {
  margin: 0 0 8px 0;
  font-size: 24px;
  font-weight: bold;
}

.date-venue {
  margin: 0 0 14px 0;
  font-size: 18px;
  line-height: 1.4;
}

.archive-list-item .date-main {
  font-size: 22px;
}

.archive-list-item .date-venue {
  margin-bottom: 0;
}

.empty-text {
  margin: 0;
  font-size: 22px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .dates-layout {
    flex-direction: column;
  }

  .dates-image {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }

  .date-main {
    font-size: 20px;
  }

  .date-venue {
    font-size: 16px;
  }

  .nav-btn,
  .ticket-btn {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
}
/* Footer */

.footer {
  background: #F8C8D8;
  padding: 10px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.footer-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  text-decoration: none;
  font-family: 'party-vibes';
  color: #3a2a20;
  font-size: 18px;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

}
