/* File: public/css/main.css */
/* Last modified: 2025-06-26 */

body {
  font-family: 'Poppins', sans-serif;
}
.navbar {
  transition: background-color 0.3s ease-in-out;
z-index: 100;	
	background:#001B39 !important;
}

.navbar .nav-link {
  color: #ffffff !important;
  transition: background-color 0.3s, color 0.3s;
}

.navbar .nav-link:hover {
  background-color: #ffffff33;
  color: #FFD700 !important;
  border-radius: 0.25rem;
}

.navbar .nav-link.active {
  background-color: #FFD700 !important;
  color: #001B39 !important;
  font-weight: bold;
  border-radius: 0.25rem;
}	
.navbar-nav .nav-link.active {
  font-weight: bold;
  border-bottom: 2px solid #d4af37;
}

.nav-link:hover {
  color: #d4af37 !important;
}
.nav-link:focus {
  outline: 2px solid #d4af37;
  outline-offset: 2px;
}

footer {
    background: linear-gradient(to right, #001B39, #003366);
    color: #fff;
    padding: 1rem 0;
    position: relative;
    bottom: 0;
    width: 100%;
  }
  
   footer {
    background: linear-gradient(to right, #001B39, #003366);
    color: #fff;
    padding: 1rem 0;
    position: relative;
    bottom: 0;
    width: 100%;
  }
  
  footer a {
    color: #fff;
    margin: 0 0.5rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  footer a:hover {
    color: #ffc107;
    transform: translateY(-3px) scale(1.1);
  }
  
  /* Estilo especial para X (Twitter) */
  .twitter-x:hover {
    color: #000 !important;
    background-color: #fff;
    border-radius: 4px;
    animation: xSpin 0.4s ease;
  }
  
  @keyframes xSpin {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-10deg) scale(1.2); }
    50% { transform: rotate(10deg) scale(1.3); }
    100% { transform: rotate(0deg) scale(1.1); }
  }.full-video-wrap {
    width: 100%;
    overflow: hidden; /* Esto ocultará las partes que recortemos */
    position: relative; /* Necesario para el posicionamiento del video */
    height: calc(100vh - 80px); /* 60px arriba + 60px abajo = 120px */
    margin: 0px 0; /* Añade 60px de margen arriba y abajo */
  }
  
  #bienvenidaVideo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Esto asegurará que el video cubra todo el espacio manteniendo su relación de aspecto */
    position: absolute;
    top: 0;
    left: 0;
  }