/* ======== RESET & BASE ======== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Barlow Condensed', sans-serif;
  color: #1a1a1a;
  background: linear-gradient(to bottom right, #0f4c81, #a1c4fd);
  min-height: 100vh;
}

/* ========= NAVBAR ========= */
/* ===== HEADER BASE ===== */
.transparent-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background-color .3s ease, box-shadow .3s ease;
}

.nav-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* logo left, toggle/nav right */
}

.logo {
  height: 60px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav-links li a {
  position: relative;
  text-decoration: none;
  font-size: 16px;
  color: #0d1c3f;
  transition: color .3s ease;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #00aaff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s ease-in-out;
}

.nav-links li a:hover::after {
  transform: scaleX(1);
}

.nav-links li a:hover {
  color: #00aaff;
}

.nav-links li a.active {
  color: #00cfff;
}

/* ===== HAMBURGER (hidden on desktop) ===== */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #003C8B;
  cursor: pointer;
  z-index: 1001;
  position: absolute;
  top: 50%;
  right: 10%;
  /* distance from right edge */
  transform: translateY(-50%);
  /* vertical center */
}


/* ===== MOBILE STYLES ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    font-size: 2rem;
    color: #003C8B;
    cursor: pointer;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    /* full height drawer */
    width: 100%;
    /* not full screen */
    max-width: 280px;
    /* limit width */
    flex-direction: column;
    /* <<< force vertical */
    /* align to left */
    justify-content: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -8px 0 25px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    visibility: hidden;
  }

  .nav-links.active {
    transform: translateX(0);
    top: 0;
    margin-top: 0;
    margin-right: 3%;
    padding-top: 6rem;
    /* little space under header */
    height: 100%;
    min-height: 100vw;
    width: 40%;
    /* cover full screen height */
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    transition: transform 1s ease-in-out;
    visibility: visible;
    z-index: 1000;
    /* above header */
    text-align: center;
  }


  .nav-container {
    height: 10vh;

  }

  .nav-links li {
    width: 100%;
    /* make each link full width */
  }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #003C8B;
  }


}

/* ======= Navbar Slide In Animation ======= */
.animated-navbar {
  transform: translateY(-100%);
  opacity: 0;
  animation: slideDownNavbar 0.7s ease-out forwards;
}

@keyframes slideDownNavbar {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


/* ======== COMING SOON SECTION ======== */
.coming-soon-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  padding: 150px 20px 40px;
  color: #1a1a1a;
}

.coming-soon-container h1 {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 20px;
}

.coming-soon-container p {
  font-size: 22px;
  margin-bottom: 10px;
}

.soon-text {
  font-weight: bold;
  font-size: 20px;
  color: #003366;
}