/* --------- header ------- */
.header-logo {
  height: 62px;
}

.brand {
  display: flex;
  justify-content: center;
  align-self: center;
  gap: 6px;
}

.brand p {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-info a {
  margin-left: 44px;
  color: #464946 !important;
  font-weight: 500;
}

.contact-info a:hover {
  color: var(--color-accent) !important;
}

.header-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5rem;
}

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5rem;
}

.header-left p {
  color: black !important;
}

.header-right p,
.header-right a {
  color: white !important;
}

.header-cta a {
  padding: 16px;
  border-radius: 16px;
  background-color: #464946;
  transition: all 0.3s;
}

.header-cta a:hover {
  cursor: pointer;
  background-color: var(--color-accent);
}

.burger {
  z-index: 999;
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.burger:hover span {
  background-color: var(--color-accent);
}

.burger span {
  height: 3px;
  background: var(--color-secondary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger span:nth-child(1) {
  width: 22px;
}
.burger span:nth-child(2) {
  width: 28px;
}
.burger span:nth-child(3) {
  width: 22px;
}

/* ===========================
   Responsives Design (Breakpoints)
   Range: 320px – 1920px
=========================== */
/* Extra Large Devices (1481px – 1660px) */
@media (min-width: 1481px) and (max-width: 1660px) {
  .header-left {
    gap: 2rem;
  }

  .header-right {
    gap: 3rem;
  }

  .header-cta {
    padding: 8px;
  }
}

/* Extra Large Devices (992px – 1480px) */
@media (min-width: 992px) and (max-width: 1480px) {
  .header-left {
    gap: 2rem;
  }

  .header-right {
    gap: 7rem;
  }

  .header-cta {
    padding: 8px;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .contact-info a {
    margin-left: 140px;
    margin-bottom: 8px;
  }
}

/* Extra Large Devices (992px – 1350px) */
@media (min-width: 992px) and (max-width: 1350px) {
  .header-right {
    gap: 3rem;
  }
  .contact-info a {
    margin-left: 54px;
  }
}

/* Extra Large Devices (992px – 1100px) */
@media (min-width: 992px) and (max-width: 1100px) {
  .header-right {
    gap: 3rem;
  }

  .header-left {
    gap: 7rem;
  }

  .contact-info a {
    margin-left: 16px;
  }

  .header-cta{
    display: none;
  }
}

/* Medium Devices (768px – 991px) */
@media (max-width: 991px) {
  .contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .contact-info a {
    margin-left: 0px;
    margin-bottom: 8px;
    text-align: start;
  }

  .header-cta {
    display: none;
  }

  .header-right {
    gap: 5rem;
    flex: 0;
  }

  .header-left {
    gap: 7rem;
    flex: 1;
  }
}

@media (max-width: 860px) {
  .header-left {
    gap: 5rem;
  }
}

/* Small Devices (680px) */
@media (max-width: 680px) {
  .brand p {
    display: none;
  }

  .header-left {
    gap: 6rem;
  }
}

/* Small Devices (620px) */
@media (max-width: 620px) {
  .burger span {
    background-color: var(--color-accent);
  }
}

/* Extra Small Smartphones (560px) */
@media (max-width: 560px) {
  .header-left {
    gap: 5rem;
  }

  .contact-info a {
    width: 196px;
  }
}

/* Extra Small Smartphones (456px) */
@media (max-width: 456px) {
  .header-left {
    gap: 24px;
  }

  .contact-info a {
    text-align: start;
    font-size: 14px;
  }
}

/* Extra Small Smartphones (378px) */
@media (max-width: 378px) {
  .contact-info a {
    display: none;
  }
}
