/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Courier Prime', monospace;
    background-color: #050505;
    color: #f0f0f0;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo, .btn {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

a { text-decoration: none; color: inherit; transition: 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- UTILITIES --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.highlight { color: #cc0000; font-weight: bold; }
.bg-darker { background-color: #000000; }
.right-align { text-align: right; }

/* --- NAVBAR --- */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%; background: rgba(5,5,5,0.95);
    position: fixed; width: 100%; top: 0; z-index: 1000;
    border-bottom: 1px solid #222; backdrop-filter: blur(5px);
}
.logo { font-size: 2rem; font-weight: 700; letter-spacing: 2px; color: #fff; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 1rem; letter-spacing: 1px; }
.nav-links a:hover { color: #cc0000; }
.cta-nav { border: 1px solid #fff; padding: 8px 20px; transition: 0.3s; }
.cta-nav:hover { background: #fff; color: #000 !important; }

.menu-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.bar { height: 3px; width: 25px; background-color: #fff; }

/* --- HERO SECTION --- */
#hero {
    height: 100vh; width: 100%;
    background-image: url('img/hero-bg.jpg');
    background-size: cover;
    
    /* TU AJUSTE PERSONALIZADO: Izquierda 30% | Arriba -150px */
    background-position: 30% -150px;
    
    position: relative;
    display: flex; align-items: center; justify-content: center;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), #050505);
}

.hero-content {
    position: relative; z-index: 2; padding: 20px;
    width: 100%; display: flex; justify-content: center;
}

.hero-text-wrapper { display: inline-block; text-align: left; }

.eyebrow-text {
    font-family: 'Courier Prime', monospace;
    font-size: 1rem; color: #888; margin-bottom: 5px; padding-left: 5px;
}

.hero-text-wrapper h1 {
    font-size: 5rem; line-height: 0.9; margin-bottom: 10px;
    letter-spacing: -2px; text-shadow: 2px 2px 0px #cc0000;
}

.hero-subtitle {
    font-size: 1rem; color: #888; margin-bottom: 40px; 
    font-family: 'Courier Prime';
}

.hero-btns { display: flex; gap: 20px; margin-top: 30px; }

.btn { padding: 15px 35px; font-size: 1.1rem; cursor: pointer; border: 2px solid #cc0000; }
.btn-primary { background-color: #cc0000; color: #fff; }
.btn-primary:hover { background-color: #aa0000; border-color: #aa0000; }
.btn-outline { border-color: #fff; background: transparent; }
.btn-outline:hover { background-color: #fff; color: #000; }

/* --- SECCIONES GENERALES --- */
.section-title {
    font-size: 3.5rem; margin-bottom: 60px;
    border-bottom: 4px solid #cc0000; display: inline-block; line-height: 1;
}

/* --- ALBUM SECTION (HOME) --- */
.album-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.album-info h4 { font-size: 2rem; margin-bottom: 20px; color: #fff; }
.album-info p { margin-bottom: 15px; color: #aaa; font-size: 1.1rem; }

.tracklist-highlight { margin: 30px 0; border-left: 1px solid #333; padding-left: 20px; }
.tracklist-highlight li { margin-bottom: 10px; color: #cc0000; font-family: 'Oswald'; letter-spacing: 1px;}
.tracklist-highlight li i { margin-right: 10px; font-size: 0.8rem; }

.dsp-links { margin-top: 40px; display: flex; gap: 15px; flex-wrap: wrap; }
.dsp-btn {
    padding: 12px 25px; background: #222; font-family: 'Oswald';
    font-size: 0.9rem; border: 1px solid #333;
}
.spotify:hover { background: #1DB954; color: #000; border-color: #1DB954; }
.audiomack:hover { background: #ffa200; color: #000; border-color: #ffa200; }

/* --- VIDEOS SECTION (HOME) --- */
.video-grid { 
    display: grid; 
    grid-template-columns: 2fr 1fr; 
    gap: 40px; 
}

/* Video principal del Home en 16:9 */
.video-container-169 {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}
.video-container-169 iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}

.main-video { position: relative; z-index: 10; }

.video-thumbs { display: flex; flex-direction: column; gap: 20px; position: relative; z-index: 1; }

.thumb-card {
    display: block; position: relative; height: 220px;
    overflow: hidden; border: 1px solid #333;
}
.thumb-card img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(100%); transition: 0.5s;
}
.thumb-card:hover img { filter: grayscale(0%); transform: scale(1.05); }

.thumb-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(204, 0, 0, 0.7); opacity: 0; transition: 0.3s;
}
.thumb-overlay span { font-family: 'Oswald'; font-size: 1.2rem; font-weight: bold; }
.thumb-card:hover .thumb-overlay { opacity: 1; }

/* --- BIO SECTION --- */
.bio-container { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: center; }

.bio-image img {
    width: 100%; filter: grayscale(100%) contrast(1.1);
    box-shadow: 20px 20px 0px #111;
}

.bio-text h3 { font-size: 3rem; margin-bottom: 30px; }
.bio-text p { margin-bottom: 20px; font-size: 1.1rem; color: #ccc; }

/* --- DISCOGRAFÍA --- */
.discography-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.disco-item { position: relative; cursor: pointer; }

.disco-cover {
    position: relative; overflow: hidden;
    aspect-ratio: 1 / 1; border: 1px solid #333;
}

.disco-cover img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(100%); transition: filter 0.4s ease, transform 0.4s ease;
}

.disco-item:hover .disco-cover img { filter: grayscale(0%); transform: scale(1.05); }

.disco-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center; text-align: center;
    background: rgba(0,0,0,0.7); opacity: 0; transition: 0.3s;
}
.disco-item:hover .disco-overlay { opacity: 1; }
.disco-overlay span {
    font-family: 'Oswald'; font-size: 1.2rem; color: #fff;
    border-bottom: 2px solid #cc0000; padding-bottom: 5px;
}
.disco-overlay small { font-size: 0.8rem; font-family: 'Courier Prime'; color: #ccc; border: none; }

/* --- FOOTER --- */
footer {
    border-top: 1px solid #222; padding: 60px 0;
    text-align: center; background: #000; margin-top: 50px;
}
.socials { display: flex; justify-content: center; gap: 40px; margin-bottom: 40px; font-family: 'Oswald'; font-size: 1.5rem; }
.socials a:hover { color: #cc0000; }
.email-link { font-size: 1.5rem; color: #fff; border-bottom: 2px solid #cc0000; }
.copyright { margin-top: 40px; font-size: 0.8rem; color: #444; }

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    
    /* --- AQUÍ ESTÁ LA SOLUCIÓN DEL MENÚ --- */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; /* Se coloca justo debajo de la barra */
        left: 0;
        width: 100%;
        background-color: #000; /* Fondo negro sólido */
        padding: 30px 0;
        border-top: 1px solid #333;
        border-bottom: 1px solid #333;
        align-items: center;
        gap: 25px; /* Espacio entre los items */
    }

    .menu-toggle { display: flex; }
    
    .hero-text-wrapper h1 { font-size: 3rem; }
    
    .album-grid, .video-grid, .bio-container { grid-template-columns: 1fr; gap: 40px; }
    
    .video-grid { display: flex; flex-direction: column; }
    .video-thumbs { display: flex; gap: 10px; }
    .thumb-card { width: 50%; height: 120px; }
    
    .section-title { font-size: 2.5rem; }
    .bio-image { order: 2; }
    .bio-text { order: 1; }
    
    .discography-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    
    #hero { background-position: center; } 
}

/* ========================================= */
/* ESTILOS PARA LAS PÁGINAS DE DISCOS (SUB-PÁGINAS) */
/* ========================================= */

.nav-back {
    position: absolute; top: 20px; left: 20px; z-index: 100;
    color: #fff; font-family: 'Oswald'; text-decoration: none;
    background: rgba(0,0,0,0.5); padding: 10px 20px; border: 1px solid #fff;
    backdrop-filter: blur(5px);
}
.nav-back:hover { background: #fff; color: #000; }

.album-hero {
    min-height: 90vh; display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
    padding: 100px 20px 40px;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
}

.album-cover-big {
    width: 300px; height: 300px; margin-bottom: 30px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    border: 1px solid #333;
}

/* --- REPRODUCTOR PRINCIPAL DE DISCOS --- */
.player-container-full {
    width: 90%; 
    max-width: 1200px; 
    margin: 0 auto 40px;
    aspect-ratio: 16 / 9;
    height: auto !important;
    position: relative;
    background: #000;
    border: 1px solid #333;
    box-shadow: 0 0 30px #000;
    overflow: hidden;
}

.player-container-full iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- SLIDER DE CANCIONES --- */
.songs-slider-wrapper {
    width: 90%; max-width: 1200px; margin: 0 auto 60px;
}
.songs-slider {
    display: flex; overflow-x: auto; gap: 15px; padding-bottom: 20px;
    scrollbar-width: thin; scrollbar-color: #cc0000 #222;
}
.songs-slider::-webkit-scrollbar { height: 8px; }
.songs-slider::-webkit-scrollbar-track { background: #222; }
.songs-slider::-webkit-scrollbar-thumb { background: #cc0000; border-radius: 4px; }

.song-card {
    min-width: 200px; background: #111; padding: 20px;
    border: 1px solid #333; text-align: left; transition: 0.3s;
}
.song-card:hover { background: #222; border-color: #cc0000; }
.song-card h5 { font-family: 'Oswald'; color: #fff; margin-bottom: 5px; font-size: 1rem; }
.song-card span { font-family: 'Courier Prime'; color: #888; font-size: 0.8rem; }

/* Grid de Plataformas (DSP) */
.dsp-grid-full {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px; width: 90%; max-width: 800px; margin: 0 auto;
}
.dsp-btn-full {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px; background: #111; border: 1px solid #333; color: #fff;
    font-family: 'Oswald'; text-transform: uppercase; transition: 0.3s;
}
.dsp-btn-full:hover { background: #fff; color: #000; }

/* Lista de Temas */
.tracklist-full {
    max-width: 800px; margin: 0 auto; text-align: left;
    border-top: 1px solid #333; padding-top: 40px;
}
.track-row {
    display: flex; justify-content: space-between; padding: 15px 0;
    border-bottom: 1px solid #222; color: #aaa; font-family: 'Courier Prime';
}
.track-row:hover { color: #fff; padding-left: 10px; background: #0a0a0a; }

@media (max-width: 768px) {
    .album-cover-big { width: 200px; height: 200px; }
}