body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: 'Gill Sans', sans-serif;
  overflow-x: hidden;
  background-color: #f9f9f9;
}

.intro {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to bottom, #111, #444);
  overflow: hidden;
}

.blur-layer {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  backdrop-filter: blur(10px);
  z-index: 5;
}

.logo-text {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(255, 255, 255);
  font-size: 3rem;
  font-family: 'Oswald', sans-serif;
  /*font-style: italic;*/
  text-align: center;
  z-index: 15;
  opacity: 0;
  transition: all 1s ease-in-out;
}

.ball {
  position: absolute;
  top: 47%;
  left: -200px; /* parte fuori dallo schermo a sinistra */
  width: 160px;
  transform: translateY(-50%);
  z-index: 10;
}


.logo-top {
  position: absolute;
  top: 20px;
  left: 30px;
  color: white;
  font-family: 'Oswald', sans-serif;
  font-style: italic;
  font-size: 1.5rem;
  z-index: 100;
  opacity: 0;
}


#main-header {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: transparent;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}
#main-header.scrolled {
  position: fixed;
  background: rgba(255, 255, 255, 0.9);
  background-color: transparent; /* o un grigio chiaro */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}


.logo-img {
  height: 120px; /*Grandezza logo-ld*/
  opacity: 0;
  transition: height 0.4s ease, opacity 0.6s ease; /* Aggiunta la transizione fluida per l'altezza */
}
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.main-nav ul li a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative; /* 👈 Fondamentale per far funzionare la linea animata */
}

/* La linea colorata invisibile sotto il link */
.main-nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px; /* Distanza dal testo */
  left: 0;
  background-color: #10dad0; /* Il colore ciano */
  transition: width 0.3s ease;
}

/* Quando passi il mouse, la linea cresce al 100% */
.main-nav ul li a:hover::after {
  width: 100%;
}

/* Navbar scroll effect */
header.scrolled {
  background: rgba(255, 255, 255, 0.8); /* bianco con trasparenza */
  backdrop-filter: blur(6px); /* effetto vetro satinato */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Quando l'header diventa "scrolled", il logo si restringe a 70px */
header.scrolled .logo-img {
  height: 70px; 
}

header.scrolled .main-nav ul li a {
  color: black;
}

header.scrolled .hamburger span {
  background: black;
}
/*---------------------*/
/* VIDEO CLIP INIZIALE */
/*---------------------*/

.video-container {
  position: relative;
  width: 100%;
  height: clamp(150px, 60vh, 700px);/* oppure 70vh, regolabile */
  overflow: hidden;
  z-index: 5;
}



.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-top: -60px;
  object-position: center;
  display: block;
  filter: grayscale(100%);
}
.video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}

/*--------------*/
/* FRAME FINALE */
/*--------------*/

.video-placeholder-section {
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
  padding-bottom: 0;
  position: relative;
  z-index: 0;
}

.video-placeholder-section img {
  width: 100%;
  height: clamp(150px, 60vh, 700px);/* oppure 70vh, regolabile */
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  opacity: 1 !important; /* forza la visibilità */
}


#intro-video {
  transition: opacity 1s ease;
  opacity: 0;
}

#intro-video.show {
  opacity: 1;
}

/* Nasconde completamente */
.hidden {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
  position: absolute; /* evita che occupi spazio anche da hidden */
}

/* Appare gradualmente */
.show {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
  position: relative;
  transition: opacity 1s ease;
}


/*------------------*/
/*PRE-HOMEPAGE VIDEO*/
/*------------------*/

.intro-video-start {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.intro-video-start video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 1s ease;
}

.intro-video-start.fade-out video {
  opacity: 0;
}
.homepage {
  min-height: 100vh;
  position: relative;
  top: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

 /*----------*/
  /*HAMBRUGER*/
  /*----------*/
  .hamburger {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 6px;
    width: 30px;
    height: 21px;
    cursor: pointer;
    display: none !important;
    z-index: 1100;
  }

  /* Quando siamo nella homepage su schermi piccoli */
.homepage .hamburger {
  display: none;
}
.hide-before-homepage {
  display: none !important;
}


  
  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: red;
    border-radius: 2px;
    transform-origin: center;
    transition: transform 0.4s ease, opacity 0.3s ease, width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  }
  
  /* Animazione verso "X" */
  .hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  /* Effetto hover: linee si "muovono" leggermente */

