.header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: start;
  padding: 0.5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #FFF1F2;
  border-bottom: 0.5px solid #aaa;
  z-index: 2;
  width: 100%;
}

.header-content {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  padding: 0 1rem;
  margin: 0 auto;
}

.header-content-logo {
  max-width: 190px;
  margin-right: auto;
  cursor: pointer;
}

.header-content-logo img {
  max-width: 190px;
}

.footer-content-logo {
  max-width: 300px;
  cursor: pointer;
}

.footer-content-logo img {
  max-width: 300px;
}

.header-content-nav {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 2rem;
}

.header-link {
  color: #191817;
  font-size: 1.05rem;
  font-weight: 400;
  cursor: pointer;
}

.header-link-selected {
  color: #191817;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}

.header-link:hover {
  text-decoration: underline;
  color: #4A0508;
}

.header-divider-horizontal {
  width: 100%;
  background: #E3E6EA;
  height: 1px;
}

.header-main {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 0;
}

.overlay-card {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 10px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  width: 900px;
  margin-top: 7rem;
  align-items: start;
}

.menu {
  display: none;
}

.menu-btn {
  background-color: transparent;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}

.drawer {
  overflow-y: scroll;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: start;
  align-items: start;
  z-index: 1000;
}

.drawer-content {
  background: #FFF1F2;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: 40%;
  height: 100%;
  max-width: 300px;
  gap: 2rem;
}

.drawer-logo {
  max-height: 50px;
  margin-right: auto;
  cursor: pointer;
}

.drawer-title {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: center;
  width: 100%;
}

@media (max-width: 768px) {
  .menu {
    display: flex;
  }

  .drawer-content {
    width: 100%;
    max-width: 60%;
  }

  .header-content-nav {
    display: none;
  }

  .header-main {
    display: none;
  }

  .header-divider-horizontal {
    display: none;
  }

  .header-content-nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }

  .header-divider-horizontal-mobile {
    width: 100%;
    border: 1px solid #E3E6EA;
  }

  .header-main-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2rem;
  }
}