/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #111; /* Color de fallback si la imagen no carga */
    color: #fff;
    background-image: url('https://sonorandesertrecords.online/imgs/hero-bg.jpg'); /* Tu imagen de fondo */
    background-size: cover;
    background-attachment: fixed; /* Mantiene la imagen fija mientras se desplaza el contenido */
    background-position: center;
}

/* Importación de tipografías */
@font-face {
    font-family: 'TangoSANS';
    src: url('https://sonorandesertrecords.online/fonts/TangoSans.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helmet';
    src: url('https://sonorandesertrecords.online/fonts/Helmet-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Texto base */
body, p, a, li, input, textarea, button {
    font-family: 'Helmet', Arial, sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #fff;
}

/* Títulos */
h1, h2, h3, h4, h5, h6,
.label-name,
.section-title,
.hero-content h2,
.releases h3,
.artist-info h3 {
    font-family: 'TangoSANS', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Header */
header.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 1rem 2rem;
    z-index: 1000;
    display: flex;
    justify-content: center;
    transition: opacity 0.5s, transform 0.5s;
    border-bottom: none;
}

header.header.oculto {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-section img.logo {
    width: 60px;
    height: auto;
}

.label-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.label-tagline {
    font-size: 1rem;
    margin: 0;
    color: #ccc;
}

.nav a {
    color: white;
    text-decoration: none;
    margin-left: 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 0.2rem;
    transition: color 0.3s;
}

.nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

.nav a:hover {
    color: #fff;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: brightness(50%);
}

.hero-content {
    max-width: 500px;
    text-align: left;
    animation: fadeIn 1.5s forwards;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    border-radius: 0;
    border: none;
}

.hero-content.hero-left-page {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 2rem;
    text-align: left;
    margin-left: 2%;
    margin-top: 15vh;
}

.fade-line {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 0.8s forwards;
}

.fade-line:nth-child(1) {
    animation-delay: 0.3s;
}

.fade-line:nth-child(2) {
    animation-delay: 0.6s;
}

.fade-line:nth-child(3) {
    animation-delay: 0.9s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-top: 1.5rem;
}

/* 🎵 Botones con glassmorphism, sin animaciones de movimiento */
.btn,
.listen-btn,
.contact button {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 9999px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05); /* Fondo glassmorphism */
    color: #fff;
    backdrop-filter: blur(10px); /* Desenfoque */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: background 0.3s, box-shadow 0.3s;
}

.btn:hover,
.listen-btn:hover,
.contact button:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transform: none; /* Eliminar transformación de movimiento */
}

/* Efecto brillo (se mantiene, pero sin la transición de la posición) */
.btn::after,
.listen-btn::after,
.contact button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-25deg);
    transition: left 0.5s ease;
}

.btn:hover::after,
.listen-btn:hover::after,
.contact button:hover::after {
    left: 100%;
}

