@charset "utf-8";
/* CSS Document */

@font-face {
  font-family: 'Comfortaa';
  src: local('Comfortaa Regular'),
       url('../Fonts/Comfortaa-Regular.ttf') format('truetype');
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Comfortaa';
  src: local('Comfortaa Bold'),
       url('../Fonts/Comfortaa-Bold.ttf') format('truetype');
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Comfortaa';
  src: local('Comfortaa Light'),
       url('../Fonts/Comfortaa-Light.ttf') format('truetype');
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Comfortaa', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  background: #F5F7FA;
}

/* HERO */
.event-hero {
  position: relative;
  background: linear-gradient(135deg, #b8c23f, #ede569);
  padding: 120px 20px 90px;
  text-align: center;
  color: #0A2A6C;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.event-hero h1 {
  font-family: 'Comfortaa', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 3rem;
  -webkit-text-stroke: 0.8px currentColor;
  margin-bottom: 10px;
  text-align: center;
}

.event-hero p {
  font-family: 'Comfortaa', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.4rem;
  opacity: 0.9;
}

/* SECTIONS */
.event-section,
.notes-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.event-section h2,
.notes-section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #0A2A6C;
  font-weight: 700;
  margin-bottom: 25px;
}

/* ROUTES GRID */
.routes-grid {
display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.route-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  width: 260px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border-top: 6px solid #b8c23f;
}

.route-card h3 {
  font-size: 2rem;
  color: #0A2A6C;
  font-size: 2.4rem;
  -webkit-text-stroke: 0.8px currentColor;
  margin-bottom: 10px;
}

.route-card p {
  font-size: 1.1rem;
  color: #333;
}

/* NOTES */
.notes-list {
  background: #E8F0FF;
  padding: 30px;
  border-radius: 14px;
  border-left: 6px solid #0A2A6C;
  list-style: none;
}

.notes-list li {
  font-size: 1.15rem;
  margin: 12px 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .event-hero h1 { font-size: 2.3rem; }
  .event-hero p { font-size: 1.2rem; }
  .route-card { width: 100%; max-width: 300px; }
}
