header {
  height: 100px;
  padding-left: 260px;
  padding-right: 250px;
}

.header-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.header-logo-link {
  position: absolute;
  padding-top: 20px;
  left: 0;
  display: flex;
  width: fit-content;
  align-items: center;
}

.env-badge {
  font-weight: bold;
  padding: 1rem 1rem;
  text-transform: uppercase;
  color: var(--bold-secondary);
  font-family: var(--font-secondary);
  font-size: 16px;
}

.logo-header {
  width: 100px;
  height: 77px;
  cursor: pointer;
}

.menu-header-btn {
  display: none;
}

.header-connexion-link {
  position: absolute;
  padding-top: 30px;
  right: 0;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.header-connexion-link > a {
  width: 220px;
  height: 45px;
  border-radius: 25px;
  font-family: var(--font-secondary);
  font-weight: bolder;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-connexion-link > a:hover {
  transform: scale(1.03);
}

.header-connexion-link > a:nth-child(1) {
  border: 3px solid var(--bold-secondary);
  color: var(--bold-secondary);
  background-color: white;
  font-size: 16px;
}

.header-connexion-link > a:nth-child(2) {
  border-color: transparent;
  color: white;
  background-image: linear-gradient(to right, #265852, #4da798);
  font-size: 20px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  font-size: 1.5rem;
  position: absolute;
  top: 100%;
  right: 1rem;
  width: 250px;
  background-color: #ffffff;
  padding: 1rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.mobile-menu > a {
  text-decoration: none;
  color: var(--primary);
  width: 100%;
}

@media (max-width: 1150px) {
  header {
    padding-left: 60px;
    padding-right: 50px;
  }

  .header-connexion-link {
    display: none;
  }

  .menu-header-btn {
    display: inline;
    position: absolute;
    padding-top: 20px;
    right: 0;
    background-color: transparent;
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .mobile-menu {
    display: none;
  }

  .menu-header-btn > img {
    width: 60px;
  }

  .logo-header {
    position: absolute;
  }
}
