/* Breadfest Styles - Fun and Playful! */

/* CSS Variables */
:root {
  --color-bread-light: #FFF8E1;
  --color-bread-cream: #F5E6C8;
  --color-bread-gold: #D4A843;
  --color-bread-brown: #8B4513;
  --color-bread-dark: #5D2E0C;
  --color-accent: #FF6B35;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-white: #FFFFFF;
  --color-gold: #FFD700;
  --color-silver: #C0C0C0;
  --color-bronze: #CD7F32;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bread-light);
  line-height: 1.6;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-bread-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }

a {
  color: var(--color-bread-brown);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-accent);
}

/* Layout */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Header */
.site-header {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-bread-dark);
}

.logo-icon {
  font-size: 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  transition: background 0.2s;
}

.nav-links a:hover {
  background: var(--color-bread-cream);
}

/* Footer */
.site-footer {
  background: var(--color-bread-dark);
  color: var(--color-bread-cream);
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
}

.footer-icon {
  font-size: 1.2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-bread-gold);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-bread-brown);
  color: var(--color-white);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-bread-brown);
  border: 2px solid var(--color-bread-gold);
}

.btn-secondary:hover {
  background: var(--color-bread-cream);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--color-bread-cream) 0%, var(--color-bread-light) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hero-emoji {
  font-size: 2.5rem;
}

.hero-tagline {
  font-size: 1.3rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.hero-emojis {
  font-size: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

/* Events Overview */
.events-overview {
  margin-bottom: 4rem;
}

.events-overview h2 {
  margin-bottom: 1rem;
}

.intro {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
}

.timeline-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.timeline-year {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 1rem;
  background: var(--color-bread-gold);
  color: var(--color-white);
  border-radius: var(--radius-md);
}

.year-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}

.year-theme {
  font-size: 0.9rem;
  text-align: center;
}

.timeline-content {
  flex: 1;
}

.event-title {
  margin-bottom: 0.5rem;
}

.event-title a {
  color: var(--color-bread-dark);
}

.event-date, .event-location {
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

.event-tagline {
  font-style: italic;
  color: var(--color-bread-brown);
  margin-bottom: 1rem;
}

/* Highlights */
.highlights {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 3rem;
}

.highlights h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.highlights > p {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.highlight-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.highlight-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--color-bread-light);
  border-radius: var(--radius-md);
  transition: transform 0.2s;
}

.highlight-card:hover {
  transform: scale(1.05);
}

.highlight-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.highlight-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.highlight-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* CTA */
.cta {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, var(--color-bread-gold) 0%, var(--color-bread-brown) 100%);
  border-radius: var(--radius-lg);
  color: var(--color-white);
}

.cta h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta p {
  margin-bottom: 1.5rem;
}

.cta .btn-primary {
  background: var(--color-white);
  color: var(--color-bread-dark);
}

.cta .btn-primary:hover {
  background: var(--color-bread-cream);
}

