/* ===== IMAGEN DE FONDO ===== */

body {
    margin: 0;
    min-height: 100vh;

    background-image: url("../img/fondopagina1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* ===== LOGO ETERSONG ===== */

.logo-superior {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.logo-superior img {
    width: 600px;
    max-width: 90%;
    height: auto;
    display: block;
}

/* ===== MENU DE NAVEGACIÓN ===== */

nav {
    width: 100%;
    display: flex;
    justify-content: center;

    background: rgba(0, 0, 0, 0.75);

    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

nav ul {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 35px;

    list-style: none;

    padding: 15px 20px;
}

nav a {
    color: white;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 16px;

    letter-spacing: 2px;

    transition: 0.3s;
}

nav a:hover {
    color: #b30000;

    text-shadow: 0 0 10px #b30000;
}
/* ===== VERSION PARA CELULARES ===== */

@media (max-width: 600px) {

    /* LOGO */
    .logo-superior {
        padding: 15px 10px;
    }

    .logo-superior img {
        width: 90%;
        max-width: 400px;
    }

    /* MENU */
    nav ul {
        flex-wrap: wrap;
        gap: 15px 20px;
        padding: 15px 10px;
    }

    nav a {
        font-size: 12px;
        letter-spacing: 1px;
    }

}
