@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
   --bs-font-family: "Syne", sans-serif;
}


.font-family{
  font-family: var(--bs-font-family) !important;
  font-weight: 300;
  font-style: normal;
}


/* Contenedor principal: le da contexto de posicionamiento a los elementos internos */
.hero-video-container {
  position: relative;
  overflow: hidden;
  /* Oculta cualquier exceso del video */
}

/* El video debe cubrir todo el contenedor */
.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  /* Manda el video al fondo */
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* El overlay (la capa oscura que tenías en el background linear-gradient) */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: -1;
  /* Detrás del texto, delante del video (o al mismo nivel) */
}

/* Asegura que el texto esté por encima de todo */
.content-container {
  position: relative;
  z-index: 1;
  width: 100%;
}
