/* RESET + BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Mandrope", "Roboto", sans-serif;
}

body {
  background: linear-gradient(180deg, #e9f4ff, #ffffff);
  color: #002b55;
  line-height: 1.6;
  /* padding: 0 1rem; */
}

header {
  background-color: var(--text-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: clamp(40px, 10vw, 60px);
  width: auto;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: clamp(0.5rem, 2vw, 1.5rem);
}

nav ul li a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  font-size: clamp(0.8rem, 2vw, 1rem);
  position: relative;
}

nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--jci-yellow);
  transition: var(--transition);
}

nav ul li a:hover {
  color: var(--jci-blue);
}

nav ul li a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--jci-blue);
}
.nominate {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.nominate h1 {
  font-size: 2rem;
  color: #002b55;
  margin-bottom: 1rem;
  text-align: center;
}

.nominate p {
  text-align: center;
  margin-bottom: 2rem;
  color: #555;
}

.nomination-forms h2 {
  font-size: 1.5rem;
  color: #002b55;
  margin-bottom: 0.5rem;
}

.nomination-forms p {
  margin-bottom: 1rem;
  color: #666;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input,
select,
textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border: 1px solid #002b55;
}

button {
  padding: 1rem;
  background-color: #002b55;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
  background-color: #004080;
  transform: translateY(-2px);
}

#confirmation-message {
  background-color: #e0f7e9;
  padding: 1rem;
  border-left: 4px solid #00a859;
  margin-top: 2rem;
  border-radius: 6px;
}

/* footer {
  background-color: var(--jci-blue);
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem; */
/* color: #777; */
/* margin-top: 2rem;
  border-top: 1px solid #eee;
} */

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background-color: var(--text-light);
    transition: var(--transition);
    box-shadow: 5px 0 10px rgba(0, 0, 0, 0.1);
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
    padding: 1rem;
  }

  nav ul li {
    margin: 0.5rem 0;
  }

  .nominate {
    padding: 1rem;
  }

  /* header {
    flex-direction: column;
    align-items: flex-start;
  } */

  .nominate h1 {
    font-size: 1.5rem;
  }

  button {
    font-size: 1rem;
  }
}
