:root {
  --bg: #060607;
  --fg: #eae6df;
  --muted: #b8b3aa;
  --line: rgba(234, 230, 223, 0.14);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  letter-spacing: 0.02em;
}

a {
  color: inherit;
}

.hero {
  /* min-height: 100vh; */
  display: flex;
  align-items: flex-start; /* pushes content upward */
  justify-content: center;
  padding-top: clamp(4rem, 10vh, 8rem);
  padding-bottom: 3rem;
}

.hero__inner {
  width: min(100%, 1100px);
  text-align: center;
}

/* The logo scales smoothly from mobile to desktop */
.hero__logo {
  display: block;
  margin: 0 auto;
  width: min(92vw, 900px);
  height: auto;
}

/* Optional: keep the logo from becoming too tall on very short screens */
@media (max-height: 700px) {
  .hero__logo {
    width: min(88vw, 760px);
  }
}

.hero__tagline {
  margin: clamp(0.75rem, 2vw, 1.2rem) 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: clamp(1.3rem, 1.6vw, 1.15rem);
}

.hero__links {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  font-size: 1.2rem;
}

.section {
  max-width: 950px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

.section__title {
  margin: 0 0 1rem;
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--muted);
}

.section__text {
  margin: 0;
  line-height: 1.8;
  max-width: 75ch;
}

.events {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.event {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.event__date {
  color: var(--fg);
}
.event__info {
  color: var(--muted);
}

.link {
  text-decoration: none;
  border-bottom: 1px solid rgba(234, 230, 223, 0.25);
  padding-bottom: 0.15rem;
}
.link:hover {
  border-bottom-color: rgba(234, 230, 223, 0.65);
}

/* Desktop tweaks */
@media (min-width: 900px) {
  .section {
    padding: 4rem 1.25rem;
  }
}