/* Linea centrale più corta */
.hamburger span:nth-child(2) {
  width: 16px;
  align-self: flex-end;
}
.hamburger:not(.open):hover span:nth-child(1) {
  transform: translateY(2px);
}
.hamburger:not(.open):hover span:nth-child(3) {
  transform: translateY(-2px);
}


/* Hover: tutte diventano uguali */
.hamburger:not(.open):hover span {
  width: 30px;
}
  

/* Menu a tutto schermo */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75); /* nero semitrasparente */
  backdrop-filter: blur(8px);      /* effetto sfocatura */
  -webkit-backdrop-filter: blur(8px); /* Safari support */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 1000;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.mobile-nav ul li {
  margin: 20px 0;
}

.mobile-nav ul li a {
  font-size: 2rem;
  color: white;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}
/* La linea colorata invisibile sotto il link mobile */
.mobile-nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px; /* Leggermente più spessa perché il testo è grande */
  bottom: -5px;
  left: 0;
  background-color: #10dad0; /* Il tuo colore ciano */
  transition: width 0.3s ease;
}

/* Quando passi il mouse o "tappi" col dito, la linea cresce al 100% */
.mobile-nav ul li a:hover::after,
.mobile-nav ul li a:active::after {
  width: 100%;
}
/* Bottone chiudi (X) */
.close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1101;
}

.close-btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: none;
  transform-origin: center;
  transition: none;
  border-radius: 2px;
}


/* Barre della X */
.close-btn .bar1 {
  transform: translate(-50%, -50%);
}

.close-btn .bar2 {
  transform: translate(-50%, -50%);
}

.close-btn:hover span {
  transform: none !important;
}
#close-nav {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2000; /* 👈 molto più alto dello sfondo */
}

/*------------*/
/*CLUB-SECTION*/
/*------------*/
.clubs-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 20px 69px;
}

.club img {
  width: clamp(50px, 10vh, 140px);
  height: auto;
  transition: transform 0.3s ease;
  filter: grayscale(0%);
}

.club img:hover {
  transform: scale(1.2);
  filter: grayscale(50%);
}

.clubs-section {
  text-align: center;
  padding: 40px 20px;
}

.club {
  opacity: 0;
  transform: translateY(20px);
}

/* SUB-LOGOS */

.club-expands {
  position: relative;
}

.sub-logos {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.sub-logos img {
  width: 40px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  filter: grayscale(100%);
}

.club-expands:hover .sub-logos {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -130%);

}

.club-expands:hover .sub-logos img {
  transform: scale(1.3);
  filter: grayscale(0%);
}




/*------------------*/
/* ABOUT ME SECTION */
/*------------------*/

.about-me-section {
  background-color: #f9f9f9;
  padding: 0px 10px;
}

#about-me,
#teams,
#contatti {
  scroll-margin-top: 150px; /* adatta in base all'altezza del tuo header */
}
#highlights {
  scroll-margin-top: 80px; /* adatta in base all'altezza del tuo header */
}


.about-me-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-me-image img {
  width: clamp(500px, 30vh, 1200px);
  border-radius: 10px;
  
}

.about-me-text {
  max-width: 600px;
}

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

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

.cv-button {
  display: inline-block;
  background-color: #10dad0;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cv-button:hover {
  background-color: #0cc1b8;
}


/*------------*/
/* HIGHLIGHTS */
/*------------*/

.video-slider-section {
  padding: 20px 20px;
  background: #fff;
  text-align: center;
}

.video-slider-section h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.video-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;

}

.video-card {
  max-width: 400px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}

.video-card:hover {
  transform: scale(1.05);
}

.video-card video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
.slider-track {
  display: flex;
  gap: 20px;
}

.highlights-swiper .swiper-slide {
  width: 360px;
  height: 203px; /* 16:9 esatto */
  flex-shrink: 0;
  border-radius: 15px;
  overflow: hidden;
}

.highlights-swiper .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
  display: block;
}

