
@font-face {
  font-family: 'Sifonn';
  src: url('fonts/Sifonn.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

body {
  font-family: 'Sifonn', 'Orbitron', sans-serif;
}

.title {
   font-family: 'Sifonn', 'Orbitron', sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
/*  font-family: 'Orbitron', sans-serif;*/

  background: linear-gradient(to bottom right, #000000, #330000);
  overflow-x: hidden;
  overflow-y: auto;
  background: linear-gradient(to bottom left, #6a4c27 -30%, #1a1a1a 40%);
  
}


.p-about {
  font-family: 'Rajdhani', sans-serif;
  line-height: 1.6;
  font-size: 16px;
  color: #f0f0f0;
}

hr  {
  border: none;
  height: 1px;  /* Ancora più sottile */
  width: 100%;
  background: linear-gradient(90deg, #fff, #bbb, #333, #bbb, #fff);
  background-size: 300% 100%;
  animation: elegant-flash-move-red 2s linear infinite;
  margin: 0;
  opacity: 0.8;
  box-shadow: 0 0 8px 2px rgba(255, 0, 0, 0.5); /* alone rosso */
}

@keyframes elegant-flash-move-red {
  0% {
    background-position: 100% 0;
    opacity: 0.7;
  }
  50% {
    background-position: 0 0;
    opacity: 1;
  }
  100% {
    background-position: 100% 0;
    opacity: 0.7;
  }
}




                /* NAVBAR */

/* Font Sifonn-like, fallback Orbitron */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');



#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #000000;
  padding: 1rem 0.4rem;
  /*box-shadow: 0 2px 10px rgba(255, 0, 0, 0.4);ROSSA*/
  font-family: 'Orbitron', sans-serif;
  z-index: 999;
  transition: top 0.4s ease-in-out;
  box-shadow:
  0 2px 10px rgba(255, 252, 64, 0.6),  /* giallo brillante */
  0 2px 20px rgba(255, 153, 0, 0.5),   /* arancio */
  0 2px 30px rgba(255, 252, 64, 0.4);  /* giallo più soft */

}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

#navbar ul {
  display: flex;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Mostra solo su schermi più grandi */
@media (max-width: 991px) {
  #navbar {
    display: none;
  }
}



#navbar ul li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

#navbar ul li a:hover {
  color: #ff5100; /* Arancione acceso */
}

/* Navbar nascosta inizialmente */
#navbar.hidden {
  top: -100px;
}


.social-icon {
  margin: 0 1px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.navbar-socials,
.mobile-socials {
  margin-top: 0;
  display: flex;
  justify-content: center;
  gap: 1px;
}


            /* RESPONSIVE */

/* Media query desktop: sposta le icone verso destra */
@media (min-width: 1024px) {
  .navbar-socials,
  .mobile-socials {
    justify-content: flex-start; /* o center + padding/margin sinistro */
    padding-left: 10px; /* distanza da sinistra per spostare a destra */
  }
}


            /* HAMBURGUER */
/* Hamburguer: Posizionamento e Stili Base */
.hamburger {
    position: fixed;
    top: 1rem;
    right: 1.5rem;
    width: 45px;
    height: 25px; /* o il valore che preferisci */
    display: none; /* Nascondilo di default su schermi grandi */
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1001;
}

/* Stili per le singole linee dell'hamburger */
.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: white;
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    color: white;
    border-radius: 1px;
}

/* Animazione per la 'X' */
.hamburger.active span:nth-child(1) {
    transform: translateY(11.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-11.5px) rotate(-45deg);
}

/* Media Query: Mostra l'hamburger solo su schermi piccoli */
@media (max-width: 991px) {
    .hamburger {
        display: flex;
    }
}

/* Menu fullscreen mobile - Ripristina i tuoi stili */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1000;
    display: none; /* Nascosto di default */
    justify-content: center;
    align-items: center;

    /* Ripristina i tuoi gradienti e filtri */
    background: linear-gradient(
      45deg,
      rgba(255, 252, 64, 0.2),
      rgba(255, 153, 0, 0.2),
      rgba(255, 252, 64, 0.2)
    );
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

/* Quando aperto */
.mobile-menu.open {
    display: flex; /* Lo rendiamo visibile */
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu ul li a {
 font-family: 'Orbitron', sans-serif;
 font-weight: 700;
 font-size: 1.5rem;
 color: #fff;
 text-decoration: none;
 text-shadow: 0 0 6px rgba(255, 252, 64, 0.8);
 transition: color 0.3s ease;

}



.mobile-menu ul li a:hover {
 color: #ff9900;

}


/* Lista menu */

.mobile-menu ul {

 list-style: none;
 padding: 0;
 margin: 0;
 text-align: center;

}



.mobile-menu ul li {
 margin: 1.4rem 0;

}

/* Regola per nasconderlo quando ha la classe 'hidden' */
.hamburger.hidden {
     top: -80px;
}

        /* APPARIZIONE HERO 

.hero-content {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 1s ease, transform 1s ease;
}

.hero-content.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero .buttons a {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-content.animate .buttons a:nth-child(1) {
  transition-delay: 0.3s;
  opacity: 1;
  transform: translateY(0);
}

.hero-content.animate .buttons a:nth-child(2) {
  transition-delay: 0.6s;
  opacity: 1;
  transform: translateY(0);
}*/






            /* SEZIONE HERO */


.hero {
  height: 100vh;
  background-image: url('luca-hero.png'); /* Inserisci qui il tuo file */
  background-size: cover;
  background-position: left 35vw center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding-left: 2%;
  padding-bottom: 2vw;
  padding-top: clamp(40px, 20vw, 60px);
}

.logo-top-right {
  position: fixed;         /* Fissa il logo alla finestra */
  top: 10px;               /* Distanza dal bordo superiore */
  left: 10px;              /* Distanza dal bordo sinistro */
  z-index: 1000;           /* Davanti a tutto */
  max-width: 50px;         /* Dimensioni come desideri */
  height: auto;
  cursor: pointer;         /* Mostra la mano al passaggio del mouse */
  transition: opacity 0.5s ease; /* Opzionale: effetto transizione */
}


.logo-top-right {
  opacity: 0;
  pointer-events: none;
}
.logo-top-right.visible {
  opacity: 1;
  pointer-events: auto;
}



.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 50%, rgba(0,0,0,0.3));
  z-index: 0;
}




