/* styles.css actualizado */

/* Reset */
* {
  margin: 0;
  padding: 0;
}

/* Tipografías */
body {
  font-family: 'Helvetica Neue', sans-serif;
  color: #181D27;
}

h1, h2, h3, h4, h5 {
  font-family: 'Bebas Neue', cursive;
}

p {
  font-size: 24px;
}

h1 {
  font-size: 144px;
}

h2 {
  font-size: 120px;
  color: #181D27;
}

/* Fondos */
.bg-kraft {
  background-image: url('img/papelKraft.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-green {
  background-color: #006838;
  color: white;
}

/* Botones */
.btn-outline-dark {
  border-color: #181D27;
  color: #181D27;
}

.btn-outline-dark:hover {
  background-color: #181D27;
  color: white;
}

/* Footer */
footer {
  background-color: #181D27;
  color: white;
}

/* Hero con video */
.video-bg {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4rem 0;
}

.video-bg video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

.video-blur-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  z-index: 0;
}

.video-content {
  position: relative;
  z-index: 2;
}

/* Sección Balcarce */
.bg-image {
  background-image: url('img/Balcarce-bg-image.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
}

/* Ajuste extra para header y sección kettle */
.xtra-margin {
  margin-top: 350px;
}

/* TICKER INFINITO */

/* Contenedor del ticker */
.ticker-container {
  overflow: hidden;
  width: 100vw;
  height: auto; /* Ajusta según la altura de tus imágenes */
  position: relative;
}

/* Pista de imágenes */
.ticker-track {
  display: flex;
}

/* Imágenes dentro del ticker */
.ticker-track img {
  flex-shrink: 0;
  height: 100%;
}

/* Media queries */
@media (max-width: 768px) {
  .video-bg {
    padding: 2rem 1rem;
    height: 100vh;
  }

  .video-content h1,
  .video-content h2 {
    font-size: 2rem;
    text-align: left;
  }

  .video-content img {
    max-width: 100%;
    height: auto;
  }

  .video-content p {
    font-size: 1rem;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 48px;
  }

  p {
    font-size: 16px;
  }

  .bg-image {
    height: auto;
  }

  .xtra-margin {
    margin: 0;
  }

  .ticker-container {
    height: 250px;
  }
}