/* Landing-page layout. Theme colors live in theme.css. */
body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

main {
  width: min(34rem, 100%);
}

h1 {
  margin: 0;
  color: var(--berry);
  font-size: clamp(2.8rem, 12vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

p {
  margin: 0.45rem 0 2.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.events {
  display: grid;
  gap: 0.9rem;
}

.event {
  min-height: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--surface), rgba(255, 201, 221, 0.72));
  box-shadow: 0 8px 24px rgba(139, 58, 98, 0.07);
  color: var(--ink);
  text-decoration: none;
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.event:nth-child(2) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(242, 124, 171, 0.28));
}

.event:hover,
.event:focus-visible {
  transform: translateY(-2px);
  border-color: var(--pink-400);
  box-shadow: var(--shadow);
  outline: none;
}

.event-name {
  font-size: 1.45rem;
  font-weight: 600;
}

.event-arrow {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--pink-600);
  color: white;
  font-size: 1.25rem;
  line-height: 1;
}