.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.small-title {
  color:  #fffc40;
  /*font-size: 20px;*/
  font-size: clamp(1rem, 2vw, 2rem);
  margin-bottom: 10px;
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  margin-left: 6px;
}

.main-title {
 /* font-size: 64px;*/
  font-size: clamp(4rem, 8vw, 8rem);
  color: white; /*  #fffc40 giallo */
  margin: 0;
  line-height: 1;
  font-family: 'Orbitron', sans-serif;
  top: -10px;
  margin-bottom: clamp(70px, 8vw, 80px);
  font-weight: 900;
}

.subtitle {
 /* font-size: 28px;*/
  font-size: clamp(1.5rem, 3vw, 3rem);
  color: white;
  margin: 0 0 30px 0;
  font-weight: 900;
}

.lavora {
    /*font-size: 22px;*/
    font-size: clamp(1.5rem, 3vw, 3rem);
    color: #fffc40;
      }




.buttons {
    margin-top: 100px;
     font-family: 'Sifonn', 'Orbitron', sans-serif;
}

.btn {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.03); /* effetto vetro */
  color: whitesmoke;
  border: 2px solid currentColor;
  cursor: pointer;
  position: relative;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
  
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 4px 0 rgba(0, 0, 0, 0.5),
    0 6px 12px rgba(0, 0, 0, 0.4);
     font-family: 'Sifonn', 'Orbitron', sans-serif;
    
}

.btn::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: currentColor;
  opacity: 0.15;
  filter: blur(12px);
  z-index: -1;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.btn.lime {
  color:  #fffc40;
}

.btn.orange {
  color:  #fffc40;
}



.btn:hover {
  transform: translateY(-4px);
  background-color: rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 6px 0 rgba(0, 0, 0, 0.5),
    0 10px 20px rgba(0, 0, 0, 0.5),
    0 0 12px currentColor;
}

