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

body {
  background: #fff;
  color: #111;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  overflow-x: hidden;
}

.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px;
}

.hero-logo {
  width: min(90vw, 900px);
  height: auto;
}

.dates {
  min-height: 100vh;
  padding: 20px 20px 160px;
  max-width: 700px;
  margin: 0 auto;
}

.dates-title {
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.date-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.date-entry {
  font-weight: 400;
  font-size: 1.15rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.date-entry.visible {
  opacity: 1;
  transform: translateY(0);
}
