/* Estilos iniciales */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: black; /* Fondo negro inicial */
    overflow: hidden;
}

/* Contenedor para las tomas iniciales (destello) */
.flash-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Asegura que esté por encima de todo */
}

.flash-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta la imagen al tamaño del contenedor */
}

/* Contenedor de bienvenida */
.welcome-container {
    display: none; /* Ocultar inicialmente */
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998; /* Debajo del contenedor de destello */
}

/* Texto "Shot by VDK" */
.welcome-text {
    font-family: "skolar-sans-latin", sans-serif;
    font-size: 6vw;
    font-weight: 900;
    color: white; /* Color inicial: blanco */
    text-transform: uppercase;
    letter-spacing: 0.1ch;
}

/* Estilos para cada letra */
.welcome-text span {
    display: inline-block;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

/* Ocultar el header inicialmente */
.header.initial-hidden {
    visibility: hidden;
}