.btn:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 1px 2px rgba(0,0,0,0.4),
    0 2px 0 rgba(0,0,0,0.5),
    0 4px 8px rgba(0,0,0,0.4);
}


.description {
 /* font-size: 16px;*/
 font-size: clamp(1rem, 2vw, 2rem);
  color: whitesmoke;
  max-width: 500px;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 30px;
}



            /* RESPONSIVE */
            
@media (min-width: 900px) {
  .subtitle {
    margin-top: 0;
    margin-bottom: 10px;    /* riduci qui */
  }
  .description {
    margin-bottom: 18px;    /* riduci qui */
  }
  .buttons {
    margin-top: 30px;       /* riduci qui */
  }
}
 @media (min-width: 900px) {
  .main-title {
    margin-bottom: 30px; /* diminuisce lo spazio sotto il titolo su PC */
  }
}
          
/* Su schermi larghi (PC, tablet) sposta il logo in alto a sinistra */
@media (min-width: 900px) {
  .logo-top-right {
    right: 96%;   /* rimuove il posizionamento a destra */
    left: auto;    /* lo sposta a sinistra */
    top: 3px;
    max-width: 45px; /* se vuoi rendere un po' più grande il logo su PC */
  }
}          
            
@media (min-width: 900px) {
  .hero {
    /* sposta l’immagine più in basso su pc */
    /*background-position: calc(10% - -450px) 10%;*/
    background-position: calc(10% + 35vw) 10%;
    height: 120vh;
  }
}




            /* CHI SONO */

.about {
  padding: 80px 10%;
  background-color: #0e0e0e;
  color: #fff;
  font-family: 'Sifonn', sans-serif;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 16px;
  filter: grayscale(10%) contrast(1.1);
  box-shadow: 0 0 20px rgba(208, 255, 0, 0.3);
}

.about-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 16px;
  filter: grayscale(10%) contrast(1.1);
  box-shadow:
    0 0 12px 2px rgba(255, 252, 64, 0.4),
    0 0 24px 6px rgba(255, 252, 64, 0.2);
}


.about-text {
  flex: 1;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-text h2 {
  font-size: 2.5rem;
  color:  #fffc40; /* COLORI TITOLI */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text .quote {
  font-style: italic;
  color: gainsboro;
  margin-bottom: 20px;
}


            /* RESPONSIVE */

@media (min-width: 1024px) {
  /* Qui dentro metti il CSS che vuoi applicare solo su PC */
  .about-container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
    height: 100vh;
  }

  .about-image {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    margin-right: 10%;
  }

  .about-image img {
    width: 100%;
    border-radius: 16px;
    filter: grayscale(10%) contrast(1.1);
    box-shadow:
      0 0 12px 2px rgba(255, 252, 64, 0.4),
      0 0 24px 6px rgba(255, 252, 64, 0.2);
  }

  .about-text {
    flex: 1;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    justify-content: center; /* centratura verticale */
    text-align: left;
  }
}


            /* COM'È NATO' */



.corework-origin {
  padding: 80px 10%;
  background: linear-gradient(to left, #6a4c27 -100%, #1a1a1a 50%);
  color: #fff;
  font-family: 'Sifonn', sans-serif;
  
}

.origin-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.origin-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 16px;
  filter: grayscale(10%) contrast(1.1);
  box-shadow: 0 0 25px rgba(255, 216, 64, 0.4); /* Ombra dorata */
  margin: 15px 20px 20px 15px;
}

.origin-text {
  background-color: rgba(0, 0, 0, 0.75);
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(255, 200, 0, 0.2);
  max-width: 1000px; /* oppure aumentalo quanto vuoi */
  flex: 1 1 90%; /* questo la fa crescere in base allo spazio disponibile */
 margin: -60px -20px;
}
.origin-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fffc40;
  text-shadow: 0 0 6px rgba(255, 240, 120, 0.6);
}

.origin-text p {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  line-height: 1.7;
}


@media (min-width:1024px) {
#torna-home {
  margin-top: 2%;
  }
}