.highlights-swiper .swiper-slide:hover video {
  transform: scale(1.05);
}




@media (max-width: 768px) {
  .video-card {
    min-width: 90%;
  }
  .about-me-container {
    flex-direction: column;
    text-align: center;
  }

  .about-me-image img {
    width: 80%;
  }
}

/*------------*/
/* CONTATTAMI */
/*------------*/

.contact-section {
  padding: 40px 20px;
  max-width: 700px;
  margin: auto;
  text-align: center;
  background-color: #fff;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 1rem;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  text-align: left;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
}

.contact-form button {
  align-self: flex-end;
}

.logo-img.always-visible {
  opacity: 1 !important;
}

body.contact-page .hamburger {
  display: flex !important;
}

/* Banner */
.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  font-weight: bold;
  display: none;
  transition: all 0.4s ease;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border-left: 5px solid #28a745;
  display: block;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border-left: 5px solid #dc3545;
  display: block;
}


/*--------*/
/* FOOTER */
/*--------*/

.site-footer {
  background-color: #0a0a0a; /* Un nero più profondo ed elegante */
  color: #fff;
  padding: 60px 20px 20px; /* Più respiro sopra */
  text-align: center;
  position: relative;
}

.footer-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px; /* Distanza uniforme tra i blocchi */
}

/* BRAND / TESTO */
.footer-logo-text {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin: 0 0 5px 0;
  font-family: 'Oswald', sans-serif;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #888;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Eventuale immagine logo nel footer (se la attivi nell'html) */
.footer-logo-img {
  max-width: 120px;
  margin-bottom: 10px;
}

/* NAVIGAZIONE FOOTER */
.footer-nav {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #10dad0; /* Il tuo color ciano */
}

/* ICONE SOCIAL */
.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #1a1a1a; /* Cerchio scuro */
  color: #fff;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-socials a:hover {
  background-color: #10dad0;
  color: #111;
  transform: translateY(-5px); /* Effetto "salto" al passaggio del mouse */
}

/* AREA INFERIORE (Copyright e Credits) */
.footer-bottom {
  max-width: 1000px;
  margin: 50px auto 0;
  padding-top: 20px;
  border-top: 1px solid #222; /* Linea di separazione elegante */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.copyright {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.credits a {
  color: #888;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.credits a:hover {
  color: #10dad0;
}

/* LUCCHETTO ADMIN */
.admin-link {
  color: #333;
  font-size: 14px;
  transition: color 0.3s ease;
}

.admin-link:hover {
  color: #10dad0;
}

/* TASTO SCROLL TO TOP */
.scroll-to-top {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background-color: #10dad0; /* Tasto colorato */
  border: none;
  color: #111;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

.scroll-to-top:hover {
  background-color: #0cc1b8;
  transform: translateY(-3px);
}

.scroll-to-top.hidden {
  display: none;
}


@media (min-width: 961px) {
  .main-nav {
    display: block;
  }


  .main-nav ul {
    display: flex;
    gap: 20px;
    margin-right: 80px;
  }

  .main-nav ul li a {
    color: white;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  header.scrolled .main-nav ul li a {
    color: #111;
  }
}

@media (max-width: 960px) {
  .logo-text {
    font-size: 2rem;
    text-align: center;
  }

  .ball {
    width: 100px;
  }

  .logo-top {
    font-size: 1.2rem;
    top: 15px;
    left: 20px;
  }
  /*----------*/
  /*HAMBRUGER*/
  /*----------*/
  .main-nav {
    display: none;
  }

  .hamburger {
    display: none !important;
  }

  body.homepage-active .hamburger {
    display: flex !important;
  }

}

  /*---------*/
  /* COOKIES */
  /*---------*/
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 20px;
  border-radius: 12px;
  font-family: 'Gill Sans', sans-serif;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  flex: 1 1 auto;
}

.cookie-content a {
  color: #66b2ff;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-buttons button {
  background: #66b2ff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  color: black;
  cursor: pointer;
  transition: background 0.3s ease;
}

#accept-cookies {
  background-color: #79b9ff;
  color: black;
  transition: background-color 0.3s ease;
}

