/* Event Details Page — light theme, mobile-first */

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow: auto; }

body {
  font-family: var(--sans);
  background: #f4f8f5;
  color: #0c1a2e;
  min-height: 100dvh;
}

/* === Header === */
.event-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}
.event-header .badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #167A5A;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.event-header .title {
  font-size: 14px;
  font-weight: 600;
  color: #0c1a2e;
  letter-spacing: -.01em;
}
.event-header .tag {
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #999;
  flex-shrink: 0;
}

/* === Main Content === */
.event-main {
  max-width: 520px;
  margin: 0 auto;
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* === Confirmation Badge === */
.confirmation-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #167A5A;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px -8px rgba(22, 122, 90, 0.4);
}
.confirmation-badge svg {
  width: 36px;
  height: 36px;
}

/* === Title === */
.event-title {
  text-align: center;
}
.event-title .kicker {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #167A5A;
  margin-bottom: 8px;
}
.event-title .heading {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: #0c1a2e;
}
.event-title .sub {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin-top: 8px;
  line-height: 1.5;
}

/* === Event Info Card === */
.event-info-card {
  width: 100%;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  overflow: hidden;
}
.event-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
}
.event-info-row:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}
.event-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f0f7f3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.event-info-text {
  flex: 1;
  min-width: 0;
}
.event-info-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 2px;
}
.event-info-value {
  font-size: 15px;
  font-weight: 600;
  color: #0c1a2e;
  line-height: 1.4;
}
.event-info-valuesmall {
  font-size: 13px;
  color: #666;
  font-weight: 400;
  margin-top: 2px;
}

/* === CTA Stack === */
.cta-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .15s ease;
  min-height: 52px;
}
.cta-btn:active {
  transform: scale(.98);
}
.cta-btn.primary {
  background: #25D366;
  border: 2px solid #25D366;
  color: #fff;
  box-shadow: 0 2px 8px rgba(37,211,102,.25);
}
.cta-btn.primary:hover {
  background: #20bd5a;
  border-color: #20bd5a;
}
.cta-btn.secondary {
  background: #fff;
  border: 2px solid #0c1a2e;
  color: #0c1a2e;
}
.cta-btn.secondary:hover {
  background: #f8f8f8;
}
.cta-btn.accent {
  background: #002FA7;
  border: 2px solid #002FA7;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,47,167,.2);
}
.cta-btn.accent:hover {
  background: #002890;
  border-color: #002890;
}

/* === Presentation Link === */
.presentation-link {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #002FA7;
  text-decoration: none;
  padding: 12px 20px;
  border: 1px solid #d0d8f0;
  border-radius: 10px;
  background: #f0f4ff;
  text-align: center;
  transition: all .15s;
  display: block;
}
.presentation-link:hover {
  background: #e4ecff;
}

/* === Footer === */
.event-footer {
  text-align: center;
  font-size: 12px;
  color: #999;
  line-height: 1.6;
}
.event-footer strong {
  color: #666;
  font-weight: 500;
}

/* === Desktop === */
@media (min-width: 600px) {
  .event-main {
    padding: 48px 32px 32px;
    gap: 28px;
  }
  .event-title .heading {
    font-size: 28px;
  }
  .event-info-card {
    flex-direction: row;
  }
}
