

@import url('https://fonts.googleapis.com/css2?family=Sekuya&display=swap');
/* === VARIABILI & RESET === */
:root {
  --titolo: "Sekuya", system-ui;
  --titolo2:"Sekuya", system-ui;
  --bianco: #f3f3f3;
  --nero: #010000;  /* 
  --verde: #45a049; *//* 
  --verde:#ec5757; */
  --verde:#1e286e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 62%;
}


html {
  scroll-behavior:smooth;
}
 html::-webkit-scrollbar{
  width: 0.6rem;
 }
 html::-webkit-scrollbar-thumb{
  background-color: var(--nero);
 }
 html::-webkit-scrollbar-track{
  background-color: var(--verde);
 }
body {
  overflow-x: hidden;
  font-family: var(--titolo);
   scroll-behavior: smooth;
}

/* === HEADER === */
header {
  position: sticky;
  top: 0;
  width: 100%;
  min-height: 100px;
  background-color: var(--nero);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0rem 5%;
  border-bottom: solid 1px var(--bianco);
}

header a  img.logo {
  width: 130px;
  height: auto;
  z-index: 101;
}

header .navLinks{
  list-style: none;
  display: flex;
  gap: 15px;
}

header .navLinks li a {
  text-decoration: none;
  color: var(--bianco);
  font-weight: 100;
  font-size: 1.6rem;
  text-transform: uppercase;
  transition: all 0.5s linear;
  position: relative;
}

header .navlinks li a::before{
     content: '';
     position: absolute;
     bottom: 0;
     left: 00%;/* 
     transform: translateY(-50%); */
     height: 2px;
     width: 0;
     background-color: var(--verde);
     transition: all 0.5s linear;
}
header .navlinks li a:hover::before{
  width: 100%;
}
header .navLinks li a:hover {
  color: var(--verde);
}
header .navLinks li button {
  color: var(--bianco);
  background: none;
  font-family: var(--titolo);
  border: none;
  cursor: pointer;
  font-weight: 400;
}
header .navLinks li button:hover {
  color: var(--verde);
}
header #menuToggle{
    display: none;
    position: absolute;
    top: 50px;
    right: 50px;
    z-index: 11;
    cursor: pointer;
}

header #menuToggle span{
    display: block;
    width: 33px;
    height: 4px;
    position: relative;
    background-color: var(--bianco);
    border-radius: 3px;
    margin-bottom: 5px;
    z-index: 13;
    transform-origin: 4px 0px ;
    transition: all .3s linear;
}


@media ( max-width: 769px){
  header #navLinks{
    position: absolute;
    top: 100%;
    right:-100%;
    width: 100%;
    height: 100vh;
    padding-top: 3rem;
    background-color: var(--nero);
    display: flex ;
    flex-direction: column;
    align-items: center;
    transition: all .3s linear;
    opacity: 0;
    border-top: solid 1px var(--bianco);
    }
    header #navLinks.active{
      right:0;
      opacity: 1;
    }
        header #menuToggle{
          display: block;
        }
        header{
            width:  100%;
        }
  

header #menuToggle.open span:nth-last-child(3){
   
    transform: rotate(45deg) translateY(1px) ;
} 
header #menuToggle.open span:nth-last-child(2){
    opacity: 0;
}   
header #menuToggle.open span:nth-last-child(1){
    transform: rotate(-45deg) translateY(-1px) ;

}
}
/* === LINGUE === */
#it { display: block; }
#eng, #fr { display: none; }
/* === VIDEO SECTION === */
.video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6);
}
.overlay {
  position: relative;
  z-index: 2;
  color: var(--bianco);
  text-align: center;
  border-radius: 15px;
}


.video-testo {
  font-size: 7rem;
  padding: 2rem 6%;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  font-weight: 500;
  text-align: left;
}
.video-testo span{
  color: var(--verde);
  font-size: 6rem;
}
.video-sottotesto {
  font-size: 1.6rem;
  color: var(--bianco);
  opacity: 0.9;
  margin: 1rem auto;
  background: rgba(0, 0, 0, 0.4);
  padding: 1rem 6%;
  border-radius: 10px;
  text-align: justify;
  font-weight: 200;
  line-height: 1.9;
}
@media screen and (max-width:768px){
  h1.video-testo{
    font-size: 3rem;
    padding: 0.5 3%;
  }
  h1.video-testo span{
    font-size: 2.8rem;
  }
  .video-sottotesto{
    font-size: 1rem;
    padding: 0.5rem 3%;
  }
}
/* === CTA BUTTON === */
.cta-button {
  background: var(--verde);
  color: var(--bianco);
  padding: 0.75rem 1.5rem;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.6s ease;
 }

.cta-button:hover {
  background: #3d8e3e;
}

