/* VARIABLES GLOBALES - Cambia los colores aquí fácilmente */
:root {
    --color-principal: #6366f1; /* Indigo (puedes cambiarlo por tu color de marca) */
    --color-fondo: #000000;
    --color-secundario: #18181b; /* Zinc 900 */
    --color-texto: #ffffff;
    --fuente-titulos: 'Inter', sans-serif;
}

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

body {
    background-color: var(--color-fondo);
    color: var(--color-texto);
    font-family: var(--fuente-titulos);
    line-height: 1.6;
    overflow-x: hidden;
}

/* CABECERA Y NAVEGACIÓN */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #27272a;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-principal);
    text-decoration: none;
    letter-spacing: -1px;
    text-transform: uppercase;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #a1a1aa;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--color-principal);
}

/* Contenedor principal del banner */
.promo-banner {
    position: relative;
    height: 130vh; /* Altura del banner */
    height: 500px;
    background: url('../imagenes/baja-sube-baila.png') center/cover no-repeat;
    background-color: #050505; /* Fondo oscuro mientras carga la imagen */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

/* Capa oscura para que el texto resalte */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%);
}

.content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

/* Título con efecto Neón */
.title {
    font-size: 4rem;
    font-weight: 900;
    margin: 50;
    letter-spacing: -1px;
    color: #5effc4; /* Verde neón */
    text-shadow: 0 0 10px rgba(94, 255, 196, 0.7), 0 0 30px rgba(94, 255, 196, 0.4);
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.2rem;
    margin: 10px 0 30px;
    opacity: 0.9;
}

/* Botón con borde brillante */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    border: 2px solid #00aaff;
    border-radius: 50px;
    background: rgba(0, 170, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.5);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #00aaff;
    box-shadow: 0 0 30px rgba(0, 170, 255, 0.8);
    transform: scale(1.05);
}

/* Iconos de plataformas */
.platforms {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .title { font-size: 2.5rem; }
    .promo-banner { height: 50vh; }
}

/* FOOTER ESTILO DJ */
footer {
    background-color: var(--color-secundario);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid #27272a;
    text-align: center;
}

.streaming-links {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.streaming-links a {
    font-size: 1.8rem;
    color: #52525b;
    transition: all 0.3s ease;
}

/* Colores de marca en hover */
.streaming-links a.spotify:hover { color: #1DB954; transform: translateY(-5px); }
.streaming-links a.soundcloud:hover { color: #FF3300; transform: translateY(-5px); }
.streaming-links a.tidal:hover { color: #ffffff; transform: translateY(-5px); }
.streaming-links a.instagram:hover { color: #E1306C; transform: translateY(-5px); }

.copyright {
    font-size: 0.8rem;
    color: #71717a;
    letter-spacing: 1px;
}

.designer-link {
    margin-top: 10px;
    font-size: 0.75rem;
}

.designer-link a {
    color: var(--color-principal);
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid rgba(99, 102, 241, 0.2);
}

.designer-link a:hover {
    border-bottom-color: var(--color-principal);
}

/* SECCIÓN DISCOGRAFÍA */
.discografia-container {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.album-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #222;
}

.album-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    border-color: var(--color-principal);
}

.album-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #222; /* Color de carga si no hay imagen */
    object-fit: cover;
}

.album-info {
    padding: 1.5rem;
    text-align: center;
}

.album-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.album-info span {
    color: var(--color-principal);
    font-weight: bold;
    font-size: 0.9rem;
}

/* SECCIÓN TIENDA */
.tienda-container {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.producto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.producto-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
}

.producto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    border-color: var(--color-principal);
}

.producto-img {
    width: 100%;
    aspect-ratio: 4 / 3; /* Un poco más rectangular para productos */
    background: #222; /* Color de carga */
    object-fit: cover;
}

.producto-info {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1; /* Para que el contenido ocupe el espacio restante */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.producto-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    color: var(--color-texto);
}

.producto-precio {
    color: var(--color-principal);
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}

.btn-comprar {
    display: inline-block;
    background-color: var(--color-principal);
    color: var(--color-texto);
    padding: 0.8rem 1.8rem;
    border-radius: 9999px; /* Botón redondo */
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: center; /* Centrar el botón */
}

.btn-comprar:hover {
    background-color: #4f46e5; /* Un tono más oscuro de indigo */
    transform: scale(1.05);
}

/* SECCIÓN CONTACTO */
.contacto-container {
    padding: 100px 5%;
    max-width: 800px;
    margin: 0 auto;
}

.form-contacto {
    background: #0a0a0a;
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid #222;
}

.grupo-input {
    margin-bottom: 1.5rem;
}

.grupo-input label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #71717a;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.form-contacto input, 
.form-contacto textarea {
    width: 100%;
    padding: 1rem;
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 8px;
    color: white;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-contacto input:focus, 
.form-contacto textarea:focus {
    outline: none;
    border-color: var(--color-principal);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
}

.btn-enviar {
    width: 100%;
    padding: 1rem;
    background: var(--color-principal);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.3s ease;
}

.btn-enviar:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

/* ESTILO REPRODUCTOR */
.player-container {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #222;
}

/* Estilo para el reproductor nativo de HTML5 */
audio.custom-audio {
    width: 100%;
    height: 35px;
    filter: invert(100%) hue-rotate(180deg) brightness(1.5); /* Lo hace "Dark Mode" automáticamente */
}

/* Si usas el iframe de SoundCloud, este estilo lo ajusta */
.player-container iframe {
    border-radius: 4px;
}

.album-card:hover .player-container {
    border-top-color: var(--color-principal);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    nav ul {
        display: none; /* Aquí podrías añadir el menú hamburguesa */
    }
    
    .streaming-links {
        gap: 1.5rem;
    }
}