/* ============================================
   HOME PAGE - Hero + Latest Release
   ============================================ */

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-text {
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(20rem, 50vw, 60rem);
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 245, 0.03);
    white-space: nowrap;
    user-select: none;
    animation: scrollText 30s linear infinite;
}

@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

.hero-image-container {
    position: relative;
    width: clamp(280px, 40vw, 500px);
    height: clamp(350px, 50vw, 625px);
    margin: 0 auto 3rem;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.5s ease;
}

.hero-image-container:hover .hero-image {
    filter: grayscale(0%) contrast(1);
}

.hero-image-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid var(--acid);
    pointer-events: none;
    transition: transform 0.4s ease;
}

.hero-image-container:hover .hero-image-frame {
    transform: translate(10px, 10px);
}

.hero-image-text {
    position: absolute;
    bottom: -40px;
    right: -60px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--honey);
    writing-mode: vertical-rl;
    letter-spacing: 0.1em;
}

.hero-name {
    font-family: var(--font-display);
    font-size: clamp(4rem, 18vw, 15rem);
    line-height: 0.85;
    letter-spacing: -0.02em;
    position: relative;
}

.hero-name .line {
    display: block;
    overflow: hidden;
}

.hero-name .line span {
    display: block;
    animation: revealText 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation-delay: calc(var(--i) * 0.1s);
    transform: translateY(100%);
}

@keyframes revealText {
    to { transform: translateY(0); }
}

.hero-name .accent {
    color: var(--acid);
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.hero-tagline {
    font-family: var(--font-mono);
    font-size: clamp(0.8rem, 2vw, 1rem);
    font-weight: 100;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    margin-top: 2rem;
    color: rgba(255, 255, 245, 0.5);
}

.scroll-prompt {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.scroll-prompt span {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 245, 0.3);
}

.scroll-arrow {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--acid), transparent);
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* LATEST RELEASE */
.latest-release {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.release-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 70%, rgba(255, 184, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(205, 255, 0, 0.1) 0%, transparent 40%);
}

.release-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 100vh;
}

.release-artwork {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.artwork-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.artwork-main {
    width: 100%;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.artwork-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.artwork-wrapper:hover .artwork-main img {
    transform: scale(1.05);
}

.artwork-vinyl {
    position: absolute;
    top: 50%;
    right: -30%;
    width: 90%;
    aspect-ratio: 1;
    background:
        radial-gradient(circle at 50% 50%, var(--black) 15%, transparent 15.5%),
        radial-gradient(circle at 50% 50%, var(--black) 30%, #1a1a1a 31%),
        repeating-radial-gradient(circle at 50% 50%, #111 0px, #111 2px, #222 2px, #222 4px);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: spin 8s linear infinite;
    opacity: 0.8;
    z-index: -1;
}

@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

.artwork-sticker {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--acid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.artwork-sticker span {
    font-family: var(--font-display);
    font-size: 0.7rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.release-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    position: relative;
}

.release-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 100;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--acid);
    margin-bottom: 1rem;
}

.release-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 10rem);
    line-height: 0.9;
    margin-bottom: 1rem;
}

.release-title .outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
}

.release-meta {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
    color: rgba(255, 255, 245, 0.5);
    margin-bottom: 2rem;
}

.release-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 245, 0.7);
    max-width: 450px;
    margin-bottom: 3rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .release-content {
        grid-template-columns: 1fr;
    }

    .release-artwork {
        min-height: 60vh;
    }
}

@media (max-width: 768px) {
    .release-info {
        padding: 3rem 1.5rem;
    }
}
