:root{
    --Snow: #F2F5F9;
    --Ice: #A8D0E6;
    --geminisgray: #f8f7f2;
    --geminisbeige: #f8f7f2;
    --geminiscleangray: #8d8d8d;
}
@font-face {
    font-family: 'Niven-BoldItalic';
    src: url('fonts/Niven-BoldItalic.otf') format('opentype');
}
@font-face {
    font-family: 'Aether-A';
    src: url('fonts/Aether-A.otf') format('opentype');
}
*{margin: 0; padding: 0; box-sizing: border-box;}
body{
    font-family: 'Niven-BoldItalic';
    background-color: black;
    color: var(--geminisgray);
}
/* ===== HEADERm ===== */
header{
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0));
    z-index: 1000;
}






/* ===== MOBILE NAV ===== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--Snow);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1100;
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }
    .nav-links {
        position: absolute;
        top: 4.5rem;
        left: 1rem; /* se alinea a la izquierda con un pequeño margen */
        transform: scale(0.95); /* solo el efecto de escala */
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        background: rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 0.5rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
        transform: scale(1); /* mantener la animación de crecimiento */
    }

    .nav-links a {
        text-align: left;
        width: 100%;
    }


}







.nav-links a{
    padding: 0.5rem 1rem;
    background-color: transparent;
    color: var(--geminisbeige);
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: background-color 0.5s, color 0.5s;
}
.nav-links a:hover { 
    background-color: var(--geminisbeige);
    color: var(--geminiscleangray);
}
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 3rem;
}
.logo img {height: 100%;}
.contact-btn a {
    padding: 0.5rem 1rem;
    background-color: var(--geminisbeige);
    color: var(--geminiscleangray);
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: color 0.5s, background-color 0.5s, filter 0.5s;
}
.contact-btn a:hover {
    color: black;
    background-color: var(--Ice);
    filter: brightness(70%); }
/* ===== SLIDERm ===== */
.hero-image {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.carousel { position: relative; width: 100%; height: 100%; }
.slides { position: relative; width: 100%; height: 100%; }
.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.slide.active { opacity: 1; z-index: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
}
.slide-text h1 { font-size: 3rem; margin-bottom: 1rem; }
.slide-text p { font-size: 1.5rem; }
.slide-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    text-decoration: none;
    color: var(--geminiscleangray);
    background-color: var(--Snow);
    transition: color 0.5s, background-color 0.5s, backdrop-filter 0.5s, -webkit-backdrop-filter 0.5s;
}
.slide-btn:hover{
    color: black;
    background-color: rgba(255, 250, 250, 0.350);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/*Create Alternative color button for SLide
.slide-btn-1{    
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    text-decoration: none;
    color: var(--geminiscleangray);
    background-color: var(--Snow);
    transition: filter 0.5s ease;}
.slide-btn-1:hover{filter: brightness(70%);}
*/

.carousel .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgb(0,0,0) );
    pointer-events: none;
    z-index: 5;
}
.carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: var(--Snow);
    border: none;
    padding: 0.5rem 1rem;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 0.3rem;
    z-index: 10;
    transition: color 0.5s;
}
.carousel .prev { left: 0.5rem; }
.carousel .next { right: 0.5rem; }
.carousel button:hover { color: black;}





/* ===== BODYm ===== */
.content { height: 100%; padding: 1.25rem; color: var(--geminisgray); }




/* ===== SCROLL REVEAL ===== */
.oculto {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}







.selected-artists-title{
    text-align: right;
    padding-right: 1.25rem;
    padding-bottom: 1.25rem;
    padding-top: 1.25rem;
    font-size: 4rem;
    /* Degradado de izquierda a derecha */
    background: linear-gradient(to left, var(--Snow), var(--Ice)21%);
    -webkit-background-clip: text;  /* Clipa el fondo al texto */
    -webkit-text-fill-color: transparent; /* Hace el texto transparente para ver el gradiente */

    /* Opcional: soporte para navegadores modernos */
    background-clip: text;
    color: transparent;
}
/* ===== FEATURED BLOCKS ===== */
.featured-section{
    padding-bottom: 1.25rem;
    background: linear-gradient(to bottom, black, #5C3A21);
}

.featured-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
    flex-wrap: wrap; /* 👈 importante para móvil */
}

