:root {
  --bg: #020306;
  --text: #E5E7E6;
  --accent: #E8D7A0;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Roboto', sans-serif;
  margin: 0;
}

h1,
h2,
h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--accent);
}

section {
  padding-top: 15%;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

.container {
  margin: 0 auto;
  padding: 0 5%;
  margin: 0 5%;
  align-items: center;
}

.container h2 {
  margin-bottom: 0;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-align: center;
  padding: 15px 0;
  font-size: 48px;
}

.video-hero {
  position: relative;
  height: 60vh;
  /* tutta altezza schermo */
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  padding-top: 100px;
}

/* VIDEO */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

/* OVERLAY SCURO */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 14, 20, 0.6);
  /* tuo colore #0B0E14 */
  z-index: 1;
}

/* TESTO SOPRA */
.video-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #BDC3C7;
  text-align: center;
}

.video-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  color: var(--accent);
}

/* HERO VIDEO E OVERLAY (base) */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 14, 20, 0.6);
  z-index: 1;
}

/* TESTO SOPRA IL VIDEO */
.video-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #BDC3C7;
  text-align: center;
  padding: 0 20px;
  /* spazio su mobile */
}

.video-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  color: var(--accent);
}

/* MODAL VIDEO */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;

  z-index: 9999;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-content {
  width: 90%;
  max-width: 1200px;

  /* proporzione 16:9 */
  aspect-ratio: 16 / 9;

  position: relative;
}

.video-modal-content iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  margin-right: 15px;
  transition: 0.3s;
}

.btn:hover {
  background: var(--accent);
  color: var(--bg);
}

.showreel {
  position: relative;
  height: 100vh;
  /* 🔥 tutta altezza schermo */
  width: 100%;
  overflow: hidden;
}

.showreel-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.77vh;
  /* 16:9 ratio fix */
  height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  /* disabilita click */
}

.showreel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 14, 20, 0.6);
  /* colore sfondo tuo #0B0E14 */
}

.showreel-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--bg);
  text-align: center;
}

.showreel-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 60px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 20px;
}

.showreel-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 40px;
  /* spazio verticale e orizzontale */
  border: 2px solid var(--accent);
  color: var(--bg) !important;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 50px;

  /* sfondo semitrasparente */
  background: rgba(255, 179, 71, 0.2);

  /* rettangolo con semicerchi ai lati */
  border-radius: 50px;
  /* semicerchi verticali sui lati */

  /* centrato */
  text-align: center;

  transition: 0.3s ease;
}

/* effetto hover */
.showreel-btn:hover {
  background: var(--accent);
  color: #11151f;
  /* cambia colore testo all’hover per contrasto */
  border-color: var(--accent);
}

.background-wrapper {
  background: url("images/sfondo_Homepage_v2.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
  background-color: var(--bg);
}


/* BASE */
.light {
  font-weight: 400 !important;
}

.container h2 {
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-align: left;
  font-size: 100px;
}

.grid {
  display: grid;
  margin-top: 0;
  width: 100%;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Contenitore card wrapper */
.card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  /* spazio tra le card */
}

/* Card base */
.card {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding-top: 0;
  overflow: hidden;
  margin-top: 80px;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: auto;
  max-height: 800px;
  display: block;
  margin: 0;
  object-fit: contain;
}

/* Wrapper immagine */
.card-image {
  flex: 1;
  position: relative;
}

.card-text {
  top: 10%;
  flex: 1.2;
  color: var(--text);
}

.card-content {
  flex: 1;
}

.card-content h3 {
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 35px;
  text-align: left !important;
  margin: 0 0 15px 0;
  padding: 0;
}

.card-content p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
  font-size: 20px;
  text-align: justify;
}

/* Simbolo play */
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  color: var(--accent);
  /* colore arancione accento */
  opacity: 0.9;
  pointer-events: none;
  /* clic passa all’immagine/card */
  transition: transform 0.3s, opacity 0.3s;
}

/* Effetto hover */
.card:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 1;
}

.card.reverse {
  flex-direction: row-reverse;
  text-align: justify;
}

.card h3 {
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-size: 35px;
  font-weight: 800;
  text-align: left;
  padding: 15px 0;
}

.card.reverse h3 {
  text-align: right !important;
}

.card-content h3 .card-subtitle {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  color: var(--text);
  margin: 0;
  /* niente spazio extra */
}

.card-content h3 .card-subtitle2 {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  color: var(--text);
  margin: 10px 0;
  /* niente spazio extra */
}

.section-home {
  padding-top: 10%;
}

/* FINE BASE */

/* GRID DELLA SEZIONE DOCUMENTARI */
.documentari-section {
  padding-top: 5%;
}