@media (min-width:1024px) {
.origin-image {
 text-align: center;
  margin: 5% auto 5% auto;
  }
}

            /* TRAINING */


.training {
  padding: 80px 7%;
  background: linear-gradient(to left, #111, #0e0e0e);
  color: #fff;  
  margin: 0 -20px;
}

#training {
  width: 350px;
  margin: 0 auto; /* centro orizzontalmente */
  text-align: center; /* se ci sono altri elementi inline */
}


#training-corso {
    width: 350px;
  margin: 0 auto; /* centro orizzontalmente */
  text-align: center; /* se ci sono altri elementi inline */
}

.training .about-text {
  background-color: rgba(0, 0, 0, 0.75);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(255, 200, 0, 0.15);
  flex: 1 1 60%;
  font-family: 'Rajdhani', sans-serif;
}

.training .about-text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.training .about-text p {
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.6;
}

.training .btn {
  margin-top: 16px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
   font-family: 'Sifonn', 'Orbitron', sans-serif;
}

.btn {
    margin-top: 30px;
}


.hr-gialla {
  border: none;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, #fffc40, #ff9900, #fffc40);
  background-size: 300% 100%;
  animation: elegant-flash-move-yellow 2s linear infinite;
  margin: 0;
  opacity: 0.8;
  box-shadow: 0 0 8px 2px rgba(255, 223, 0, 0.4);
}

@keyframes elegant-flash-move-yellow {
  0% { background-position: 100% 0; }
  50% { background-position: 0 0; }
  100% { background-position: 100% 0; }
}

@media (min-width:1024px) {
#training-corso {
  min-height: 100vh;
  }
}


@media (min-width:1024px) {
#training {
  min-height: 100vh;
  }
}

/* INTERVISTE */
.interviste-section {
  padding: 60px 5%;
  background-color: #0e0e0e;
  color: white;
  font-family: 'Sifonn', sans-serif;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.interviste-title {
    
font-size: clamp(2rem, 4vw, 4rem);
  margin-bottom: 10vh;
  margin-top: 0;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 150px;
}

.carousel {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease-in-out;
  scroll-behavior: smooth;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 100px; /* lascia spazio per vedere gli altri video */
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 350px;
  scroll-snap-align: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
  
}

.carousel-item:hover {
  transform: scale(1.03);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 197px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.6) url('https://img.icons8.com/ios-filled/50/ffffff/play--v1.png') center center no-repeat;
  background-size: 30px 30px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  padding: 10px 16px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-caption {
  margin-top: 8px;
  font-size: 1rem;
  color: #fffc40;
  font-family: 'Orbitron', sans-serif;
  text-align: center;
}

.interviste-section {
  padding: 60px 5%; /* padding top/bottom per desktop */
  background-color: #0e0e0e;
  color: white;
  font-family: 'Sifonn', sans-serif;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Mobile full screen */
@media screen and (max-width: 768px) {
  .interviste-section {
    padding: 0; /* elimina padding su mobile */
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .carousel-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
  }

  .carousel {
    scroll-padding: 0 10px;
  }
  
  .interviste-title {
      padding-top: 100px;
  }
}

.video-thumbnail {
  position: relative;
  width: 350px;
  height: 197px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.6) url('https://img.icons8.com/ios-filled/50/ffffff/play--v1.png') center center no-repeat;
  background-size: 30px 30px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.3s ease;
}

.video-thumbnail:hover .play-button-overlay {
  background-color: rgba(0, 0, 0, 0.8);
}


@media (min-width:1024px) {
#video {
  min-height: 100vh;
  padding-top: 25vh;
  }
}




/* --- RUBRICA DEL MARTEDÌ --- */
.rubrica-section {
  background-color: #0e0e0e;
  padding: 80px 10%;
  display: flex;
  justify-content: center;
}

.rubrica-card {
  background-color: #1c1c1c;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(255, 252, 64, 0.2);
  padding: 40px 30px;
  max-width: 800px;
  width: 100%;
  text-align: center;
  border: 2px solid rgba(255, 252, 64, 0.25); /* bordo giallo tenue */
}

.rubrica-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 30px;
  font-family: 'Montserrat', sans-serif;
}

