﻿
.hero {
    min-height: calc(100vh - 56px - 80px); /* Ajusta según altura navbar y footer */
}

/* Imagen de fondo con zoom */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/img/casaClub.jpg') no-repeat center center;
    background-size: cover;
    z-index: 0;
    animation: zoomHero 20s ease-in-out infinite alternate;
}

/* Zoom lento de la imagen */
@keyframes zoomHero {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.10);
    }
}

/* Overlay opcional para resaltar el texto */
.hero-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.4);
}
.typewriter {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid white;
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    /* Animación de escritura + ocultar cursor al final */
    animation: typing 3s steps(25, end) forwards;
}

@keyframes typing {
    0% {
        width: 0;
        border-right: 3px solid white;
    }

    90% {
        width: 100%;
        border-right: 3px solid white;
    }

    100% {
        width: 100%;
        border-right: none; /* Oculta cursor al final */
    }
}


.modal-xxl {
    max-width: 95% !important;
}