.documentari-container {
  margin: 0 auto;
  padding: 0 5%;
  margin: 0 5%;
  align-items: center;
}

.documentari-section .grid {
  display: grid;
  margin-top: 0;
  width: 90%;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

/* Contenitore card wrapper */
.documentari-section .card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Card base */
.documentari-section .card {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 80px;
}

.documentari-section .documentari-container h2 {
  text-align: justify;
  color: var(--accent);
  font-weight: 800;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 100px;
  margin-bottom: 0;
}


.documentari-section .card:hover {
  transform: translateY(-5px);
}

.documentari-section .card img {
  width: 100%;
  height: auto;
  max-height: 800px;
  display: block;
  margin: 0;
  object-fit: contain;
}

/* Wrapper immagine */
.documentari-section .card-image {
  flex: 1;
  position: relative;
}

.documentari-section .card-text {
  flex: 1.2;
  color: #BDC3C7;
}

.documentari-section .card-content {
  flex: 1;
}

/* Sottotitolo attaccato sotto il titolo */
.documentari-section .card-content h3 .card-subtitle {
  display: block;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  line-height: 1.2;
  /* compatto */
  margin: 0;
  /* niente spazio extra */
}

/* Testo contenuto */
.documentari-section .card-content p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
  font-size: 20px;
  text-align: justify;
}

.documentari-section .card.reverse .card-content p {
  text-align: justify;
}

/* Simbolo play */
.documentari-section .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  color: var(--accent);
  opacity: 0.9;
  pointer-events: none;
  transition: transform 0.3s, opacity 0.3s;
}

/* Effetto hover */
.documentari-section .card:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 1;
}

.documentari-section .card.reverse {
  flex-direction: row-reverse;
}

.documentari-section .card.reverse h3 {
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-size: 35px;
  font-weight: 800;
  text-align: right !important;
  padding: 15px 0;
}

.documentari-section .card.reverse .card-image {
  position: relative;
  margin-right: auto;
}

.documentari-section .card h3 {
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 35px;
  text-align: center;
  padding: 15px 0;
}

/*Fine documentario*/

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 900px;
}

.lightbox iframe {
  width: 100%;
  height: 500px;
  border-radius: 12px;
}

.lightbox .close {
  position: absolute;
  top: -20px;
  right: -20px;
  color: var(--accent);
  font-size: 32px;
  cursor: pointer;
}




footer {
  margin-top: 5%;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 30px;
  font-size: 0.9rem;
  background: var(--accent);
  color: var(--bg);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}



.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--bg);
  backdrop-filter: blur(6px);
  padding: 10px 20px;
  /* 🔥 niente percentuali */
  z-index: 1000;
  box-sizing: border-box;
}

.nav-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--accent);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo img {
  height: 40px;
  max-width: 150px;
  /* 🔥 evita logo gigante */
}

.nav-links {
  display: flex;
  gap: 25px;
  margin-left: auto;
  flex-wrap: nowrap;
}

.nav-links a {
  font-size: 15px;
  /* leggermente più piccolo */
  font-weight: 700;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  color: var(--accent);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--accent);
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  font-size: 30px;
  margin-right: 20px;
  color: var(--bg);
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: var(--bg);
  transform: scale(1.2);
}


.about {
  max-width: 100%;
  padding-top: 15%;
}

.highlight1{
  text-align: left;
}

.highlight2{
  text-align: right;
}
.about-wrapper {
  display: flex;
  align-items: center;
  /* centro verticale rispetto all’immagine */
  justify-content: center;
  /* centro orizzontale tra immagine e testo */
  gap: 80px;
}

.about-image {
  flex: 1.2;
}

.about-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 4px solid var(--accent);
}

.about-text {
  flex: 1.5;
  /* spazio maggiore per il testo */
  display: flex;
  /* trasformiamo il testo in flex container */
  flex-direction: column;
  /* testo verticale normale */
  justify-content: center;
  /* centra verticalmente dentro la colonna */
  text-align: left;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-text p {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--text);
}

.highlight1 {
  display: block;
  line-height: 1.1;
  color: var(--accent);
  font-size: 50px;
  font-weight: 900;
  text-align: left;
}

.highlight2 {
  display: block;
  line-height: 1.1;
  color: var(--text);
  font-size: 35px;
  font-weight: 700;
  text-align: right;
  margin-top: 10px;
}

.about-btn {
  display: inline-block;
  width: 30%;
  min-width: 120px;
  padding: 12px 20px;
  /* altezza e padding orizzontale */
  background-color: var(--accent);
  /* colore sfondo */
  color: #11151f;
  /* colore testo */
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  /* rimuove sottolineatura */
  border: none;
  border-radius: 25px;
  /* semicerchi ai lati */
  transition: 0.3s;
  text-align: center;
}