.rubrica-video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  margin-bottom: 35px;
}

.rubrica-video-wrapper video.rubrica-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 18px rgba(255, 252, 64, 0.2);
}

/* titolo più piccolo */
.rubrica-title {
  font-size: 1.6rem;      /* prima era 2rem */
  margin-bottom: 20px;
  color: #fffc40;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Orbitron', sans-serif;
}

/* bottone con fondo scuro, bordo + ombra gialla */
.rubrica-btn {
  display: inline-block;
  padding: 14px 30px;
  background-color: #0e0e0e;                /* sfondo scuro */
  color: #fffc40;                           /* testo giallo */
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;

  border: 2px solid #fffc40;                /* contorno giallo */
  box-shadow: 0 0 12px rgba(255, 252, 64, 0.5);
  transition: all 0.3s ease;
}

.rubrica-btn:hover {
  background-color: #1a1a1a;                /* leggermente più chiaro al passaggio */
  box-shadow: 0 0 18px rgba(255, 252, 64, 0.8);
}

/* opzionale: leggero resize su mobile */
@media (max-width: 768px) {
  .rubrica-title { font-size: 1.3rem; }
  .rubrica-btn { padding: 12px 24px; font-size: 0.9rem; }
}


.container-rubrica {
    margin-bottom: 60px;
    text-align: center;
}


            /* CONTATTI */

.contatti-section {
  height: 100vh;
  background-image: url('luca-hero.png'); /* Inserisci l’immagine di sfondo */
  background-size: cover;
  background-position: right -250px center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  font-family: 'Orbitron', 'Sifonn', sans-serif;
  color: #fffc40;
  text-align: center;
  overflow: hidden;
  
}

.contatti-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 50%, rgba(0,0,0,0.3));
  z-index: 0;
}

.contatti-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.contatti-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 12px;
  font-family: 'Orbitron', sans-serif;
  color: #fffc40;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contatti-subtitle {
  font-size: 1.2rem;
  margin-bottom: 24px;
  font-weight: 700;
  color: white;
}

