/* navbar.css */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* body, html {
  margin: 0;
  padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
} */

.navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 2rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}
.navbar__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
}

.navbar__logo-img {
  height: 32px;
  width: auto;
}

.navbar__logo-text {
  font-size: 1.7rem;
  font-weight: 900;
  color: #022444;
  
}
.navbar__menu {
  display: flex;
  gap: 1.5rem;
}
.navbar__link {
  text-decoration: none;
  font-size: 1rem;
  color: #2a293b;
  /* color: #333; */
  font-weight: 500;
  transition: color 0.2s ease;
}
.navbar__link:hover {
  color: #0a3c7b;
}
.navbar__toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
/* Mobile */
@media (max-width: 800px) {
  .navbar__menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
  }
  body.nav-open .navbar__menu {
    right: 0;
  }
  .navbar__toggle {
    display: block;
  }
}

/* Mobile */
@media (max-width: 510px) {
  .navbar__logo-text {
  font-size: 1.5rem;
  /* background-color: aqua; */

  
}


}

/* Mobile */
@media (max-width: 400px) {
  .navbar__logo-text {
  font-size: 1.3rem;
  /* background-color: aqua; */

  
}


}

/* Mobile */
@media (max-width: 360px) {
  .navbar__logo-text {
  font-size: 1rem;
  /* background-color: aqua; */

  
}


}