/* === CONTENT === */
.content {
  width: 100%;
  padding:  0;
  min-height: auto;
  text-align: center;
}
 .desc{
  width: 80%;
  margin: 30px auto;
  padding: 20px 0;
  text-align: left;
  position: relative;
}
 .desc::before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 100%;
  border-radius: 50%;
  background:linear-gradient(90deg,var(--bianco),var(--verde),var(--bianco));
}
.desc h1 {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--titolo2);
  color: var(--verde);

}
.desc span{
  font-size: 3.6rem;
  text-align: justify;
  opacity: 0.8;

}

@media  screen and (max-width:768px) {
   .desc{
    width: 95%;
    
  }
  .desc h1{
      font-size: 1.8rem;
    }
    .desc span{
      font-size: 2.5rem;
    }
    
}
.content-center {
  max-width: 80%;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  border-radius: 5px;/
}
/* === JOB CARDS === */
.job {
  flex: 1 1 30%;
  max-width: 400px;
  height: 400px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(1);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  transition:  all .2s linear !important  ;
  overflow: hidden;
}

.job:hover {
  transform: scale(1.01)!important;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5) ;
}

.job h2 {
  font-size: 1.7rem;
  text-align: center;
  padding:  2.2rem 0;
  width: 100%;
  font-family: var(--titolo2);
  background-color: var(--verde);
  color: var(--bianco);
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
}
.job h2::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background:linear-gradient(90deg,var(--bianco),var(--verde),var(--bianco));
}
 .job h2::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background:linear-gradient(90deg,var(--bianco),var(--verde),var(--bianco));
}
.job img {
  width: 50px;
  height: 50px;
  margin: 2rem 0;
}

.job p {
  font-family: var(--titolo2);
  font-size: 1.2rem;
  text-align: left;
  padding-top: 10px;
  text-transform: uppercase;
  font-weight: 100;
  color: var(--nero);
  opacity: 0.8;
}

/* === FORM === */
.preventivo{
  width: 100%;  
  overflow: hidden;
}
    .preventivo-info {
      width: 100%;
      margin: auto;
    }


    .row-ui-ux {
      display: flex;
      flex-wrap: wrap;
      background-color: var(--nero) !important;
      width: 100%;
      align-items: center;
      justify-content: center;
    }
  .row-ui-ux div {
    width: 55%;
    padding: 1rem 2rem;
  }
  
    .row-ui-ux div p {
      font-size: 1.3rem;
      color: var(--bianco);
      opacity: 0.8;
      line-height: 2;
    }

    .preventivo-info .row-ui-ux  ul {
      height: auto;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .preventivo-info .row-ui-ux ul li {
      font-size: 1.3rem;
      font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
      font-weight: 700;
      color: var(--bianco);
      opacity: 1;
      padding:15px;
      max-width: 230px;
      background-color: var(--verde);
    }
    .preventivo-info .row-ui-ux img {
      width: 45%;
      height: auto;
      max-height: 500px;
      object-fit: cover;
      padding-right:2px ;
      opacity: 0.9;
      background-color: var(--bianco);
    }

    @media (max-width: 768px) {
      .content-center { 
        width: 90%;}
      .row-ui-ux {
        flex-direction: column;
      }

      .preventivo-info .row-ui-ux div,
      .preventivo-info .row-ui-ux img {
        width: 100%;
      }
    }
 .contact-info{
  display: flex;
  gap:3px;
  width: 90%;
  margin: auto;
 }   

 .contact-info .info{
  width: 50%;
  display: flex;
  flex-direction: column;
 } 
 @media screen and (max-width:768px){
  .contact-info{
    flex-direction: column;
  }
   .contact-info .info{
    width: 100%;
    margin: 40px 0;
   }
 }
 .contact-info .info  h2 {
  color: var(--verde);
   font-size: 1.7rem;
  margin-bottom: 15px;
}
 .contact-info .info  p {
   font-size: 1.5rem;
   opacity: 0.8;
  margin-top: 15px;}
 .contact-info .info  a {
   font-size: 1rem;
   margin-top: 20px;
   text-decoration: none;
   color: var(--nero);
   opacity: 0.8;
  padding: 3px;
  transition: all .3s linear;

  display: inline-block;
  text-transform: none;
 }
 .contact-info .info a:hover{
   color: var(--verde);
   text-decoration: underline;
 }
 .contact-info .info a img.icon-social{
  width: 20px;
  margin-right: 3px;
  vertical-align: middle;
 }
.form-origin{
      width: 100%;
  }

.form .form-msg {
  width: 50%;
  height: auto;
  padding: 50px 20px;
  border: solid 1px var(--verde);
  background-color: var(--verde);
}
input,
textarea {
  width: 98%;
  padding: 1.5rem ;
  margin-bottom: 1.1rem;
  font-size: 1rem;
  font-family: var(--titolo);
  border: solid 1px var(--verde);
  box-sizing: border-box;
  transition: all .1s ease-in-out;
}

textarea {
  resize: none;
  height: 130px;
}

input:focus,
textarea:focus {
  border-bottom: solid 4px var(--verde);
  outline: none;
}

input[type="submit"] {
  display: block;
  background: transparent;
  color: var(--verde);
  border: solid 1px var(--verde);
  cursor: pointer;
  padding: 1.6rem;
  font-weight: bold;
  font-size: 1.7rem;
  width: 200px;
  margin: auto;
  border-radius: 6px;
  transition: all 0.5s linear;
}
input[type="submit"]:hover {
  background-color: var(--verde);
  color: var(--bianco);
}

.row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.input-group {
  flex: 1;
  min-width: 200px;
}
 .privacy {
  display: flex;
  align-items: center;
  gap: .1rem; 
  font-size: 1.2rem;
  color: var(--nero);
  line-height: 1.4;
}

.privacy input[type="checkbox"] {
  width: 13px;
  height: 13px;
  margin: 0;
  accent-color: var(--verde);
}
.privacy span{
  font-size: .8rem;
}
.privacy-a {
  color: var(--verde);
  font-size: 1rem;
  text-decoration: none;
}

/* === FAQ === */
.faq-section {
  max-width: 80%;
  margin:  auto;
  padding: 20px;
  color: var(--nero);
  border-left: solid 4px #fff;
  border-right:solid 4px #fff;
  border-bottom:solid 4px #fff;
 }

.faq-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 40px;
  color: var(--verde);
  position: relative;
  letter-spacing: 1px;
}