.contatti-form input,
.contatti-form textarea {
  width: 85%;
  padding: 15px 18px;
  margin-bottom: 20px;
  border: 2px solid #fffc40;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.03);
  color: whitesmoke;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  outline: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.contatti-form input::placeholder,
.contatti-form textarea::placeholder {
  color: #c1b1b1;
  opacity: 0.8;
}

.contatti-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contatti-form button {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 900;
  color: #fffc40;
  background-color: rgba(255,255,255,0.03);
  border: 2px solid #fffc40;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Orbitron', sans-serif;
  position: relative;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 4px 0 rgba(0, 0, 0, 0.5),
    0 6px 12px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.contatti-form button::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: currentColor;
  opacity: 0.15;
  filter: blur(12px);
  z-index: -1;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.contatti-form button:hover {
  transform: translateY(-4px);
  background-color: rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 6px 0 rgba(0, 0, 0, 0.5),
    0 10px 20px rgba(0, 0, 0, 0.5),
    0 0 12px currentColor;
}

.contatti-form button:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 1px 2px rgba(0,0,0,0.4),
    0 2px 0 rgba(0,0,0,0.5),
    0 4px 8px rgba(0,0,0,0.4);
}

            /* RESPONSIVE */

@media (min-width: 900px) {
  .contatti-section {
    /* sposta l’immagine più in basso su pc */
    background-position: calc(10% - -530px) 10%;
  }
}

@media (min-width: 1024px) {
  .contatti-section {
    padding-left: 6%;
  }
}



/* TESTIMONIANZE */


.recensioni-section {
    height: 100vh;
  background-color: #0e0e0e;
  color: white;
 /* padding: 80px 5%;*/
 padding: 80px 0 0 0;  
  font-family: 'Sifonn', sans-serif;
  text-align: center;
  overflow: hidden;
}

.recensioni-title {
  font-size: 2rem;
  margin-bottom: 45px;
  margin-top: 150px;
}

blockquote {
    margin-top: 20%;
}

.carousel {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease-in-out;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}

.carousel-recensioni {
  flex: 0 0 auto;
  scroll-snap-align: center;
  background-color: #1c1c1c;
  padding: 30px;
  border-radius: 12px;
  width: 300px;
  min-height: 180px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.carousel-recensioni:hover {
  transform: scale(1.03);
}

.carousel-recensioni blockquote {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 15px;
}

.carousel-recensioni p {
  font-size: 0.85rem;
  color: #ccc;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

/* Mobile full screen */
@media (max-width: 768px) {
  .recensioni-section {
    padding: 0;
  }

  .carousel-recensioni {
    width: 80vw;
    margin: auto;
  }
}

@media (min-width:1024px) {
.recensioni-section {
  min-height: 100vh;
  padding-top: 10vh;
  }
}

.button-gadget-v  {
    margin-bottom: 100px;
    
}


/* FOOTER */

/* FOOTER GENERALE */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 40px 20px 20px;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
}

/* Contenitore interno */
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Logo e testi */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  max-width: 60px;
  height: auto;
}

/* Social icon container */
.footer-right {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Icone SVG */
.social-icon svg {
  transition: transform 0.3s ease;
}

.social-icon:hover svg {
  transform: scale(1.2);
}

/* Email e slogan */
.footer-slogan {
  font-weight: bold;
  font-size: 1.2em;
  margin: 0;
}

.footer-email a {
  color: #ff0; /* Giallo */
  text-decoration: none;
}

.footer-email a:hover {
  text-decoration: underline;
}

/* Footer bottom */
.footer-bottom {
  margin-top: 30px;
  font-size: 0.85em;
}

.footer-bottom a {
  color: #ff0;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-line-deco {
  width: 85%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08); /* appena visibile */
  margin: 20px auto;
  border-radius: 2px;
}


/* GADGET */

body {
  margin: 0;
      font-family: 'Orbitron', sans-serif;
      background-color: #0e0e0e;
      color: white;
    }

    .gadget-hero {
      text-align: center;
      padding: 100px 20px 60px;
      background: linear-gradient(180deg, #111 0%, #1a1a1a 100%);
    }

    .gadget-hero h1 {
      font-size: 3rem;
      color: #fffb00;
      margin-bottom: 10px;
    }
    
    

    .gadget-hero p {
      font-size: 1.2rem;
      color: #ccc;
    }

    .category-title {
      color: #fffb00;
      font-size: 5rem;
      margin: 40px 5% 20px;
      font-weight: 700;
      text-align: left;
    }

    /* Swiper container */
    .swiper {
      padding: 20px 5%;
      margin-bottom: 60px;
    }

    /* Card style inside swiper */
    .gadget-card {
      background-color: #1c1c1c;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 0 16px rgba(255, 255, 64, 0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
    }

    .gadget-card:hover {
      transform: scale(1.05);
      box-shadow: 0 0 25px rgba(255, 255, 64, 0.3);
    }

    .gadget-card img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      display: block;
    }

    .gadget-card h3 {
      font-size: 1.2rem;
      margin: 15px;
      color: #fffb00;
    }

    .gadget-card p {
      font-size: 0.95rem;
      color: #aaa;
      margin: 0 15px 15px;
    }

    /* Swiper arrows */
    .swiper-button-next,
    .swiper-button-prev {
      color: #fffb00;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .gadget-hero h1 {
        font-size: 2rem;
      }
      .gadget-hero p {
        font-size: 1rem;
      }
      .category-title {
        font-size: 1.5rem;
      }
    }
    
    
    .price {
  color: #ffd700; /* colore oro/giallo */
  font-weight: 700;
  font-size: 1rem;
  margin: 0 15px 15px;
}

footer p {
  margin: 0;
  color: #ffffff; /* testo bianco */
  font-family: 'Sifonn', 'Orbitron', sans-serif;
}

footer a {
  font-weight: bold;
  color: #fffc40; /* giallo per GaByWeb */
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}



/* =======================
   RESPONSIVE MOBILE LANDSCAPE
   ======================= */
