/* estilos-layout.css */

/* NAVBAR */
.glass-nav {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(168, 85, 247, 0.3);
}

nav .title-font {
    font-family: 'Syncopate', sans-serif;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.8), 0 0 20px rgba(168, 85, 247, 0.4);
}

nav a {
    transition: all 0.3s ease;
}

nav a:hover {
    color: #a855f7;
}

/* MENÚ MÓVIL */
#mobile-menu {
    transition: all 0.3s ease;
}

#mobile-menu.active {
    transform: translateY(0);
}

#mobile-menu a {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 1rem;
}

/* FOOTER */
footer {
    background-color: #000;
    border-top: 1px solid rgba(168, 85, 247, 0.2);
    padding-top: 3rem;
    padding-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

footer .purple-glow {
    position: absolute;
    background: #a855f7;
    filter: blur(120px);
    opacity: 0.1;
    z-index: 0;
}

footer .footer-link {
    transition: all 0.3s ease;
    color: #6b7280;
    font-size: 0.75rem;
}

footer .footer-link:hover {
    color: #a855f7;
    padding-left: 4px;
}

footer .social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

footer .social-link:hover {
    color: #fff;
    transform: translateX(3px);
}