/* Reset y fuentes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/DSC_4783.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Botones */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff4d4d;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #ff1a1a;
}

/* Secciones */
.section {
    padding: 5rem 2rem;
    text-align: center;
    background: #fff;
    color: #111;
}

.section.dark {
    background: #f5f5f5;
    color: #111;
}

/* Música */
.music-container {
    max-width: 800px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.platform-links {
    margin-top: 2rem;
}

.platform-links a {
    margin: 0 10px;
    color: #333;
    text-decoration: none;
}

/* Shows */
.shows-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.show {
    background: white;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 250px;
}

/* Contacto */
.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form textarea {
    height: 150px;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: #333;
    color: white;
}

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    margin: 0 10px;
}

.social-links img {
    width: 30px;
    height: 30px;
}

/* Biografía */
.bio-container {
    max-width: 800px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    text-align: left;
}

.bio-container h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.bio-btn {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.bio-full {
    margin-top: 1rem;
    background: #fafafa;
    padding: 1rem;
    border-radius: 5px;
}

/* Discografía */
.discografia-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.discos-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.disco {
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.disco-portada {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    background: #eee;
}

.disco-año {
    color: #888;
    font-size: 0.95em;
    margin-left: 5px;
}

/* Videos */
.videos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.video-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 340px;
}

.video-item p {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #333;
    text-align: center;
}

/* Navegación */
.section-nav {
    text-align: center;
    margin-top: 2rem;
}

.nav-arrow {
    color: #ff4d4d;
    text-decoration: none;
    font-size: 2.2rem;
    font-weight: bold;
    display: inline-block;
    line-height: 1;
    text-align: center;
    transition: color 0.2s;
    padding: 0 0.5rem;
}

.nav-arrow:hover {
    color: #ff1a1a;
}

/* Footer fijo */
.footer-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222;
    color: #fff;
    z-index: 1000;
    padding: 6px 0; /* aún más reducido */
}

.footer-nav > div {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-btn {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    font-size: 1em;
    border-radius: 6px;
    transition: background 0.2s;
}

.footer-btn:hover {
    background: #444;
}

/* Espacio para el footer */
.footer-space {
    height: 60px;
}

@media (max-width: 600px) {
    .footer-space {
        height: 80px;
    }
}

/* Responsive footer for mobile */
@media (max-width: 600px) {
    .footer-nav {
        padding: 2px 0; /* mínimo espacio vertical en móvil */
    }
    .footer-nav > div {
        gap: 2px; /* mínimo espacio entre botones */
    }
    .footer-btn {
        font-size: 0.93em;
        padding: 6px 4px;
        min-width: 70px;
        text-align: center;
    }
}