
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: rgb(255, 255, 255);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1vw 6vw;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      z-index: 1000;
      gap: 3vw;
    }

.nav-links{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
.nav-links a {
  color: var(--text-color);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.nav-links a:hover {
  color: var(--secondary-color);
}
.fullscreen{
    display: none;
}

@media (max-width: 996px){
    .nav-links a {
    color: var(--white);
    font-size: 1.6rem;
    }
    .fullscreen{
        display: block;
    }
    .fullscreen-menu .primary_btn{
        font-size: 1.4rem;
    }
    header{
        display: none;
    }

    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        background-color: #ffffff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        color: var(--secondary-color);
        position: relative;
        z-index: 10;
    }

    .hamburger {
    font-size: 3rem;
    /*cursor: pointer;
    display: block;*/

    }

    .fullscreen-menu {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--primary-color);
        color: white;
        transition: top 0.4s ease-in-out;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        z-index: 1000;
        gap: 4vw;
    }

    .fullscreen-menu.open {
        top: 0;
    }

    .fullscreen-menu .close {
        position: absolute;
        top: 1.5rem;
        right: 2rem;
        font-size: 5rem;
        cursor: pointer;
    }
    .fullscreen-menu .nav-links{
        display: flex;
        flex-direction: column;
        gap: 2vw;  

    }


}  