:root {
  --purple: #5b3a95;
  --purple-dark: #2c1c4a;
  --green: #18c79a;
  --green-dark: #12a07a;
  --bg: #faf8fd;
  --card: #ffffff;
  --text: #3f3f46;
  --muted: #6b7280;
  --border: #ece7f5;
}

* {
  box-sizing: border-box;
}

body.events-page {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  color: var(--text);
}

.events-container {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.events-card {
  width: min(100%, 720px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(44, 28, 74, 0.08);
  padding: 48px 40px;
  text-align: center;
}

.events-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(91, 58, 149, 0.08);
  color: var(--purple);
}

.events-icon svg {
  width: 42px;
  height: 42px;
}

.events-kicker {
  margin: 0 0 10px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.events-title {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
  color: var(--purple-dark);
}

.events-description {
  margin: 0 auto 28px;
  max-width: 54ch;
  font-size: 1.03rem;
  line-height: 1.75;
  color: var(--muted);
}

.events-cta {
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 22px;
  border-radius: 20px;
  background: #f7f5fb;
  border: 1px solid #efeaf8;
}

.events-cta-text {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--purple-dark);
}

.events-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 14px 22px;
  border-radius: 14px;
  background: var(--green);
  color: #ffffff !important;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--green-dark);
  box-shadow: 0 10px 24px rgba(24, 199, 154, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.events-button:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(18, 160, 122, 0.28);
}

.events-button:focus-visible {
  outline: 3px solid rgba(91, 58, 149, 0.28);
  outline-offset: 3px;
}
.back-button {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--purple-dark);
  background: #f4f1fb;
  border: 1px solid #e7e0f3;
  transition: background 0.2s ease, transform 0.2s ease;
}

.back-button:hover {
  background: #ede7f8;
  transform: translateY(-1px);
}
@media (max-width: 640px) {
  .events-card {
    padding: 32px 20px;
    border-radius: 22px;
  }

  .events-cta {
    padding: 18px;
  }

  .events-button {
    width: 100%;
    min-width: 0;
  }
}