.faq-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--verde);
  margin: 10px auto 0;
}

.faq-item {
  margin-bottom: 15px;
  border-left: 6px solid var(--verde);
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 6px 8px rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 300;
  padding: 15px 20px;
  cursor: pointer;
  position: relative;
  color: var(--nero);
  opacity: 0.8;
  letter-spacing: 0.5px;
  font-family: var(--titolo2);
  transition: background 0.3s;
}

.faq-question::after {
  content: ">";
  position: absolute;
  right: 20px;
  font-size: 22px;
  transition: transform 0.3s linear;
}

.faq-question.active::after {
  content: "<";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background-color: #fff;
  padding: 0 20px;
}

.faq-answer p {
  font-size: 12px;
  font-family: var(--titolo2);
  font-weight: 200;
  padding: 15px 0;
  line-height: 1.2;
  color: var(--nero);
  opacity: 0.7;
}

/* === PRIVACY === */
.privacy {
  width: 100%;
}

.privacy-info {
  width: 70%;
  padding: 20px;
  margin-top: 100px;
  border-radius: 8px;
}
/* ===info-web*/
.info-web{
 width: 80%;
 margin: auto;
 padding: 14px 14px;
 display: flex;
 align-items: center;
 justify-content: center;
 gap:20px;
}
.info-web img{
 width: 30px ;
 height: auto;
}
.info-web h3{
  font-family: var(--titolo);
  color: var(--nero);
  opacity: 0.8;
  font-size: 1.5rem;
  font-weight: 200;
}
/* === FOOTER === */
.site-footer {
  background-color: var(--nero);
  color: var(--bianco);
  padding: 40px 20px 20px;
  margin-top: 50px;
  position: relative;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

.footer-logo img {
  width: 100px;
  height: 80px;
  position: absolute;
  top: 0;
  left: 100px;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-links li a {
  color: var(--bianco);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: var(--verde);
}

.footer-social a {
  font-size: 20px;
  margin-right: 15px;
  color: var(--bianco);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--verde);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  border-top: 1px solid #333;
}

/* === MEDIA QUERIES === */
@media (max-width: 768px) {

  .video-section {
    height: 60vh;
  }

  .video-testo {
    font-size: 13px;
    padding: 0.75rem 1.5rem;
  }
  .content{
    width: 100%;
  }
  .content h1 {
    font-size: 20px;
  }

  .content-center {
    flex-direction: column;
    align-items: center;
    width: 90%;
    padding: 10px;
  }

  .job {
    width: 90%;
  }

  input,
  textarea {
    margin-bottom: 15px;
    font-size: 16px;
    width: 100%;
  }

  .form .form-msg {
    width: 95%;
    padding: 10px;
  }

  input[type="submit"] {
    width: 90%;
    font-size: 18px;
  }

  .row {
    flex-direction: column;
    gap: 10px;
  }

  .input-group {
    width: 100%;
  }

  .faq-title {
    font-size: 26px;
  }

  .faq-question {
    font-size: 12px;
  }

  .faq-answer p {
    font-size: 10px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo img {
    width: 90px;
    height: auto;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-social {
    margin-top: 10px;
  }
}
