/* =========================
   COMPONENT: LANDING NAVBAR
========================= */

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

  width: 100%;
  height: 90px;

  padding: 0 40px;

  background: #f8f8f5;
  border-bottom: 1px solid #e4e4e4;

  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 32px;

  z-index: 1000;
}

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

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: start;

  font-weight: 100;
}

.logo-link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;

  text-decoration: none;
}

.logo-link h1 {
  color: #79B4A9;

  font-family: "Belleza", sans-serif;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 4px;
}

.logo-line {
  width: 100%;
  height: 4px;

  margin-top: 4px;

  background: #d4af37;
  border-radius: 999px;
}

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

/* =========================
   CENTER MENU
========================= */

.menu-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;

  gap: 15px;

  font-weight: 700;
}

.btn,
.btn2 {
  padding: 12px 22px;

  border-radius: 30px;

  font-size: 16px;
  text-decoration: none;

  transition: 0.3s ease;
}

.btn-home,
.btn-about,
.btn-feat {
  color: #676F54;
}

.btn-home {
  font-family: "Poppins", sans-serif;
}

.btn-home:hover,
.btn-about:hover,
.btn-feat:hover {
  background: #79B4A9;
  color: #000000;
}

/* =========================
   RIGHT BUTTONS
========================= */

.nav-buttons {
  display: flex;
  justify-self: end;

  gap: 15px;
}

.btn-primary {
  background: #79B4A9;
  color: #ffffff;
}

.btn-primary:hover {
  background: #676F54;
}

.btn-secondary {
  border: 2px solid #79B4A9;
  color: #676F54;
}

.btn-secondary:hover {
  background: #79B4A9;
  color: #ffffff;
}

.hamburger-btn {
  display: none;
  border: none;
  background: transparent;
  color: #676F54;
  font-size: 32px;
  font-weight: 700;
  cursor: pointer;
}

.mobile-menu {
  display: contents;
}

@media (max-width: 768px) {
  .navbar {
    height: 82px;
    padding: 0 22px;

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

  .logo-link h1 {
    font-size: 38px;
    letter-spacing: 4px;
  }

  .logo-line {
    height: 3px;
  }

  .hamburger-btn {
    display: block;
  }

  .mobile-menu {
    display: none;

    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;

    padding: 18px;

    background: #ffffff;
    border: 1px solid rgba(103, 111, 84, 0.14);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);

    z-index: 1001;
  }

  .mobile-menu.show {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .mobile-menu .menu-buttons,
  .mobile-menu .nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-menu a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}