@media screen and (max-width: 900px) and (max-height: 500px) {
  /* HERO */
  .hero {
    height: auto;                /* evita taglio */
    padding: 40px 20px;
    background-position: center top;
    text-align: left;
  }

  .hero-content {
    max-width: 100%;
    
  }

  .main-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .subtitle,
  .lavora {
    font-size: 1.2rem;
  }

  .description {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  

  /* SEZIONE "CHI SONO" e simili */
  .about-container,
  .origin-container,
  .training .about-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .about-image,
  .origin-image,
  #training,
  #training-corso {
    margin: 0 auto 20px;
    max-width: 250px; /* ridimensiona immagini */
  }

  /* Rubrica */
  .rubrica-card {
    padding: 20px;
  }
  .rubrica-title {
    font-size: 1.2rem;
  }
  .rubrica-text {
    font-size: 0.9rem;
  }

  /* Contatti */
  .contatti-title {
    font-size: 1.5rem;
  }
  .contatti-subtitle {
    font-size: 1rem;
  }

  /* Testimonianze */
  .recensioni-title {
    font-size: 1.3rem;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 10px;
  }
  
  
}

/* Telefono in orizzontale (max 768px e landscape) */
@media screen and (max-width: 768px) and (orientation: landscape) {
  .hero {
    background-position: right center; /* spinge l’immagine a destra */
    background-size: cover; /* mantiene il riempimento */
  }
}
/* Telefono in orizzontale */
@media screen and (max-width: 768px) and (orientation: landscape) {
  .hero {
    background-position-x: 95%; /* spinge quasi tutto a destra */
    background-size: cover;
  }
}

/* Telefono in orizzontale */
@media screen and (max-width: 768px) and (orientation: landscape) {
  .hero {
    background-position: right center !important; /* spostata tutta a destra */
    background-size: cover;
  }
}

/* =======================
   RESPONSIVE MOBILE LANDSCAPE
   Contatti + Testimonianze
   ======================= */
@media screen and (max-width: 900px) and (max-height: 500px) {
  /* --- CONTATTI --- */
  .contatti-section {
    height: auto;                  /* elimina l’altezza forzata */
    padding: 40px 20px;
    background-position: center;   /* centra lo sfondo */
    text-align: center;
  }

  .contatti-content {
    max-width: 100%;
  }

  .contatti-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .contatti-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .contatti-form input,
  .contatti-form textarea {
    width: 100%;
    font-size: 0.9rem;
  }

  .contatti-form button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  /* --- TESTIMONIANZE --- */
  .recensioni-section {
    height: auto;             /* no altezza fissa */
    padding: 40px 20px;
  }

  .recensioni-title {
    font-size: 1.4rem;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .carousel-recensioni {
    width: 90%;
    min-height: auto;
    padding: 20px;
    margin: 0 auto;
  }

  .carousel-recensioni blockquote {
    font-size: 0.95rem;
  }

  .carousel-recensioni p {
    font-size: 0.8rem;
  }
}


/* COOKIEBUNNER */
  /* === COOKIE BANNER GABYWEB - COREWORK THEME === */
:root{
  --bg:#000;
  --bg2:#0e0e0e;
  --text:#f5f5f5;
  --accent:#fffc40;
  --muted:#bdbdbd;
  --card:rgba(10,10,10,0.9);
  --border:rgba(255,252,64,0.25);
}

/* --- Banner principale --- */
#gw-banner{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:9999;
  background:var(--card);
  border-top:1px solid var(--border);
  box-shadow:0 -2px 20px rgba(0,0,0,0.6);
  color:var(--text);
  font-family:'Montserrat', sans-serif;
  padding:18px 16px;
  animation:fadeIn .4s ease;
}
#gw-banner.hidden{display:none!important}

#gw-banner .gw-content{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}
#gw-banner p{
  flex:1;
  font-size:.95rem;
  line-height:1.5;
  margin:0;
}
#gw-banner a{
  color:var(--accent);
  text-decoration:underline;
}
#gw-banner a:hover{ text-decoration:none; }

