/* 1. Configuración global y fuentes */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: #ffffff; /* Color de texto por defecto */
    background-color: #000;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* 2. Contenedor principal y fondo */
.maintenance-container {
    /* **IMPORTANTE: Reemplaza esta URL con el enlace externo real de tu imagen** */
    background-image: url('landing.jpg'); 
    background-size: cover; /* Asegura que la imagen cubra todo el contenedor */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* Necesario para posicionar el overlay y el contenido */
}

/* 3. Overlay para mejorar legibilidad */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Negro semi-transparente (40% opacidad) */
    z-index: 1; /* Coloca el overlay debajo del contenido */
}

/* 4. Contenido central */
.content {
    position: relative; /* Asegura que el contenido esté sobre el overlay */
    z-index: 2;
    padding: 20px;
    max-width: 90%;
}

.content h1 {
    font-size: 4em; /* Tamaño grande para el título principal */
    font-weight: 700;
    margin-bottom: 0.2em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Sombra para mejor contraste */
}

.content h2 {
    font-size: 2em;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 0.5em;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.content p {
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* 5. Responsividad (Media Query) */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2.5em; /* Reduce el tamaño del título en móviles */
    }
    .content h2 {
        font-size: 1.5em; /* Reduce el tamaño del subtítulo en móviles */
        letter-spacing: 3px;
    }
    .content p {
        font-size: 1em;
    }
}