/* Page Header */
.page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.breadcrumb {
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.page-intro {
  font-size: 1.2rem;
  color: var(--color-text-light);
}

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.event-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.event-card-header {
  background: linear-gradient(135deg, var(--color-bread-gold) 0%, var(--color-bread-brown) 100%);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.event-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
}

.event-theme-tag {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-size: 0.9rem;
}

.event-card-body {
  padding: 1.5rem;
}

.event-card-title {
  margin-bottom: 0.5rem;
}

.event-card-title a {
  color: var(--color-bread-dark);
}

.event-card-tagline {
  color: var(--color-text-light);
  font-style: italic;
  margin-bottom: 1rem;
}

.event-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.meta-icon {
  font-size: 1rem;
}

.event-card-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.stat {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.85rem;
  color: var(--color-brown);
}

.event-card-link {
  display: inline-block;
  color: var(--color-bread-gold);
  font-weight: 600;
  transition: color 0.2s;
}

.event-card-link:hover {
  color: var(--color-bread-brown);
}

/* Event Detail */
.event-detail {
  max-width: 900px;
  margin: 0 auto;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.info-icon {
  font-size: 1.5rem;
}

.info-label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-value {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-bread-dark);
}

.event-description {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.event-description p {
  margin-bottom: 1rem;
}

.event-description ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.event-description li {
  margin-bottom: 0.5rem;
}

.event-description strong {
  color: var(--color-bread-dark);
}

.highlights-section {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

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

.highlights-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.highlights-list li {
  background: var(--color-bread-cream);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
}

/* Photo Gallery */
.photo-gallery {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.photo-gallery h2 {
  margin-bottom: 1.5rem;
}

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

.gallery-item {
  margin: 0;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.gallery-item figcaption {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* Breadlympics Results */
.breadlympics-results {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.breadlympics-results h2 {
  margin-bottom: 0.5rem;
}

.results-intro {
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.activity-results {
  margin-bottom: 2rem;
}

.activity-results:last-child {
  margin-bottom: 0;
}

.activity-name {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.activity-description {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.results-table {
  width: 100%;
  border-collapse: collapse;
}

.results-table th,
.results-table td {
  padding: 0.75rem 1rem;
  text-align: left;
}

.results-table th {
  background: var(--color-bread-cream);
  font-family: var(--font-heading);
  font-weight: 600;
}

.results-table tbody tr {
  border-bottom: 1px solid var(--color-bread-cream);
}

.result-row:hover {
  background: var(--color-bread-light);
}

.medal-cell {
  font-size: 1.5rem;
  text-align: center;
}

.participant-cell a {
  color: var(--color-bread-dark);
  font-weight: 500;
}

.participant-cell a:hover {
  color: var(--color-accent);
}

.score-cell {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-bread-brown);
}

/* Participants Grid */
.participants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.participant-card-preview {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.participant-card-preview:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.participant-avatar-preview {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--color-bread-cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.participant-avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  font-size: 3rem;
}

.participant-preview-content {
  width: 100%;
}

.participant-name {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.participant-name a {
  color: var(--color-bread-dark);
}

.participant-location,
.participant-dish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.participant-medals {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.medal-mini {
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.medal-mini.gold {
  background: var(--color-gold);
  color: var(--color-bread-dark);
}

.medal-mini.silver {
  background: var(--color-silver);
  color: var(--color-bread-dark);
}

.medal-mini.bronze {
  background: var(--color-bronze);
  color: var(--color-white);
}

/* Participant Detail */
.participant-detail {
  max-width: 800px;
  margin: 0 auto;
}

.participant-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.participant-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-bread-cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.participant-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.participant-avatar .avatar-placeholder {
  font-size: 4rem;
}

.participant-info {
  flex: 1;
}

.fun-fact {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: var(--color-bread-light);
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
}

.fun-fact-icon {
  font-size: 1.5rem;
}

.fun-fact-text {
  font-style: italic;
}

/* Medal Summary */
.medal-summary {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.medal-display {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.medal-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  min-width: 100px;
}

.medal-stat.gold {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.medal-stat.silver {
  background: linear-gradient(135deg, #E8E8E8 0%, #C0C0C0 100%);
}

.medal-stat.bronze {
  background: linear-gradient(135deg, #CD7F32 0%, #8B4513 100%);
}

.medal-stat.total {
  background: linear-gradient(135deg, var(--color-bread-gold) 0%, var(--color-bread-brown) 100%);
}

.medal-count {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-white);
}

.medal-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.medal-icon {
  font-size: 2rem;
}

/* Event History */
.event-history {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.year-results {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-bread-cream);
}

.year-results:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.year-heading {
  margin-bottom: 1rem;
}

.year-heading a {
  color: var(--color-bread-dark);
}

.year-activities {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.activity-result {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: var(--color-bread-light);
  border-radius: var(--radius-sm);
}

.activity-name {
  flex: 1;
  font-weight: 500;
}

.activity-medal {
  font-size: 1.5rem;
}

.activity-score {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-bread-brown);
}

/* Breadlympics Overview Page */
.breadlympics-overview {
  margin-bottom: 3rem;
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.category-card {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.category-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.category-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.category-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* Medal Table */
.all-time-medals {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 3rem;
}

.section-intro {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.medal-table {
  width: 100%;
  border-collapse: collapse;
}

.medal-table th {
  background: var(--color-bread-cream);
  padding: 1rem;
  text-align: left;
  font-family: var(--font-heading);
}

.medal-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--color-bread-cream);
}

.medal-row:hover {
  background: var(--color-bread-light);
}

.participant-name-cell a {
  color: var(--color-bread-dark);
  font-weight: 500;
}

.medal-cell {
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: center;
}

.medal-cell.gold { color: var(--color-gold); }
.medal-cell.silver { color: var(--color-silver); }
.medal-cell.bronze { color: var(--color-bronze); }
.medal-cell.total { color: var(--color-bread-dark); }
.medal-cell.points { color: var(--color-bread-brown); font-weight: 700; }

.rank-cell {
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  color: var(--color-bread-dark);
}

.points-explanation {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 1rem;
  font-style: italic;
}

.activity-description {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.activities-heading {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--color-bread-dark);
}

.year-medal-table {
  margin-bottom: 0;
}

/* Activities List */
.activities-list {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 3rem;
}

.activities-list h2 {
  margin-bottom: 1.5rem;
}

.activity-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.activity-card {
  display: block;
  background: var(--color-bread-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.activity-card h3 {
  color: var(--color-bread-dark);
  margin-bottom: 0.5rem;
}

.activity-card p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin: 0;
}

/* Activity Detail Page */
.activity-detail {
  max-width: 900px;
  margin: 0 auto;
}

.rules-section,
.amendments-section,
.activity-history {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}

.rules-section h2,
.amendments-section h2,
.activity-history h2 {
  margin-bottom: 1rem;
}

.rules-list {
  list-style: none;
  padding: 0;
}

.rules-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.rules-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-bread-gold);
  font-weight: bold;
}

.amendments-list {
  list-style: none;
  padding: 0;
}

.amendments-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--color-bread-light);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

.amendment-year {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-bread-gold);
  min-width: 60px;
}

.amendment-change {
  color: var(--color-text);
}

.year-result {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-bread-cream);
}

.year-result:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.year-result h3 {
  margin-bottom: 1rem;
}

.year-result h3 a {
  color: var(--color-bread-dark);
}

.no-results {
  color: var(--color-text-light);
  font-style: italic;
  text-align: center;
}

.activity-link {
  margin-top: 1rem;
  text-align: right;
}

.activity-link a {
  color: var(--color-bread-gold);
  font-weight: 500;
}

.activity-link a:hover {
  color: var(--color-bread-brown);
}

/* Year by Year */
.year-by-year {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.year-section {
  margin-bottom: 3rem;
}

.year-section:last-child {
  margin-bottom: 0;
}

.year-title {
  margin-bottom: 1.5rem;
}

.year-title a {
  color: var(--color-bread-dark);
}

.activities-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.activity-summary-card {
  background: var(--color-bread-light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.activity-summary-card h4 {
  margin-bottom: 0.5rem;
}

.activity-type-badge {
  display: inline-block;
  background: var(--color-bread-cream);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.activity-winners {
  list-style: none;
}

.activity-winners li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.activity-winners li:last-child {
  border-bottom: none;
}

.winner-gold { background: transparent; }
.winner-silver { background: transparent; }
.winner-bronze { background: transparent; }

.medal-icon {
  font-size: 1.2rem;
}

.winner-score {
  margin-left: auto;
  font-weight: 600;
  color: var(--color-bread-brown);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    flex-direction: column;
  }

  .timeline-item {
    flex-direction: column;
    gap: 1rem;
  }

  .timeline-year {
    flex-direction: row;
    min-width: auto;
    width: 100%;
    justify-content: center;
    gap: 1rem;
  }

  .participant-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .medal-display {
    flex-wrap: wrap;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    padding: 0.25rem 0.5rem;
    font-size: 0.9rem;
  }
}