/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  z-index: 999;

  background: #000;

  border-bottom: 1px solid rgba(229, 181, 103, 0.15);
}

/* =========================
   CONTAINER
========================= */
.nav-container {
  max-width: 1400px;
  margin: auto;
  height: 78px;
  padding: 0 22px 0 8px;

  display: flex;
  align-items: center;
}

/* =========================
   LOGO
========================= */

.logo {
  flex-shrink: 0;
}

.logo img {
  width: 200px;
  display: block;
}

/* =========================
   NAV LINKS
========================= */

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

  flex: 1; /* auto balance layout */
  gap: 24px;

  list-style: none;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  position: relative;

  text-decoration: none;

  color: #bbb;

  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
  transition: 0.3s ease;
}

/* ACTIVE + HOVER */

.nav-links a:hover,
.nav-links a.active {
  color: #e5b567;
}
/* UNDERLINE */

.nav-links a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0%;
  height: 2px;

  background: #e5b567;

  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* =========================
   BUTTON
========================= */

.nav-btn {
  background: linear-gradient(90deg, #e5b567, #d89c5a);

  padding: 12px 22px;

  border-radius: 8px;

  color: #000;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;
  margin-left: auto;
  white-space: nowrap;

  transition: 0.3s ease;
  margin-left: auto;
  white-space: nowrap;
}

.nav-btn:hover {
  box-shadow: 0 6px 18px rgba(229, 181, 103, 0.35);

  transform: translateY(-2px);
}

/* =========================
   MOBILE TOGGLE
========================= */

.menu-toggle {
  display: none;

  font-size: 28px;

  color: #fff;

  cursor: pointer;
}

/* =========================================================
   LARGE DESKTOP (1400px+)
========================================================= */

@media (min-width: 1400px) {
  .nav-container {
    max-width: 1400px;
  }

  .nav-links {
    gap: 36px;
  }
}

/* =========================================================
   LAPTOP (1200px)
========================================================= */

@media (max-width: 1200px) {
  .nav-container {
    padding: 0 24px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 14px;
  }
}

/* =========================================================
   TABLET LANDSCAPE (1024px)
========================================================= */

@media (max-width: 1024px) {
  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 13px;
  }
}

/* =========================================================
   TABLET + MOBILE MENU (900px)
========================================================= */

@media (max-width: 1100px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-btn {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;

    background: #0b0b0b;
    border-top: 1px solid rgba(229, 181, 103, 0.08);

    flex-direction: column;
    align-items: center;
    gap: 24px;

    padding: 35px 20px;

    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}

/* =========================================================
   EXTRA SMALL DEVICES (360px)
========================================================= */

@media (max-width: 360px) {
  .nav-container {
    padding: 0 14px;
  }

  .logo img {
    width:120px;
  }

  .menu-toggle {
    font-size: 22px;
  }

  .nav-links {
    padding: 28px 14px;
  }
}
