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

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;

  background: linear-gradient(rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.55)),
    url("./images/neil.png");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  color: #e5e7eb;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

.hero {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  text-align: center;
  padding: 3rem 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}

.container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
  display: grid;
  gap: 1.5rem;
}

.card {
  background: #111827;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.card h2 {
  margin-bottom: 0.75rem;
  color: #c4b5fd;
}

.list {
  margin-left: 1.25rem;
}

.list li {
  margin-bottom: 0.5rem;
}

.highlight {
  border: 2px solid #7c3aed;
  background: linear-gradient(180deg, #111827, #1f2933);
}
.attendees {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.attendee {
  display: flex;
  align-items: center;
  gap: 0.75rem;

  background: #0f172a;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
}

.attendee img {
  width: 100px;
  height: 100px;
  border-radius: 35%;
  object-fit: cover;
  border: 2px solid #7c3aed;
}

.attendee span {
  font-weight: 500;
  font-size: 1.1rem;
}

.schedule {
  list-style: none;
  margin-top: 1rem;
}

.schedule > li {
  margin-bottom: 1rem;
}

.schedule > li > strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #c4b5fd;
}

.schedule ul {
  margin-left: 1.25rem;
  list-style: disc;
}

.schedule ul li {
  margin-bottom: 0.4rem;
}
.muted {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: #9ca3af;
}

.travel-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.travel-block {
  background: #0f172a;
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid rgba(196, 181, 253, 0.15);
}

.travel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.travel-title {
  font-weight: 700;
  color: #c4b5fd;
}

.travel-sub {
  font-size: 0.9rem;
  color: #9ca3af;
}

.travel-tag {
  font-size: 0.8rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.6);
  color: #e5e7eb;
  white-space: nowrap;
}

.travel-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem 1rem;
  margin-bottom: 0.75rem;
}

.travel-people ul {
  margin-top: 0.35rem;
  margin-left: 1.25rem;
}

.travel-notes {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(196, 181, 253, 0.12);
  color: #d1d5db;
  font-size: 0.9rem;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #9ca3af;
}
