/* General */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #0a0a1a;
    color: white;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Navegación */
nav {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}
.logo-text {
    font-size: 1.4rem;
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px #00ffff;
}
.nav-links a {
    color: #00ffff;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}
.nav-links a:hover {
    color: #ff00ff;
}

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(to bottom, rgba(10, 10, 26, 0.8), rgba(10, 10, 26, 1)),
                url('img/fondo-fiesta.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}
.hero-content {
    max-width: 750px;
}
.logo {
    width: 140px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px #00ffff);
}
.hero h1 {
    font-size: 3.8rem;
    font-weight: bold;
    color: #00ffff;
    text-shadow: 0 0 15px #00ffff, 0 0 35px #00ffff;
    margin-bottom: 10px;
}
.tagline {
    font-size: 1.4rem;
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
    margin-bottom: 20px;
}
.intro {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Botón neón */
.btn-neon {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #00ffff;
    color: #00ffff;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 0 0 10px #00ffff;
    box-shadow: 0 0 15px #00ffff;
    transition: 0.3s ease;
}
.btn-neon:hover {
    color: #ff00ff;
    border-color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
    box-shadow: 0 0 20px #ff00ff;
}

/* Footer */
footer {
    width: 100%;
    height: 80px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    text-align: center;
    padding: 10px 0;
}

.icon {
    width: 28px;
    margin: 0 6px;
    transition: transform 0.3s ease;
}
.icon:hover {
    transform: scale(1.2);
}

/* Botón neón mejorado */
.btn-neon {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    border: 2px solid #00ffff;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    color: #00ffff;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 0 0 10px #00ffff;
    box-shadow: 0 0 20px #00ffff;
    transition: all 0.3s ease-in-out;
}
.btn-neon:hover {
    background: #00ffff;
    color: #0a0a1a;
    box-shadow: 0 0 25px #ff00ff, 0 0 40px #00ffff;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(5px);
    text-align: center;
}

/* Imagen dentro del modal */
.modal-content {
    margin-top: 60px;
    max-width: 80%;
    max-height: 80vh;
    box-shadow: 0 0 20px #00ffff;
    border-radius: 15px;
}

/* Botón cerrar */
.close {
    position: absolute;
    top: 25px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    text-shadow: 0 0 10px #ff00ff;
}
.close:hover {
    color: #ff00ff;
}
