/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
  padding: 20px;
}

header {
  background-color: #004080;
  color: white;
  padding: 8px 20px;
  text-align: center;
  width: 100%;
}

nav ul {
  display: flex;
  justify-content: center;
  background-color: #e0e0e0;
  list-style: none;
  padding: 10px;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  text-decoration: none;
  color: #004080;
  font-weight: bold;
}

section {
  margin: 20px 0;
  padding: 20px;
  background-color: white;
  border-radius: 5px;
  scroll-margin-top: 100px;

}

form {
  display: flex;
  flex-direction: column;
}

form label {
  margin-top: 10px;
}

form input {
  padding: 8px;
  margin-top: 5px;
}

form button {
  margin-top: 15px;
  padding: 20px;
  background-color: #004080;
  color: white;
  border: none;
  cursor: pointer;
}

footer {
  text-align: center;
  margin-top: 40px;
  color: #666;
}
.header-container {
  position: relative;
  width: 100%;
  max-height: 400px;
  overflow: hidden;
}

.header-container img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  max-height: 100px;
object-fit: cover;
}

.header-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}

.header-text h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.header-text p {
  font-size: 1.2em;
}
/* Navigation Bar */
.navbar {
  position: sticky;
  top: 0;
  background-color: #004080; /* Same as header */
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}


.nav-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 15px 0;
  margin: 0;
background-color: #004080;
}

.nav-menu li {
  margin: 0 25px;
}

.nav-menu a {
  text-decoration: none;
  color: #ffffff; /* Bright white text */
  font-weight: bold;
  font-size: 1.2em;
  position: relative;
  padding: 8px 12px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  background-color: #ffcc00; /* Highlight background */
  color: #004080; /* Dark text on yellow */
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

  .nav-menu.active {
    display: flex;
  }
}
#countdown {
  text-align: center;
  background-color: #004080;
  color: white;
  padding: 30px 20px;
  margin-top: 20px;
  border-radius: 10px;
}

.timer {
  font-size: 1.5em;
  margin-top: 10px;
}

.timer span {
  font-weight: bold;
  margin: 0 10px;
}
#countdown-banner {
  position: sticky;
  top: 0;
  background-color: #ffcc00;
  color: #004080;
  padding: 10px 0;
  text-align: center;
  font-size: 1.1em;
  font-weight: bold;
  z-index: 1001;
  animation: slideDown 0.6s ease-out;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.countdown-content span {
  margin: 0 5px;
}

/* Slide-down animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.slider {
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.slides {
  display: flex;
  width: 300%;
  animation: slide 12s infinite;
}

.slides img {
  width: 100%;
  height: auto;
}

/* Animation */
@keyframes slide {
  0% { transform: translateX(0%); }
  33% { transform: translateX(-100%); }
  66% { transform: translateX(-200%); }
  100% { transform: translateX(0%); }
}
.slider-container {
  position: relative;
  max-width: 800px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  display: none;
}

.slide.active {
  display: block;
}

.controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
}

.controls span {
  font-size: 2em;
  color: white;
  cursor: pointer;
  background-color: rgba(0,0,0,0.5);
  padding: 5px 10px;
  border-radius: 50%;
}

.dots {
  text-align: center;
  margin-top: 10px;
}

.dots span {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.dots .active {
  background-color: #004080;
}
#venue {
  margin: 40px 0;
  text-align: center;
}

.map-container {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.directions-button {
  text-align: center;
  margin-top: 20px;
}

.directions-button button {
  background-color: #004080;
  color: white;
  padding: 10px 20px;
  font-size: 1em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.directions-button button:hover {
  background-color: #ffcc00;
  color: #004080;
}
<style>
.sponsor-container {
display: flex;
justify-content: center;
gap: 30px;
margin-top: 20px;
}


.sponsor-item {
background: #004080;
color: white;
padding: 15px 25px;
border-radius: 8px;
font-size: 1.2em;
font-weight: bold;
box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
</style>