/* --- Pulsanti --- */
.gw-btn{
  border:1px solid var(--border);
  border-radius:8px;
  font-family:'Orbitron', sans-serif;
  font-size:.9rem;
  letter-spacing:.3px;
  padding:9px 14px;
  cursor:pointer;
  transition:.2s ease;
}
.gw-btn.solid{
  background:var(--accent);
  color:#000;
  font-weight:600;
}
.gw-btn.solid:hover{
  box-shadow:0 0 10px var(--accent);
}
.gw-btn.ghost{
  background:transparent;
  color:var(--accent);
}
.gw-btn.ghost:hover{
  background:rgba(255,255,255,0.05);
}
.gw-btn.prefs{
  background:var(--bg2);
  color:var(--text);
  border:1px solid var(--border);
}
.gw-btn.prefs:hover{
  background:rgba(255,255,255,0.08);
}

/* --- Pannello preferenze --- */
#gw-panel{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.8);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:10000;
  animation:fadeIn .3s ease;
}
#gw-panel.hidden{display:none!important}
#gw-panel .gw-panel-content{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:24px 20px;
  max-width:640px;
  width:90%;
  color:var(--text);
  box-shadow:0 0 25px rgba(0,0,0,0.6);
}
#gw-panel h3{
  font-family:'Orbitron', sans-serif;
  font-size:1.1rem;
  color:var(--accent);
  margin-top:0;
  text-transform:uppercase;
  letter-spacing:.6px;
}
.gw-cat{
  border-top:1px solid rgba(255,255,255,0.1);
  padding:12px 0;
}
.gw-cat:first-of-type{border-top:0;}
.gw-cat-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.gw-cat p{
  margin:6px 0 0;
  font-size:.9rem;
  color:var(--muted);
  line-height:1.5;
}

/* --- Switch --- */
.gw-switch{
  position:relative;
  display:inline-block;
  width:46px;
  height:24px;
}
.gw-switch input{display:none;}
.gw-switch span{
  position:absolute;
  inset:0;
  background:#555;
  border-radius:999px;
  transition:background .2s ease;
}
.gw-switch span:after{
  content:"";
  position:absolute;
  left:3px; top:3px;
  width:18px; height:18px;
  background:#fff;
  border-radius:50%;
  transition:transform .2s ease;
}
.gw-switch input:checked + span{
  background:var(--accent);
}
.gw-switch input:checked + span:after{
  transform:translateX(22px);
}

/* --- Blocco elementi non consentiti --- */
.gw-block{
  background:rgba(255,255,255,0.03);
  border:1px dashed var(--border);
  border-radius:12px;
  padding:12px 14px;
  text-align:center;
  color:var(--muted);
  font-size:.95rem;
  margin:10px 0;
}

/* --- Animazioni e responsive --- */
@keyframes fadeIn{from{opacity:0;transform:translateY(10px);}to{opacity:1;transform:translateY(0);}}
@media (max-width:700px){
  #gw-banner .gw-content{flex-direction:column;align-items:flex-start}
  #gw-banner p{font-size:.9rem;}
  .gw-actions{width:100%;display:flex;gap:8px;justify-content:flex-end;}
  .gw-btn{flex:1;text-align:center;}
}


/* === Firma GaByWeb (footer link + logo) === */
/* === Firma GaByWeb (footer link + logo) === */


.footer-links {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
  font-size: .9rem;
}

.footer-copy {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.5rem;
  opacity: .8;
}

.footer-powered {
  margin-top: -1rem; /* ora regoli la distanza quando vuoi */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .4rem;
  font-size: 0.5rem;
}

.gabyweb-logo {
  height: 36px;
  width: auto;
  margin-top: 3px; /* sposta solo il logo ↓ */
  margin-left: -0.5rem;
}

/* === Checkbox GDPR === */
.checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  text-align: center;
  color: #f5f5f5;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.checkbox label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* ✅ Checkbox visibile e coerente con la palette */
.checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #fffc40; /* Giallo CoreWork */
  border: 2px solid #fffc40;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.checkbox input[type="checkbox"]:hover {
  transform: scale(1.15);
}

/* ✅ Testo e link */
.checkbox span {
  line-height: 1.4;
}

.checkbox a {
  color: #fffc40;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.checkbox a:hover {
  color: #fff;
}

