@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Playfair+Display:wght@700&display=swap');

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    overflow: hidden; /* Evita barras de desplazamiento si el video es más grande */
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2; /* Envía el video al fondo */
}

#bg-video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover; /* Asegura que el video cubra todo el contenedor */
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
    z-index: -1;
}

.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

.content h1 {
    font-family: 'Cinzel', serif; /* Toque arqueológico/clásico */
    font-size: 3rem;
    letter-spacing: 2px;
    max-width: 900px;
    text-transform: uppercase;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em; /* Tamaño grande para el mensaje principal */
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Sombra para resaltar el texto */
    max-width: 800px;
}

p {
    font-size: 1.2em;
    margin-top: 20px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.construction-svg svg {
    width: 80px;
    height: 80px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    animation: rotate 10s linear infinite;
}

.construction-icon {
    width: 100%;
    height: 100%;
    animation: pulse 2s infinite alternate; /* Animación de pulsación */
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.05); opacity: 1; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Media Queries para responsividad */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }
    .construction-svg {
        width: 100px;
        height: 100px;
    }
    p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8em;
    }
    .construction-svg {
        width: 80px;
        height: 80px;
    }
}



