@import url("style.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and Fonts */
body {
  font-family: "Mandrope", "Roboto", sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #222;
  padding: 0;
  margin: 0;
}

/* Header */
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);
}

/* Coming Soon Section */
.coming-soon {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #f5f8ff;
  animation: fadeInUp 1s ease-out;
}

.coming-soon h1 {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 1rem;
}

.coming-soon p {
  font-size: 1.1rem;
  color: #444;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.coming-soon img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Footer */
/* footer {
  background-color: var(--jci-blue);
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  margin-top: 2rem;
} */

/* Responsive Design */
@media (max-width: 768px) {
  header {
    /* flex-direction: column; */
    align-items: flex-start;
  }

  .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;
  }
  .coming-soon h1 {
    font-size: 2rem;
  }

  .coming-soon p {
    font-size: 1rem;
  }
}
