/* Reset essenziale */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Instrument Sans", Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

header {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 30px;
}

.flex {
  display: flex;
  gap: 20px;
  align-items: center;
}



.contained-width {
  display: flex;
  gap: 20px;
  align-items: center;
  max-width: 1300px;
  width: 100%;
}

.space-between {
  justify-content: space-between;
}

/* HEADER */
.nav {
  padding-top: 60px;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}
.nav img {
  width: 200px;
}
.nav-links {
  gap: 40px;
}
.nav-links a {
  font-size: 20px;
  text-decoration: none;
  font-weight: 300;
  font-family: "Instrument Sans", Sans-serif;
  color: #455662;
}

.nav-button {
  background: #455662;
  padding: 15px 30px;
  color: #f9f9f9 !important;
  border-radius: 50px;
}

@media(max-width:768px){
  header {
    padding: 20px;
  }


  .logo {
    width: 150px !important;
  }
  
  .hidden-mobile {
    display: none !important;
  }
  
  .hidden-dekstop {
    display: flex !important;
  }
  
  .nav {
    padding: 30px !important;
    border: none !important;
  }
  
  .nav-links a {
    font-size: 22px !important;
    font-weight: 500 !important;
  }

  .nav-button {
    margin-top: 50px !important;
  }
  
  .popup-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .popup-menu__content {
    opacity: 0;
    transform: translateY(15px);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  .popup-menu.is-open .popup-menu__content {
    opacity: 1;
    transform: translateY(0);
  }

  .popup-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100dvh;
      display: flex;
      justify-content: center;
      align-items: center;
      background-image: url(https://www.ti-ricordo.it/wp-content/uploads/2026/04/decorative-bg.webp);
      background-position: center center;
      background-size: cover;
      z-index: 999;
      background-color: #fffefe;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
  }

  .nav-mobile {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px !important;
  }

  .popup-menu__close {
      position: absolute;
      top: 50px;
      right: 50px;
      padding: 0;
      background: transparent;
      font-size: 44px;
      color: #455662;
  }


  .popup-menu__logo {
    margin-bottom: 50px;
  }
}

@media (min-width: 768px) {
  .hidden-desktop {
    display: none;
  }
}