/* ===== CARD ===== */
.featured-card {
    position: relative;
    width: clamp(220px, 80vw, 320px); /* 👈 ancho adaptable */
    aspect-ratio: 4 / 5;              /* 👈 SIEMPRE 4:5 */
    background-color: #2b2b2b;
    border-radius: 0.5rem;
    overflow: hidden;

    transition: transform 0.5s ease, z-index 0.5s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;

    flex-shrink: 0; /* 👈 evita deformaciones en flex */
}

.featured-card:hover {
    transform: scale(1.05);
    z-index: 5;
}

/* ===== IMAGE ===== */
.featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover img {
    transform: scale(1.1);
}

/* ===== OVERLAY ===== */
.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 35%,
        rgba(0,0,0,0.99) 90%
    );
    z-index: 1;
}

/* ===== TITLE ===== */
.featured-title {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: clamp(1.2rem, 4vw, 2rem); /* responsive */
    color: var(--Snow);
    letter-spacing: 0.05em;
    text-align: center;
}












/* ===== DISCOGRAPHY ===== */
.discography-section{
    padding: 3rem 1.25rem;
    background: linear-gradient(to bottom, #5C3A21, #D8B68A);
}

.discography-title {
    text-align: left;
    font-size: 4rem;
    margin-bottom: 2rem;

    /* Degradado de izquierda a derecha */
    background: linear-gradient(to right, var(--Snow), #7D7D7D 42%); /* Cambia estos colores */
    -webkit-background-clip: text;  /* Clipa el fondo al texto */
    -webkit-text-fill-color: transparent; /* Hace el texto transparente para ver el gradiente */

    /* Opcional: soporte para navegadores modernos */
    background-clip: text;
    color: transparent;
}


/* GRID */
.discography-grid{
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* CARD */
.discography-card{
    position: relative;
    aspect-ratio: 1 / 1;           /* cuadrado perfecto */
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease,z-index 0.4s ease;
}

.discography-card:hover{
    transform: scale(1.04);        /* ampliación sutil */
    z-index: 5;
}

/* IMAGE */
.discography-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.discography-card:hover img{
    transform: scale(1.08);
}

/* OVERLAY */
.discography-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,rgba(0,0,0,0) 30%,rgba(0,0,0,0.95)80%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
}

.discography-card:hover .discography-overlay{
    opacity: 1;
}

/* TEXT */
.discography-overlay h3{
    font-size: 1.25rem;
    color: var(--Snow);
    margin-bottom: 0.25rem;
}

.discography-overlay p{
    font-size: 0.75rem;
    color: var(--geminiscleangray);
    letter-spacing: 0.05em;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px){
    .discography-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .discography-title{
        font-size: 3rem;
    }
}

/* Mobile */
@media (max-width: 768px){
    .discography-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .discography-title{
        font-size: 2.5rem;
        text-align: center;
    }

    /*.discography-card:hover{
        transform: scale(1.02);
    }*/
}
.spacer-high-artists{
    padding: 1.25rem;
}







/* ===== SPOTIFY SECTION ===== */
.playlist-section{
    padding: 4rem 1.25rem;
    background: linear-gradient(to bottom, #D8B68A, black);
}
.tidal{
    display: flex;
    align-items: center;
    justify-content: space-evenly;

}




























/* ===== FOOTERm ===== */
.site-footer {
    padding: 3rem 5rem;
    background-color: black;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 0.5rem;
}
.footer-logo img {
    height: 3rem;
}
.footer-social,.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-social h4,.footer-contact h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--geminisbeige);
}
.footer-social a,.footer-contact a {
    color: var(--geminiscleangray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.5s;
}
.footer-social a:hover,.footer-contact a:hover {
    color: var(--Ice);
}
.footer-contact span {
    font-size: 0.75rem;
    color: var(--geminiscleangray);
    margin-top: 0.8rem;
}
.footer-copyright {
    margin-top: 1.25rem;
    padding-top: 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--geminiscleangray);
}