
/* >>- screens up to 481px (MOBILE FIRST) -<< */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background-color: var(--primary-300);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-bar {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
  }
  
  .logo {
    height: 40px;
    cursor: pointer;
  }
  
  /* mobile menu style (OVERLAY) */
  .main-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-300);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(+100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }
  
  /* class added by JS */
  .main-menu.active {
    transform: translateX(0);
  }
  
  .main-menu ul {
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
  }
  
  .main-menu ul li {
    list-style: none;
    display: block;
    margin: 16px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-50);
    text-transform: uppercase;
    transition: color 0.2s ease;
  }
  
  .main-menu ul li:hover {
    color: var(--primary-100);
    cursor: pointer;
  }
  
  /* close and open buttons style */
  .menu-button,
  .close-button {
    color: var(--primary-50);
    font-size: 16px;
    cursor: pointer;
    z-index: 1002;
    transition: color 0.2s ease;
  }
  
  .menu-button {
    display: block;
  }
  
  .close-button {
    display: none;
  }
  
  .close-button:hover,
  .menu-button:hover {
    color: var(--primary-100);
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  #instagram,
  #whatsapp {
    color: var(--primary-50);
    transition: color 0.2s ease;
  }
  
  #instagram:hover,
  #whatsapp:hover {
    color: var(--primary-100);
  }
  
  /* <- screens above 481px (BIGGER CELLPHONES) -> */
  
  @media screen and (min-width: 481px) {
  }
  
  /* <- screens above 768px (TABLETS) -> */
  
  @media screen and (min-width: 768px) {
    .nav-bar {
      padding: 0 32px;
    }
  
    .main-menu ul li {
      font-size: 18px;
    }
  
    .menu-button,
    .close-button {
      font-size: 24px;
    }
  }
  
  /* <- screens above 1024px (SMALL DESKTOP) -> */
  
  @media screen and (min-width: 1024px) {
    /* desktop menu style */

    .nav-bar {
      padding: 0 138px;
    }

    .main-menu {
      position: static;
      width: auto;
      height: auto;
      background-color: transparent;
      display: flex;
      flex-direction: row;
      justify-content: flex-end;
      align-items: center;
      transform: translateX(0);
      transition: none;
      z-index: auto;
    }
  
    .main-menu ul {
      display: flex;
      width: auto;
      text-align: left;
      margin: 0;
      padding: 0;
    }
  
    .main-menu ul li {
      display: inline-block;
      margin: 0 20px;
      font-size: 14px;
      color: var(--primary-50);
    }
  
    .close-button,
    .menu-button {
      display: none !important;
    }
  }
  
  /* <- screens above 12001px (BIGGER DESKTOP) -> */
  
  @media screen and (min-width: 1201px) {
  }
  
  /* <- screens above 1600px (ULTRA-WIDE) -> */
  
  @media screen and (min-width: 1600px) {
  }  