/* Identity Floating Elements */
@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.deco-float-machine {
    position: absolute;
    bottom: 10%;
    left: -2%;
    width: 200px;
    opacity: 0.04;
    z-index: 1;
    pointer-events: none;
    animation: floating 10s ease-in-out infinite reverse;
}

/* ============================================= */
/*          SPLIT HERO & PREMIUM EFFECTS         */
/* ============================================= */

.split-hero {
    display: flex;
    min-height: 100vh;
    width: 100%;
    background-color: var(--bside-black);
    overflow: hidden;
    position: relative;
    margin-top: -80px;
    /* Offset for transparent navbar */
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 8% 80px;
    z-index: 10;
    background: linear-gradient(90deg, #000 70%, transparent);
}

.hero-right {
    flex: 1.2;
    position: relative;
    overflow: hidden;
    display: none;
    /* Hidden on mobile */
}

@media (min-width: 992px) {
    .hero-right {
        display: block;
    }
}

/* MOBILE ADAPTATION */
@media (max-width: 991px) {
    .split-hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .hero-left {
        background: rgba(0, 0, 0, 0.6);
        padding: 140px 5% 60px;
        align-items: center;
        width: 100%;
        min-height: 100vh;
    }

    .hero-video-bg {
        opacity: 0.3 !important;
        z-index: -1;
    }

    /* Move video to background on mobile */
    .split-hero {
        position: relative;
    }

    .hero-right {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        display: block !important;
        z-index: 0;
    }

    .hero-buttons-premium {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.5;
}

.hero-mask-text {
    font-family: 'FonteTitulos', sans-serif;
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 0.85;
    margin-bottom: 2rem;
    color: var(--bside-sand);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.hero-mask-text .reveal-line {
    display: block;
    overflow: hidden;
}

.hero-mask-text .reveal-line span {
    display: block;
    transform: translateY(100%);
    animation: reveal-up 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes reveal-up {
    to {
        transform: translateY(0);
    }
}

.hero-subheading-premium {
    font-family: 'FontePrincipal', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--bside-white);
    opacity: 0;
    animation: fade-in-up 1s ease forwards 0.8s;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons-premium {
    opacity: 0;
    animation: fade-in-up 1s ease forwards 1.2s;
}

/* Artist Reveal Interaction (V2) */
.artist-grid-luxury {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px;
    background: var(--theme-border-color);
}

.artist-card-luxury {
    position: relative;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.artist-card-luxury img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1), filter 0.8s ease;
    filter: brightness(0.8) contrast(1.1);
}

.artist-card-luxury:hover img {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.1);
}

.artist-overlay-luxury {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 30%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: background 0.5s ease;
}

.artist-card-luxury:hover .artist-overlay-luxury {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.2) 20%, transparent 100%);
}

.artist-name-luxury {
    font-family: 'FonteTitulos', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 0.2rem;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    text-transform: uppercase;
}

.artist-style-luxury {
    font-family: 'FontePrincipal', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--bside-sand);
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1) 0.1s;
}

.artist-card-luxury:hover .artist-name-luxury,
.artist-card-luxury:hover .artist-style-luxury {
    transform: translateY(0);
    opacity: 1;
}

.artist-action-luxury {
    margin-top: 1rem;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1) 0.2s;
}

.artist-card-luxury:hover .artist-action-luxury {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .artist-grid-luxury {
        grid-template-columns: 1fr;
    }

    .artist-card-luxury {
        height: 400px;
    }

    .artist-name-luxury {
        opacity: 1;
        transform: none;
        font-size: 2rem;
    }

    .artist-style-luxury {
        opacity: 1;
        transform: none;
    }

    .artist-action-luxury {
        opacity: 1;
        transform: none;
    }
}