header {
  background: #121518;
  width: 100%;
}

/* ========== NAVBAR ========== */
.navbar {
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 25px;
  position: relative;
  z-index: 1000;
}

/* Logo text */
.nav__logo h3 {
  background-color: #111;
  border: 2px solid #fff;
  border-radius: 6px;
  padding: 6px 15px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

/* Menu links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
  transition: all 0.3s ease;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #c19f56;
}

/* Logo image */
.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* Hamburger icon */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

/* ========== MEDIA QUERIES ========== */

/* Tablet view */
@media (max-width: 1024px) {
  .navbar {
    padding: 12px 20px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav__logo h3 {
    font-size: 17px;
  }
}

/* Mobile view */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    background-color: #000;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    display: none;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    margin: 10px 0;
  }

  .nav__logo h3 {
    font-size: 16px;
    padding: 5px 12px;
  }

  .logo img {
    width: 45px;
    height: 45px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .nav__logo h3 {
    font-size: 15px;
  }

  .menu-toggle {
    font-size: 26px;
  }
}