/* Hover: cambia leggermente colore o opacità */
.about-btn:hover {
  background-color: #FFC966;
  color: #11151f;
  cursor: pointer;
  transform: translateY(-2px);
}

.showreel-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 18px 60px;
  /* aumenta altezza e larghezza */
  border: 2px solid var(--accent);
  color: var(--text);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 25px;
  /* testo più grande */
  background: rgba(232, 215, 160, 0.4);
  border-radius: 50px;
  /* semicerchi ai lati */
  text-align: center;
  transition: 0.3s ease;
}

/* effetto hover */
.showreel-btn:hover {
  background: rgba(136, 108, 8, 0.5);
  color: var(--text);
  border-color: #F1C40F;
}

.eventi-section {
  padding-top: 5%;
}

.eventi-section .grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(400px, 1fr));
  justify-content: center;
}

.eventi-section .card {
  background: transparent;
  overflow: hidden;
  transition: 0.3s ease;
  margin-top: 0;
}

.eventi-p {
  font-family: 'Montserrat', sans-serif;
  font-size: 35px;
  text-align: justify;
  font-weight: 600;
}

/* Immagine */
.eventi-section .card-image {
  position: relative;
}

.eventi-section .card-image img {
  width: 100%;
  vertical-align: top;
  height: auto;
  display: block;
  margin: 0;
}

/* Play icon */
.eventi-section .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  color: var(--accent);
  pointer-events: none;
  transition: 0.3s;
}

.eventi-section .card:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.2);
}



/* SEZIONE YOUTUBE */
.youtube-section {
  padding-top: 50px;
}

.hero-content-youtube {
  position: relative;
  z-index: 2;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 0;

  color: var(--bg);
  padding: 10% 20px 0 20px;
  box-sizing: border-box;
}

.hero-content-youtube h1 {
  font-size: clamp(40px, 6vw, 60px);
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
  text-align: justify;
  padding: 0 50px;
}

.youtube-page {
  padding: 80px 10%;
  background: var(--bg);
  color: var(--text);
}

.youtube-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* LATO SINISTRO: video */
.youtube-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.youtube-left video {
  width: 100%;
  border-radius: 12px;
}

/* LATO DESTRO: testo */
.youtube-right {
  flex: 1;
}

.youtube-right h3 {
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 35px;
  font-size: clamp(28px, 4vw, 40px);
}

.youtube-right p {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 15px;
}


/* SEZIONE MOTION GRAPHIC */
.section-motion {
  padding-top: 10%;
}

.motion_graphic {
  padding: 80px 10%;
  background: var(--bg);
  color: #BDC3C7;
}

.motion-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* VIDEO SINISTRO */
.motion-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.motion-left video {
  width: 100%;
  border-radius: 12px;
}

/* TESTO DESTRO */
.motion-right {
  flex: 1;
}

.motion-right h2 {
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 20px;
  font-size: clamp(28px, 4vw, 40px);
}

.motion-right p {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  margin-bottom: 15px;
}


.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  margin-top: 40px;
  padding-top: 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* riempie lo schermo senza deformarsi */
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 14, 20, 0.2);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #BDC3C7;
}


/* ABOUT FOOTER */
.footer-about {
  margin-top: 0;
}

.fondo-pagina {
  width: 100%;
  background-color: var(--bg);
  color: var(--text);
  padding: 40px 0;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  align-items: center;
}

.titolo {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 800;
}

.contenuto {
  display: flex;
  /* larghezza massima della riga dei paragrafi */
  margin: 0 25%;
  margin-bottom: 20px;
  /* centra il contenitore */
  font-family: 'Montserrat', sans-serif;
}

.contenuto p {
  margin: auto;
}

.sinistra {
  text-align: left;
  font-size: 25px;
}

.destra {
  text-align: right;
}

.btn-cv {
  display: inline-block;
  padding: 8px 16px;
  margin-top: 10px;
  background-color: var(--accent);
  color: var(--bg);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.btn-cv:hover {
  background-color: #e65c00;
}


/*CAROSELLO*/
.carousel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 100px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
}

.slide-content {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 60px;
}

.slide-image {
  flex: 1;
}

.slide-image img {
  width: 100%;
  border-radius: 8px;
}

.slide-text {
  flex: 1;
}

.slide-text h2 {
  margin-bottom: 15px;
  font-size: 28px;
}

.slide-text p {
  font-family: 'Roboto', sans-serif;
  font-size: 25px;
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: justify;
}

