/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Montserrat', sans-serif;
  color: #1e1d1d;
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(42px);
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

.navbar__container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.navbar__logo {
  position: absolute;
  left: 15px;
  text-decoration: none;
  color: inherit;
}

.logo {
  display: flex;
  align-items: center;
}

.logo__image {
  width: 40px;
  height: 37px;
}

.logo__name {
  font-weight: 800;
  font-style: italic;
  font-size: 18px;
  margin-left: 8px;
}

.logo__name span {
  font-weight: 300;
  margin-left: 4px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar-link {
  color: rgba(30, 29, 29, 0.45);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.navbar-link:hover,
.navbar-link.active {
  color: #1e1d1d;
}

/* =========================
   FOOTER
========================= */

.footer {
  background-color: #f5f5f5;
  padding: 30px 0;
  margin-top: 60px;
}

.footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer__link {
  color: rgba(30, 29, 29, 0.6);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: 0.2s;
}

.footer__link:hover {
  color: #1e1d1d;
}