#accept-cookies:hover {
  background-color: #62a7f3;
}

#reject-cookies {
  background-color: #eeeeee;
  color: #555;
  transition: background-color 0.3s ease;
}

#reject-cookies:hover {
  background-color: #dddddd;
}

.cookie-banner.hidden {
  display: none;
}
/*------------------*/
/* LANGUAGE SWITCH  */
/*------------------*/

.language-switcher {
  display: flex;
  gap: 3px; /* più stretto tra le bandiere */
  align-items: center;
  margin: 30px 70px;
}

.main-nav ul {
  display: flex;
  gap: 20px; /* distanza tra Highlights e Contact */
  align-items: center;
  font-size: 1.5rem;
}

.menu-wrapper {
  position: absolute;
  top: 10px;
  right: 20px;
  display: flex;
  flex-direction: row; /* 👈 importantissimo! */
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}


.language-switcher a,
.main-nav ul li a {
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.language-switcher a.active-lang,
.main-nav ul li a.active-lang {
  color: grey;
  text-decoration: underline;
  pointer-events: none;
  opacity: 0.6;
}

/* Hover solo su non-attivi */
.language-switcher a:hover:not(.active-lang),
.main-nav ul li a:hover:not(.active-lang) {
  color: #10dad0;
}

/* Stile del testo del menu Desktop e Mobile */
.main-nav ul li a,
.mobile-nav ul li a {
  font-family: 'Montserrat', sans-serif; /* <-- SE PREFERISCI OSWALD, SCRIVI 'Oswald' AL POSTO DI 'Montserrat' */
  text-transform: uppercase; /* Trasforma tutto in MAIUSCOLO */
  letter-spacing: 1px;       /* Distanzia leggermente le lettere */
  font-weight: 600;          /* Rende il testo un po' più massiccio */
}

/* Mobile (<960px) */
@media (max-width: 960px) {
  .language-switcher {
    display: flex;
  }

  .main-nav .language-desktop {
    display: none; /* Nascondi bandiere nella navbar */
  }
}

/* Desktop (>960px) */
@media (min-width: 961px) {
  .language-switcher {
    display: none; /* Nascondi il div vicino all'hamburger */
  }

  .main-nav .language-desktop {
    display: inline-block; /* Mostra bandiere nella navbar */
  }

  .main-nav ul {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  body.contact-page .hamburger {
    display: none !important; 
  }
}
/* Nasconde definitivamente il vecchio tasto X del menu mobile */
#close-nav, .close-btn {
  display: none !important;
}

/* --- PARTE NUOVA - RIMOZIONE INTRO --- */
/* --- NUOVA HERO SECTION PREMIUM --- */
/* --- -------------------------- --- */
.hero-section {
  position: relative;
  width: 100%;
  height: clamp(300px, 70vh, 800px);
  overflow: hidden;
  margin-top: 0;
}

.hero-section img, 
.hero-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%); /* Mantiene il tuo stile in bianco e nero */
}

#hero-video {
  z-index: 2; /* Sta sopra l'immagine finché non svanisce */
}
/* --- ------------------------- --- */
/* --- JOURNEY SECTION (ZIG-ZAG) --- */
/* --- ------------------------- --- */
.journey-section {
  padding: 80px 20px;
  background-color: #fff;
}

.journey-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px; /* Distanza tra uno slot e l'altro */
}

.journey-row {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Magia CSS: Inverte l'ordine per le righe pari (Immagine a destra) */
.journey-row:nth-child(even) {
  flex-direction: row-reverse;
}

.journey-image {
  flex: 1; /* Prende metà spazio */
}

.journey-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.journey-image img:hover {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.journey-text {
  flex: 1; /* Prende l'altra metà dello spazio */
}

.journey-text h3 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-family: 'Oswald', sans-serif;
  color: #111;
  text-transform: uppercase;
}

.journey-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

/* Su mobile togliamo lo zig-zag: Immagine sopra, Testo sotto */
@media (max-width: 768px) {
  .journey-row, 
  .journey-row:nth-child(even) {
    flex-direction: column; 
    text-align: center;
    gap: 20px;
  }
  .journey-image img {
    height: 250px;
  }
}