/* ------------------------------
   Fuente Abbolition
--------------------------------*/
@font-face {
  font-family: 'Abbolition';
  src: url('fonts/Abbolition-Regular.woff2') format('woff2'),
       url('fonts/Abbolition-Regular.woff') format('woff'),
       url('fonts/Abbolition-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Abbolition', sans-serif;
  color: #fff;
  overflow: hidden;
}

/* ------------------------------
   Video de fondo
--------------------------------*/
.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  object-fit: cover;
  z-index: -2;
}

/* ------------------------------
   Overlay oscuro
--------------------------------*/
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: -1;
}

/* ------------------------------
   Header (logo + botones)
--------------------------------*/
header {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 20px; /* espacio entre logo y botones */
}

.logo {
  height: 80px;
}

.nav-links {
  display: flex;
  gap: 15px;
}

.nav-links a {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  padding: 10px 20px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links a:hover {
  background: #fff;
  color: #000;
}

/* ------------------------------
   Footer flotante sobre el video
--------------------------------*/
.floating-footer {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  font-size: 1.2em;
  color: rgba(255,255,255,0.8);
}

/* ------------------------------
   Animaciones
--------------------------------*/
header, .floating-footer {
  animation: fadeIn 1.5s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ------------------------------
   Responsividad para móviles
--------------------------------*/
@media (max-width: 480px) {
  .logo {
    height: 60px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  header {
    top: 15px;
  }

  .floating-footer {
    font-size: 1em;
    bottom: 20px;
  }
}
