/* --- ESTILOS GLOBALES --- */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; 
    font-family: 'Montserrat', sans-serif;
    /* Color base azul oscuro */
    background-color: #031B33; 
}

body {
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh; 
    position: fixed; 
}

/* --- FONDO E IMAGEN PROVISIONAL --- */
.bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen llene la pantalla sin deformarse */
    z-index: 1;
    /* Desaturamos la foto original para que no compita con el azul */
    filter: grayscale(80%); 
}

/* Capa azul superpuesta (Gradiente) */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente de azul marino a azul profundo con transparencia */
    background: linear-gradient(135deg, rgba(3, 27, 51, 0.85) 0%, rgba(0, 51, 102, 0.7) 100%);
    z-index: 2;
}

main {
    text-align: center;
    z-index: 10;
    position: relative;
    padding: 0 20px;
    animation: fadeIn 1.5s ease-out forwards;
}

/* --- LOGO TEMPORAL (TIPOGRÁFICO) --- */
.logo-temporal h1 {
    font-size: 5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5rem;
    color: #FFFFFF;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
}

.logo-temporal h2 {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.2rem;
    margin-top: 10px;
    color: #99C2FF; /* Azul claro para contraste */
}

/* --- TEXTO PRÓXIMAMENTE --- */
.coming-soon {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.6rem;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2); /* Línea divisoria elegante */
}

/* --- ANIMACIONES --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVIDAD --- */

/* Tabletas */
@media (max-width: 768px) {
    .logo-temporal h1 {
        font-size: 4rem;
    }
    .logo-temporal h2 {
        font-size: 0.7rem;
    }
}

/* Móviles */
@media (max-width: 480px) {
    .logo-temporal h1 {
        font-size: 3rem;
        letter-spacing: 0.2rem;
    }
    .logo-temporal h2 {
        font-size: 0.6rem;
        letter-spacing: 0.1rem;
        line-height: 1.5;
    }
    .coming-soon {
        font-size: 0.9rem;
        letter-spacing: 0.3rem;
        margin-top: 40px;
        padding-top: 20px;
    }
}