/* Navbar styling */
.navbar {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;      /* Center the nav-list horizontally */
    align-items: center;
    padding: 1rem;
    background-color: #0074ff;
    color: #fff;
    font-family: 'Roboto Slab', sans-serif !important;
}

/* Hamburger icon positioning */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
    
}

.menu-toggle span {
      display: block;
      width: 25px;
      height: 3px;
      margin: 4px 0;
      background: #fff;
      border-radius: 2px;
      transition: 0.3s;
    }

/* Nav list styling */
.nav-list {
    display: flex;
    list-style-type: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

/* Nav list items */
.nav-list li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.2s;
}
.nav-list li a:hover {
    color: #ffe066;
}

/* Responsive styling */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 10;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        width: 100vw;
        background-color: #52a0ff;
        position: absolute;
        top: 100%;
        left: 0;
        gap: 0;
        padding: 0.5rem 0;
        box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    }

    .nav-list.active {
        display: block;
    }
    .nav-list li {
        padding: 0.5rem 1.5rem;
    }
    .nav-list li a {
        display: block;
        width: 100%;
    }
    .navbar {
        justify-content: flex-start;
    }
}

  #countdown {
    text-align: center;
    margin: 20px auto;
    padding: 20px;
    background-color: #52a0ff;
    border: 2px solid white;
    color: white;
    border-radius: 10px;
    max-width: 400px;
  }
  
  #countdown h2 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 10px;
  }
  
  #countdown-timer {
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Roboto Slab', sans-serif !important;
    color: #0074ff;
  }
