h1 {
    font-family: 'Aboreto';
    font-weight: 200;
    font-style: 400;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: 10px;
    color:white;
    padding-left: 55px;
    padding-top: 44px;

}

h1 a {
  color:white;
  text-decoration: none;
}

.listTab {
    display: flex;
}

.tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.tab a:hover{
    text-decoration: underline;
    text-decoration-thickness: 2px; 
    text-underline-offset: 10px; 
}
.tab a{
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 5px;
    text-align: center;
    color:white;
    text-decoration: none;
    text-transform: uppercase;
}

#nav{
    padding-right: 55px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    margin-bottom: 5px;
}

#burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin-right: 55px;
    position: absolute;
    top: 20px; 
    left: 30px;
}

#burger span {
    height: 1px;
    background: white;
    margin: 4px 0;
    border-radius: 2px;
}

#menuOverlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; 
    height: 100%;
    background: white;
    color: black;
    display: none; 
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

#menuOverlay ul {
    list-style: none;
    padding: 0;
}

#menuOverlay ul li {
    margin: 60px 0;
}

#menuOverlay ul li a {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    letter-spacing: 5px;
    color: black;
    text-decoration: none;
    text-transform: uppercase;
}

#closeMenu {
  position: absolute;
  top: 23px; left: 30px;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}


#closeMenu span {
  position: absolute;
  width: 30px;
  height: 1px;
  background: black;
  border-radius: 2px;
  transition: 0.3s ease;
}


#closeMenu span:nth-child(1) {
  transform: rotate(20deg);
}


#closeMenu span:nth-child(2) {
  transform: rotate(-20deg);
}


.contactMobile{
    display: none;
}



@media (max-width: 1375px) {

    .tab a{
        font-size: 18px;
    }
    h1 {
        font-size: 55px;
    }

}

@media (max-width: 1293px) {

    .tab a{
        font-size: 16px;
    }
    h1 {
        font-size: 50px;
    }

}

@media (max-width: 1215px) {

    .tab a{
        font-size: 16px;
    }
    h1 {
        font-size: 45px;
    }
    #nav {
      padding-right: 45px;
    }

}

@media (max-width: 1180px) {

    .tab a{
        font-size: 15px;
    }
    h1 {
        font-size: 38px;
    }

    #nav {
      padding-right: 40px;
    }

}

@media (max-width: 1105px) {

    .tab a{
        font-size: 15px;
    }
    h1 {
        font-size: 35px;
    }

    #nav {
      padding-right: 30px;
    }

}


@media (max-width: 1053px) {

    .tab a{
        font-size: 14px;
    }
    h1 {
        font-size: 30px;
    }

    #nav {
      padding-right: 25px;
    }

}


@media (max-width: 992px) {

  #nav {
    display: none;
  }
  #burger {
    display: flex;
  }


    #titleBurger{
        width: 80%;
        margin: 20px auto 0 auto;

    }
    h1 {
        position: absolute;
        top: 40px; 
        left: 30px;
        text-align: left;
        font-size: 24px;

        padding-left: 0;
        z-index: 1000;
        display: inline-block;
        
    }

    .contactMobile{
        display: block;
    }
    .contactDesktop{
        display: none;
    }
}

#qrcodeOverlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); 
  display: none; 
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.qrcodeBox {
  position: relative;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 300px;
}

.qrcodeBox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

#closeQrcode {
  position: absolute;
  top: 10px;
  right: 20px;
  background: none;
  border: none;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

#closeQrcode span {
  position: absolute;
  width: 25px;
  height: 3px;
  background: black;
  border-radius: 2px;
}

#closeQrcode span:nth-child(1) {
  transform: rotate(45deg);
}
#closeQrcode span:nth-child(2) {
  transform: rotate(-45deg);
}


body.no-scroll {
  overflow: hidden;
  height: 100vh;
}