/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2c3e50;
    color: white;
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #f1c40f;
}

/* Hero Section */
header {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://source.unsplash.com/random/1600x900/?music,instruments') no-repeat center center/cover;
    /* Note: If the image above doesn't load, the background color below will show */
    background-color: #333; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #f1c40f;
    color: #333;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #e1b700;
}

.contact-btn {
    background: #2c3e50;
    color: white;
}

.contact-btn:hover {
    background: #34495e;
}

/* Sections */
.section {
    padding: 60px 20px;
    text-align: center;
}

.alt-bg {
    background-color: #e9ecef;
}

.content-box {
    max-width: 700px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.tabla-icon {
    font-size: 4rem;
    margin-top: 10px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

/* Footer */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-text h1 { font-size: 2.5rem; }
    .nav-links { display: none; } /* Simplifies menu for mobile */
}
