* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: url('fondo-musical.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 0;
}

header h1 {
    text-align: center;
    font-size: 2.5em;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #f4c542;
}

.intro {
    background: rgba(0, 0, 0, 0.7);
    padding: 60px 0;
    text-align: center;
}

.intro h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.galeria {
    background: rgba(0, 0, 0, 0.7);
    padding: 60px 0;
    text-align: center;
}

.galeria h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.galeria .imagenes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.galeria .imagenes img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.eventos {
    padding: 60px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
}

footer {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 0;
    text-align: center;
    color: white;
}

footer p {
    font-size: 1em;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    nav ul {
        flex-direction: column;
        margin-top: 20px;
    }

    nav ul li {
        margin-bottom: 10px;
    }

    .intro h2, .galeria h2, .eventos h2 {
        font-size: 2em;
    }
}
