@font-face { 
  font-family: "Futura"; 
  src: url('../fonts/futura/Futura.ttf') format("truetype"); 
}

@font-face {
  font-family: "Futura Bold";
  src: url('../fonts/futura/Futura_bold.ttf') format("truetype"); 
}

@font-face { 
  font-family: "Futura Extra Bold"; 
  src: url('../fonts/futura/Futura_extra_bold.ttf') format("truetype"); 
}

@font-face { 
  font-family: "Futura Book"; 
  src: url('../fonts/futura/Futura_book.ttf') format("truetype"); 
}

@font-face { 
  font-family: "Futura Heavy"; 
  src: url('../fonts/futura/Futura_heavy.ttf') format("truetype"); 
}

@font-face { 
  font-family: "Futura Medium"; 
  src: url('../fonts/futura/futura_medium.ttf') format("truetype"); 
}

/* @font-face { 
  font-family: "Futura Bold"; 
  src: url('../fonts/futura/Futura_bold.ttf'); 
} */

:root {
  --teal: #075D79;
  --magenta: #801240;
  /* --violet: #830FC7; */
  --violet: #b15be4;
}
/* General classes */
.magenta {
  color: var(--magenta) !important;
}

.teal {
  color: var(--teal) !important;
}

.violet {
  color: var(--violet) !important;
}

.bolder {
  font-weight: bolder;
  font-family: "Futura Heavy";
}

.flexbox {
  display: flex;
}

.hidden {
  display: none;
}

.link {
  text-decoration: underline;
  cursor: pointer;
}

.underline {
  position: relative;
  display: inline-block;
  padding-bottom: 2px; 
}

.underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 3px;
  background-color: #fff;
}

.dark-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.separator {
  border: none;
  height: 2px;
  background-color: white;
  width: 80%;
  margin: 2rem auto;
}

#hide{
  display: none;
}

.parallax {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: flex-end;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
  .parallax p {
      opacity: 1;
      padding-left: 20px;
      line-height: 1.2;
      font-family: "Futura Heavy";
  }

html {
  font-size: 12px;
}

p { 
  margin: 0;
}

body {
  margin: 0;
  /* font-family: Arial, sans-serif; */
  /* font-family: "Futura Bold"; */
  /* font-family: "Futura Bold"; */
  font-family: "Futura Book";
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

header {
  position: absolute;
  background-color: transparent;
  z-index: 1020;
  padding: 30px 20px 20px 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-height: 20vh;
  /* background-color: #000; */
}
    .logo {
      width: 30%;
      z-index: 1010;
      cursor: pointer;
    }

    /* Burger Icon Styles */
    .burger-icon {
      position: absolute;
      /* top: 20px; */
      right: 20px;
      width: 30px;
      height: 25px;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      z-index: 1100;
    }

    .burger-icon span {
      display: block;
      width: 35px;
      height: 3px;
      background-color: #801240;
      -webkit-transition: all 0.3s;
      transition: all 0.3s;
      position: relative;
      border-radius: 2px;
      transition: all 0.3s;
    }

    .burger-icon span::before,
    .burger-icon span::after {
      content: "";
      position: absolute;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: #ffffff;
      top: -10px;
      border-radius: 5px;
      -webkit-transition: all 0.3s;
      transition: all 0.3s;
    }

    .burger-icon span::after {
      top: 10px;
    }

    .burger-icon.open {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }

    .burger-icon.open span {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
      background-color: #ffffff;
    }

    .burger-icon.open span::before,
    .burger-icon.open span::after {
      -webkit-transform: rotate(90deg);
      transform: rotate(90deg);
      top: 0;
    }

    /* Menu Styles */
    .menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(128, 18, 64, 1);
      color: white;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-evenly;
      font-family: "Futura Heavy";
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.5s ease, visibility 0.5s ease;
      z-index: 1020;
    }

      .menu-link {
        margin-top: 20vh;
        color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }

    .menu.show {
      opacity: 1;
      visibility: visible;
    }

      .menu a {
        position: relative;
        color: white;
        font-size: 2.5rem;
        text-decoration: none;
        margin: 5px 0;
        transition: color 0.3s ease;
      }

      .menu a:hover {
        color: #ff6347;
      }

      .nav-link::after {
        display: none;
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        border-radius: 5px;
        background-color: #ffffff;
      }
      
      .active::after {
        display: block;
      }

    .burger-icon:focus,
    .menu a:focus {
      outline: 2px solid #ff6347;
    }

    body.menu-open {
      overflow: hidden;
    }

    .menu footer {
      background-color: transparent;
      padding: 0;
      margin-bottom: 20px;
    }


.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 25px 40px;
  background-color: #000000;
  /* background-image: url("../imgs/background.jpg"); */


  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

    .main-div {
        background-color: white;
        padding: 15px;
        border-radius: 25px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        background: url("../imgs/div_bck_prova.jpg") no-repeat;
        background-size: cover;
        height: 20vh;
        font-family: "Futura Extra Bold";
        cursor: pointer;
        z-index: 1010;
        margin-bottom: 3vh;
    }
        .main-div p {
            font-size: 48px;
            opacity: 1;
        }

.content {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  background-color: #000;
  padding: 60px 10px 0px 10px;
}
      
.text-section {
    text-align: center;
    width: 90%;
}

    .text-section p,a{
        opacity: 1;
        font-size: 1.5rem;
        color: #fff;
    }

    .text-section a {
        font-weight: bold;
    }

.page_title {
  font-size: 5rem;
  padding-left: 3rem;
  margin-bottom: 1rem;
}

footer {
  position: relative;
  background-color: #000;
  color: white;
  text-align: center;
  padding: 15px 20px;
  z-index: 1020;
}

    footer .social-icons {
      display: flex;
      justify-content: center;
      gap: 10px; 
      margin-bottom: 10px;
    }

        footer .social-icons img {
          width: 25px;
        }

footer .social-icons a {
  color: white;
  text-decoration: none;
  font-size: 20px;
}

footer p {
  font-size: 1.2rem;
  font-family: "Futura Book";
  margin: 0;
}

#go_up {
  position: absolute;
  cursor: pointer;
  width: 5%;
  right: 5%;
  top: 10%;
}

.desktop_menu, .desk_container {
  display: none;
}

@media (min-width: 768px) {
  #menu, #burger, #bottom-left-svg{
    display: none;
  }
  
  .desktop_menu {
    position: absolute;
    display: flex;
    max-width: 40%;
    top: 3rem;
    right: 2rem;
  }

  .desktop_menu a {
    position: relative;
    margin: 2px 10px;
    padding-bottom: 3px;
    font-weight: bold;
    font-size: 1.8rem;
  }

  .logo {
    width: 10%;
  }

  .page_title {
    font-size: 10rem;
  }

  .text-section p{
    font-size: 3rem;
  }

  footer {
    display: flex;
    flex-direction: column;
  }

  .footer_icons {
    display: flex;
    justify-content: flex-end;
    gap: 10px
  }

  #go_up {
    position: initial;
  }

  .social-icons img {
    width: 5%;
  }
  #go_up {
    width: 2%;
  }

  .footer_info {
    display: flex;
    justify-content: center;
  }
}