body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fefefe;
  color: #333;
}

.nav {
  background-color: #f1f1f1;
  display: flex;
  justify-content: flex-end;
  padding: 10px 20px;
  gap: 10px;
}

.icon {
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.hero {
  background-color: #3b82f6; /* vibrant blue */
  padding: 120px 20px 80px;
  text-align: center;
  color: white;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  background-color: #f97316;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 9999px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #ea580c;
}

.countdown {
  margin-top: 15px;
  font-size: 1rem;
  font-weight: 500;
  color: white;
}

.organizers {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 30px 20px;
}

.organizer-img {
  height: 80px;
  width: 80px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
}

.organizer-img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  filter: brightness(1.1);
}

.gallery {
  padding: 40px 20px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gallery-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  filter: brightness(1.1);
}

.video-section,
.about-race,
.contact,
.partners {
  padding: 40px 20px;
  text-align: center;
}

.video-container {
  max-width: 640px;
  margin: 0 auto;
}

.video {
  width: 100%;
  max-height: 360px;
  border-radius: 8px;
}

.video-description {
  margin: 0 auto 20px;
  max-width: 700px;
  font-size: 1rem;
  color: #444;
}

.about-race-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about-race-text {
  max-width: 700px;
  text-align: center;
  margin-bottom: 20px;
}

.about-race-video {
  max-width: 640px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.section-text {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 20px;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.partner-img {
  height: 80px;
  width: 80px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
}

.partner-img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  filter: brightness(1.1);
}

.contact {
  background-color: #e6f7f7; /* soft turquoise background */
}

.footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 20px;
}

.footer-link {
  color: #f97316;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}
