

/* Estilos Generales */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: "Ubuntu", sans-serif;
    background-color: #f0f0f0;
}

/* Capa 1: Fondo */
.layer-background {
    position: relative;
    width: 100%;
    height: 100%;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Capa 2: Menú Horizontal */
.layer-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #990066;
    text-align: center;
}

.layer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.layer-menu ul li {
    padding: 7px 35px;
}

.layer-menu a {
    text-decoration: none;
    color: #E7E9E7;
    font-size: 1.064em;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

.layer-menu a:hover,
.layer-menu a:focus {
    color: #FFFFFF;
    transform: scale(0.98);
}

/* Capa 3: Imagen Pequeña */
.layer-image {
    position: absolute;
    top: 300px;
    left: 300px;
    width: 60px;
    height: auto;
}

.layer-image p {
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px;
    font-size: 16px;
}

/* Responsividad para pantallas pequeñas (móviles) */
@media (max-width: 768px) {
    .layer-menu ul {
        flex-direction: column;
    }

    .layer-image {
        top: 200px;
        left: 50%;
        transform: translateX(-50%);
    }
}