/* ===============================
   HEADER BASE
=============================== */
.navbar {
  background: #97b8bf;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

/* ===============================
   LOGOS
=============================== */
.logo img {
  height: 48px;
  display: block;
}

.left-logo {
  justify-self: start;
}

.right-logo {
  justify-self: end;
}

/* ===============================
   CENTER MENU
=============================== */
.menu {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 32px;
}

.menu > a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 550;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.menu a::after {
  display: none !important; /* no underline */
}

.menu-items {
  display: flex;
  gap: 28px;
}

.menu-items a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 550;
  text-decoration: none;
}

.menu-items a:hover {
  opacity: 0.85;
}

.arrow {
  font-size: 11px;
}

/* ===============================
   MOBILE VIEW
=============================== */
@media (max-width: 768px) {

  .nav-container {
    grid-template-columns: auto;
  }

  .right-logo {
    display: none; /* hide right logo on mobile */
  }

  .menu {
    justify-self: start;
    width: 100%;
    margin-top: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-items {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.4);
  }

  .menu-items.active {
    display: flex;
  }

  .menu-items a {
    padding: 8px 0;
  }
}




/* ===============================
   HEADER TEXT COLOR – DARK BLUE
=============================== */
.menu a,
.menu-items a {
  color: #0f3f5c !important; /* dark blue */
  font-family: 'Poppins', sans-serif;
  transition: color 0.3s ease; /* smooth color transition */
}

.menu a:hover,
.menu-items a:hover {
  color: #cf1223 !important; /* red on hover */
}

.menu a:hover .arrow {
  color: #cf1223; /* make arrow red on hover too */
}
