/* ===== NavigationBar ===== */
.ContainerNavigationBar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  max-width: 1920px;
  height: 80px;

  padding: 0 20px;
  background-color: #fff;
  z-index: 1001; /* To be higher than the maps zoom z-index */

  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

/* Logo */
.ContainerNavigationBar-Label {
  font-weight: bold;
  font-size: 20px;
  color: #0f4c8e;
}

/* ===== Desktop Navigation ===== */
.nav-main {
  display: flex;
  gap: 10px;
}

.nav-main a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 110px;
  padding: 12px;

  color: #0f4c8e;
  text-decoration: none;
  font-weight: bold;

  position: relative;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

/* Hover effect */
.nav-main a:hover {
  color: #005f46;
  transform: translateY(-3px);
}

.nav-main a::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 15%;
  width: 70%;
  height: 2px;
  background: #008060;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-main a:hover::after {
  transform: scaleX(1);
}

/* ===== Hamburger Button ===== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #0f4c8e;
}

/* ===== Mobile Layout ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-main {
    position: absolute;
    top: 100%;
    left: 0;

    width: 100%;
    background: #fff;

    flex-direction: column;
    align-items: center;

    display: none;
    padding: 10px 0;

    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  }

  .nav-main.open {
    display: flex;
  }

  .nav-main a {
    width: 100%;
    padding: 16px;
    text-align: center;
  }
}
