:root {
  --garnet: #73000a;
  --orange: #ff7f32;
  --white: #ffffff;
  --gray: #f5f5f5;
  --dark-gray: #222;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  margin: 0;
  background: var(--gray);
  color: var(--dark-gray);
}

/* Hero Section */
.event-hero {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.event-hero .overlay {
  background: rgba(115, 0, 10, 0.75);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.event-hero h1 {
  font-size: 2.5rem;
  margin: 0;
}

.event-hero .subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Summary */
.event-summary {
  background: var(--white);
  max-width: 900px;
  margin: 2rem auto;
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.event-summary h2 {
  color: var(--garnet);
  text-align: center;
  margin-bottom: 1rem;
}

/* Stats Grid */
.event-stats {
  max-width: 1000px;
  margin: auto;
  padding: 2rem 1.5rem;
  text-align: center;
}

.event-stats h2 {
  color: var(--garnet);
  margin-bottom: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.stat {
  background: var(--white);
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.stat h3 {
  color: var(--garnet);
  margin-bottom: 0.3rem;
}

/* Rounds */
.rounds-section {
  background: linear-gradient(135deg, var(--garnet), var(--orange));
  color: var(--white);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.rounds-section h2 {
  margin-bottom: 1rem;
}

.round-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 400px;
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Memories */
.memories-section {
  background: var(--white);
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.photo-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.photo-gallery img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Looking Ahead */
.looking-ahead {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--gray);
}

.looking-ahead h2 {
  color: var(--garnet);
}

.btn {
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  display: inline-block;
  margin-top: 1rem;
  transition: background 0.3s ease;
}

.btn:hover {
  background: var(--garnet);
}

/* Footer */
.event-footer {
  text-align: center;
  padding: 1rem;
  background: var(--garnet);
  color: var(--white);
  font-size: 0.9rem;
}

.event-footer a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}

.event-footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 700px) {
  .event-hero h1 {
    font-size: 2rem;
  }

  .photo-gallery img {
    width: 100%;
    height: auto;
  }
}
