/* Configuración General */
@font-face {
    font-family: texto;
    src: url("fuentes/IndieFlower-Regular.ttf");
}

@font-face {
    font-family: lista;
    src: url('fuentes/Oswald-VariableFont.ttf');
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: lista;
    color: #333;
    line-height: 1.6;
    background-color: #fffaef;
    /* Crema suave */
    user-select: none;
}

h1, h2, h3 {
    font-family: lista;
}

#info, #temas, #video, #contacto {
    scroll-margin-top: 5rem;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 3rem 1rem;
    overflow: hidden;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    margin-top: 3rem;
    width: 5rem;


}

/* Navegación */
nav {
    background: #1a1a1a;
    font-size: 1.3rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    max-height: 70px;
    z-index: 1000;
}

.nav-links {
    display: flex;
    list-style: none;

}

.nav-links li {
    border: none;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    margin-left: 5rem;
    font-weight: 400;

    transition: color 0.5s;
}

.nav-links li a:hover {
    color: #d4af37;
    /* Dorado */
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('img/portada2026.webp');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 6em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 2em;

}

/* Grid de Información y Temas */
.info-grid, .temas-grid, .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.musica-container {
    min-height: 80vh;
}

.info-card, .estilo-col {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.bg-light {
    background: transparent;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}
h3 {

    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}
ul {
    list-style: none;
}

ul li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    transition: color 0.6s;
}

ul li:hover {
    color: #d4af37;
}

ul li img {
    vertical-align:baseline;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
    margin-bottom: -4px;
}

ul>li>span {
    padding: 0 0.5rem;
    font-size: 0.8rem;
    color: #fff;
    vertical-align: baseline;
    margin-left: 0.5rem;
    background-color: #ccc;
}
ul>li>small {
    color: #99c;
    margin-left: 2.35rem;
    
}
/* Contacto */
footer {
    background: #1a1a1a;
    color: #fff;
    text-align: center;

}

footer h2 {
    color: #eee;
}

footer a {
    color: #d4af37;
    text-decoration: none;
}

footer a img {
    vertical-align: text-bottom;
    width: 24px;
    margin-right: 10px;
}

/* Media Queries para Móviles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    /* Simplificación para el ejemplo */
    .hero h1 {
        font-size: 2.1rem;
    }

    .hero p {
        font-size: 1.4rem;
    }

    .container h2 {
        font-size: 1.7rem;
    }

    .logo {
        width: 100vw;
        text-align: center;
    }
}

@media (max-width: 1000px) {
    .hero h1 {
        font-size: 3rem;
    }
}