/*
 * Styles for the Video Banner Shortcode - Responsive 16:9 with Transparent Button
 */

.video-banner-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 1080/1920 = 0.5625 o 56.25% para mantener proporción 16:9 */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
}

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

.video-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.video-banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding-bottom: 40px; /* Espacio para el botón en la parte inferior */
}

.video-banner-button {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent; /* Fondo transparente */
    color: #fff; /* Texto blanco para mejor contraste */
    border: 2px solid #fff; /* Borde blanco */
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: 20px; /* Espacio desde el contenido principal */
}

.video-banner-button:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Fondo semitransparente al hover */
    color: #fff;
}

/* Asegura que el botón esté en la parte inferior */
.video-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 40px 0; /* Espaciado vertical */
}