/* Ajuste especial para listen-btn en slider */
.listen-btn {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

/* Hover de listen-btn sin movimiento vertical */
.listen-btn:hover {
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
}

.listen-btn:active {
    transform: scale(0.95) translateX(-50%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Slider / Lanzamientos */
.releases {
    position: relative;
    min-height: 100vh;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.releases h3 {
    position: absolute;
    top: 5rem;
    left: 2rem;
    transform: none;
    font-size: 3rem;
    z-index: 10;
    color: #fff;
}

.slider {
    position: relative;
    width: 100%;
    height: 100vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-info {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.slide-info h4 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

/* Navegación slider - SIN glassmorphism */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    
    /* ✅ Estilos de Glassmorphism */
    background: rgba(255, 255, 255, 0.05); /* Fondo base semi-transparente */
    backdrop-filter: blur(10px); /* El efecto de vidrio */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1); /* Borde sutil */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Sombra para dar profundidad */
    
    /* ✅ Estilos de texto y transición */
    color: #fff;
    font-size: 1.5rem;
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
}

.prev {
    left: 1rem;
}

.next {
    right: 1rem;
}

/* ✅ Efecto de hover: solo se intensifica el color */
.prev:hover,
.next:hover {
    transform: translateY(-50%) scale(1.1); /* Sigue manteniendo la animación de escala */
    background: rgba(255, 255, 255, 0.2); /* Fondo más intenso */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* ... (tu CSS existente hasta la sección de artistas) ... */

/* Artistas */
.artists-section {
    min-height: 100vh;
    padding: 2rem;
    background: #111;
    color: white;
    display: flex;
    flex-direction: column;
    margin-top: 0px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    margin-top: 5rem;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

/* 🚀 Contenedor principal para la tarjeta y la barra flotante */
.artist-card-container {
    position: relative; /* Define el contexto para la barra flotante */
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.artist-card-container .artist-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* 🚀 ESTILOS PARA LA GLASSBAR FLOTANTE CON EFECTO CLARO DE iOS */
.artist-glass-bar {
    position: absolute; /* Esto hace que la barra flote sobre la imagen */
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 0.8rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;

    /* Estilo Glassmorphism CLARO tipo iOS */
    background: rgba(255, 255, 255, 0.15); /* Fondo blanco con alta transparencia */
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);

    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);

    z-index: 10;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s;
}

/* Efecto hover en toda la tarjeta */
.artist-card-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.artist-glass-bar:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

.artist-glass-bar h3 {
    font-size: 1.2rem;
    margin: 0;
    color: #ffffff;
    font-family: 'Helmet-Regular', Arial, sans-serif;
}

.artist-glass-bar .icon-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.artist-glass-bar .icon-link svg {
    fill: #ffffff8c;
    width: 22px;
    height: 22px;
    transition: fill 0.3s ease;
}

.artist-glass-bar .icon-link:hover svg {
    fill: #ffffff;
}

/* Contacto - CON glassmorphism */
.contact {
    max-width: 900px;
    margin: 4rem auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact form {
    display: grid;
    gap: 1rem;
}

.contact input,
.contact textarea {
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #444;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    outline: none;
}

.contact input:focus,
.contact textarea:focus {
    border-color: #6366f1;
}

/* Footer */
.footer {
    background: #000;
    color: #888;
    padding: 2rem;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-left p {
    margin: 0;
}

.social-icons-footer {
    display: flex;
    gap: 1rem;
}

.footer a {
    color: #888;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    padding-bottom: 0.2rem;
    white-space: nowrap;
}

.footer a:hover {
    color: #fff;
}

/* Estilos de subrayado para los enlaces del footer */
.footer a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s;
}

.footer a:hover::after {
    width: 100%;
}

/* Estilos para el cambio de color en los íconos del footer */
.social-icons-footer a:hover svg {
    fill: #fff;
}

/* Scroll reveal */
.fade-slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s, transform 0.8s;
}

.fade-slide-up.show {
    opacity: 1;
    transform: translateY(0);
}

html {
    scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 768px) {
    header.header {
        padding: 0.5rem 1rem;
    }

    .logo-section img.logo {
        width: 40px;
    }
    .label-name {
        font-size: 1.4rem;
    }
    .label-tagline {
        font-size: 0.8rem;
    }

    .nav {
        display: none;
    }

    .hero-content.hero-left-page {
        max-width: 90%;
        padding: 1rem;
        margin-left: 5%;
        margin-top: 8vh;
    }

    .hero-content {
        padding: 1.5rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    .btn {
        width: 100%;
        text-align: center;
    }

    .releases h3 {
        font-size: 2rem;
        top: 3rem;
        left: 1rem;
    }
    .prev, .next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .artists-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .section-title {
        font-size: 1.8rem;
        margin-top: 2rem;
    }

    .contact {
        padding: 2rem;
        margin: 1rem;
    }
    .contact h3 {
        font-size: 1.6rem;
    }
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

.btn.secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    transition: all 0.3s ease;
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* 🚀 Barra de desplazamiento completamente transparente para ver el fondo */

/* Para navegadores Webkit (Chrome, Safari) */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: transparent; /* Pista de la barra de desplazamiento transparente */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2); /* Pulgar con transparencia para que flote */
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: background 0.3s, box-shadow 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4); /* Pulgar más visible al pasar el mouse */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Para navegadores basados en Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent; /* pulgar / pista */
}