.btn {
  display: inline-block;
  padding: 10px 35px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

/* Frecce */
.arrow {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  width: 40px;
  cursor: pointer;
  z-index: 10;
  display: none;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}


.section-matrimoni .card {
  margin-top: 0;
}



@media (max-width: 768px) {

  .arrow{
    display: none;
  }

  .prev {
    left: 0;
  }

  .next {
    right: 0;
  }

  section {
    padding-top: 60px;
  }

  .container {
    margin: 0;
    padding: 0 20px;
  }

  /* NAVBAR */
  .nav-links {
    display: none;
    /* nasconde i link inizialmente */
    flex-direction: column;
    gap: 10px;
    background: var(--bg);
    position: fixed;
    top: 60px;
    /* sotto la navbar */
    right: 0;
    width: 200px;
    padding: 20px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links.active {
    display: flex;
  }

  /* HERO VIDEO */
  .video-hero {
    height: 50vh;
    padding-top: 60px;
  }

  .video-content h2 {
    font-size: 32px;
  }

  /* SHOWREEL */
  .showreel {
    height: 70vh;
  }

  .showreel-content h2 {
    font-size: 36px;
  }

  .showreel-btn {
    font-size: 18px;
    padding: 14px 30px;
  }

  .documentari-section{
    margin-top: 5%;
  }
  .background-wrapper{
    padding-bottom: 5%;
  }
  /* TITOLI GENERALI */
  .container h2,
  .documentari-section .documentari-container h2 {
    font-size: 32px;
    text-align: left;
  }
.container {
  margin: 0 auto;
  padding: 0 5%;
  margin: 0 5%;
  align-items: center;
}
.section-motion{
  margin-top: 20px;
}
.section-motion .container{
  padding-top: 20px;
}
  /* CARD */
  .card,
  .documentari-section .card {
    flex-direction: column !important;
    gap: 20px;
    margin-top: 40px;
  }

  .card.reverse {
    flex-direction: column !important;
  }

  .card-content h3,
  .documentari-section .card h3,
  .documentari-section .card.reverse h3 {
    font-size: 22px;
    text-align: left !important;
    padding-top: 0;
  }

  .card-content p,
  .documentari-section .card-content p {
    font-size: 15px;
    text-align: justify;
  }

  .eventi-p {
    font-size: 16px;
    text-align: justify;
  }

  .card-subtitle,
  .card-subtitle2 {
    font-size: 15px !important;
    text-align: left;
  }

  .card.reverse h3 {
    text-align: left !important;
  }

  .play-icon,
  .documentari-section .play-icon {
    font-size: 60px;
  }

  .youtube-section {
    height: auto;
    margin-top: 10%;
    padding-top: 40px;
  }
  .youtube-section .container{
    padding-top: 30px;
  }
  .footer {
    padding-top: 0;
    font-size: 10px;
  }

  .footer-about {

    padding-top: 0;
    font-size: 10px;
  }
  .precedente{
    width: 100%;
    height: 100%;
     position: relative;
  }
  .bottom-box {
  position: absolute;
  bottom: 0;   
}
  /* GRID */
  .grid,
  .documentari-section .grid,
  .eventi-section .grid {
    grid-template-columns: 1fr !important;
    width: 100%;
  }

  /* ABOUT */
  .about-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .about-text {
    text-align: center;
  }

  .highlight1 {
    font-size: 32px;
    text-align: left;
  }

  .highlight2 {
    font-size: 22px;
    text-align: right;
  }

  .about-btn {
    width: 60%;
    margin: 0 auto;
  }

  /* YOUTUBE */
  .carousel{
    margin-top: 70px;
  }
  .youtube-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .hero {
    margin-top: 60px;
    height: auto;
    overflow: visible;
  }
  .hero-overlay{
    width: 100%;
    height:158px;
  }
  .hero img{
    width: 100%;
    height: auto;
  }
  .hero-content-youtube{
    position: relative;
    margin: 0;
    margin-top:10%;
    padding-top: 40px;
    height: 100%;
  }
  .hero-content-youtube h1 {
    width: 100%;
    font-size: 14px;
    padding: 0;
    text-align: left;
  }

  /* MOTION */
  .motion-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  /* CAROSELLO */
  .slide-content {
    flex-direction: column;
    padding: 0 20px;
  }

  .slide-text p {
    font-size: 16px;
  }

  /* FOOTER ABOUT */
  .contenuto {
    flex-direction: column;
    margin: 0;
    gap: 15px;
  }

  .sinistra,
  .destra {
    text-align: center;
    font-size: 18px;
  }

  /* LIGHTBOX */
  .lightbox iframe {
    height: 250px;
  }

}