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

body {
  font-family: system-ui, -apple-system, Arial, sans-serif;
  background: #fff;
  color: #222;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
}

.logo a {
  text-decoration: none;
  color: #111;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.logo-sub {
  font-size: 10px;
  letter-spacing: 2px;
  color: #888;
  margin-top: 2px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 4px 8px;
  color: #222;
  line-height: 1;
}

.navlinks {
  display: flex;
  gap: 24px;
  align-items: center;
}

.navlinks a {
  text-decoration: none;
  color: #222;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.navlinks a.active {
  text-decoration: underline;
  text-underline-offset: 6px;
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .navlinks {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
    z-index: 99;
  }

  .navlinks.open { display: flex; }

  .navlinks a {
    padding: 14px 28px;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
  }

  .navlinks a:last-child { border-bottom: none; }
}

.page-hero{
  padding: 56px 60px 22px;
  background: #fff;            /* screenshot is white */
  border-top: 1px solid #eee;  /* subtle line like Shopify */
}

.page-hero h1{
  margin: 0;
  font-size: 44px;
  font-weight: 400;
  color: #111;
}


/* EVENTS PAGE */
.events {
  padding: 40px 60px 90px;
  background: #fff;
}

.events-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 90px; /* big spacing between sections like screenshot */
}

.event-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr; /* image bigger than text */
  gap: 80px;
  align-items: start;
}

.event-row.reverse {
  grid-template-columns: 1fr 1.25fr;
}

.event-row.reverse .event-media {
  order: 2; /* puts image on right */
}

.event-row.reverse .event-info {
  order: 1; /* text on left */
}

/* image styling */
.event-media img {
  width: 100%;
  height: auto;
  display: block;
}

/* text block */
.event-info {
  padding-top: 20px; /* pushes text down a bit like screenshot */
  max-width: 520px;
}

.event-info h2 {
  margin: 0 0 18px;
  font-size: 32px;
  font-weight: 500;
  color: #111;
}

.event-info p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.9;
  color: #666;
}

/* button like screenshot */
.btn {
  display: inline-block;
  margin-top: 22px;
  background: #111;
  color: #fff;
  text-decoration: none;
  padding: 12px 26px;
  font-size: 12px;
  letter-spacing: 1px;
}

/* responsive */
@media (max-width: 900px) {
  .events { padding: 30px 20px 70px; }

  .event-row,
  .event-row.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .event-row.reverse .event-media,
  .event-row.reverse .event-info {
    order: initial;
  }

  .event-info {
    padding-top: 0;
    max-width: 100%;
  }
}


/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid #eee;
  padding: 48px 28px 36px;
  text-align: center;
}
.footer-logo { font-size: 16px; letter-spacing: 0.5px; color: #111; margin-bottom: 4px; }
.footer-logo-sub { font-size: 9px; letter-spacing: 2.5px; color: #aaa; margin-bottom: 28px; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 20px; margin-bottom: 20px; }
.footer-links a { text-decoration: none; color: #888; font-size: 12px; letter-spacing: 0.5px; }
.footer-links a:hover { color: #111; }
.footer-links span { color: #ddd; font-size: 12px; }
.footer-copy { font-size: 11px; color: #bbb; letter-spacing: 0.5px; }
@media (max-width: 768px) {
  .footer-links span { display: none; }
  .footer-links { gap: 10px 14px; }
}