﻿
.nav__logo-text {
    color: var(--cream);
}

.nav__links a {
    color: var(--cream);
}

.nav.is-scrolled .nav__logo-text {
    color: var(--dark);
}

.nav.is-scrolled .nav__links a {
    color: var(--dark);
}

.nav.is-scrolled .nav__links li.is-active a {
    color: var(--gold);
    font-weight: 500;
}

.nav__links li.is-active a {
    color: var(--gold);
    font-weight: 500;
}

.nav__links a:hover {
    opacity: 0.6;
}

.nav__cta {
    color: #fff;
    background: var(--dark);
}

    .nav__cta:hover {
        background: #2e1f06;
        transform: scale(0.98);
    }

    .nav__cta svg {
        width: 13px;
        height: 13px;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.nav__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 110;
    opacity: 0;
    animation: fadeDown 0.8s 0.3s var(--ease) forwards;
}

    .nav__burger span {
        display: block;
        width: 22px;
        height: 1.5px;
        background: var(--cream);
        transition: transform 0.3s var(--ease), opacity 0.3s;
        transform-origin: center;
    }

.nav.is-scrolled .nav__burger span {
    background: var(--dark);
}

.nav__burger.is-open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav__burger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav__burger.is-open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Mobile drawer ── */
.nav__drawer {
    position: fixed;
    inset: 0;
    background: rgba(26,18,8,0.97);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
}

    .nav__drawer.is-open {
        opacity: 1;
        visibility: visible;
    }

.nav__drawer-close {
    position: absolute;
    top: 1.375rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(245,237,216,0.08);
    border: 1px solid rgba(245,237,216,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

    .nav__drawer-close:hover {
        background: rgba(245,237,216,0.16);
    }

    .nav__drawer-close svg {
        width: 16px;
        height: 16px;
        stroke: var(--cream);
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.nav__drawer a {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 8vw, 2.75rem);
    font-weight: 300;
    color: var(--cream);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}

    .nav__drawer a:hover {
        color: var(--gold-light);
    }

.nav__drawer .drawer-cta {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--dark);
    background: var(--cream);
    border-radius: 9999px;
    padding: 0.75rem 2rem;
    margin-top: 0.5rem;
    transition: background 0.2s;
}

    .nav__drawer .drawer-cta:hover {
        background: var(--gold-light);
    }

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-16px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(16px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ── Desktop breakpoints (nav) ── */
@media (min-width: 768px) {
    .nav {
        height: 80px;
    }

    .nav__links {
        display: flex;
    }

    .nav__cta {
        display: flex;
    }

    .nav__burger {
        display: none;
    }

    .nav__drawer-close {
        top: 1.75rem;
        right: 3rem;
    }
}

@media (min-width: 1280px) {
    .nav__drawer-close {
        right: 4rem;
    }
}
/* ════════════════════════════════════════════
       SCROLL-REVEAL SYSTEM (shared)
    ════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-img {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

    .reveal-img.is-visible {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

.reveal-d1 {
    transition-delay: 0.12s;
}

.reveal-d2 {
    transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-img {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ════════════════════════════════════════════
       MUSIC HERO — "Watch."
    ════════════════════════════════════════════ */
.musichero {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    padding: 7.5rem 0 4rem;
}

    /* soft warm glow, top-right */
    .musichero::before {
        content: '';
        position: absolute;
        top: -10%;
        right: -10%;
        width: 55%;
        height: 70%;
        background: radial-gradient(ellipse, rgba(200,151,58,0.2) 0%, transparent 70%);
        pointer-events: none;
    }

.musichero__title {
    font-family: "Satoshi";
    position: relative;
    z-index: 1;
    font-weight: 600;
    font-size: clamp(2rem, 8vw, 4rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--cream);
    margin-bottom: 2rem;
}

.musichero__card {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 34 / 52;
    background: #000;
    cursor: pointer;
}

    .musichero__card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: grayscale(45%) contrast(1.05);
        transition: transform 0.6s ease;
    }

    .musichero__card:hover img {
        transform: scale(1.03);
    }

.musichero__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.1) 45%, rgba(0,0,0,0.15) 100%);
    pointer-events: none;
}

.musichero__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    border-radius: 12px;
    background: #E1261C;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.2s ease, background 0.2s ease;
}

    .musichero__play:hover {
        transform: translate(-50%, -50%) scale(1.08);
        background: #c81f16;
    }

    .musichero__play svg {
        width: 22px;
        height: 22px;
        fill: #fff;
        margin-left: 3px;
    }

.musichero__badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--gold-light);
    color: #4a3410;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border-radius: 9999px;
}

.musichero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4a3410;
    flex-shrink: 0;
}

.musichero__content {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 2;
}

    .musichero__content h2 {
        font-weight: 600;
        font-size: clamp(1.5rem, 4.5vw, 2.1rem);
        color: var(--cream);
        margin-bottom: 0.5rem;
    }

    .musichero__content p {
        font-size: 0.9rem;
        line-height: 1.5;
        color: rgba(245,237,216,0.8);
        max-width: 460px;
        margin-bottom: 0.6rem;
    }

.musichero__meta {
    font-size: 0.8rem;
    color: rgba(245,237,216,0.55);
}

@media (min-width: 768px) {
    .musichero {
        padding: 9.5rem 0 5.5rem;
    }

    .musichero__card {
        aspect-ratio: 12 / 5;
    }

    .musichero__play {
        width: 66px;
        height: 66px;
        border-radius: 14px;
    }

        .musichero__play svg {
            width: 25px;
            height: 25px;
        }

    .musichero__badge {
        top: 1.5rem;
        left: 1.5rem;
    }

    .musichero__content {
        left: 1.5rem;
        right: 1.5rem;
        bottom: 1.5rem;
    }
}

@media (min-width: 1280px) {
    .musichero {
        padding: 10.5rem 0 6.5rem;
    }
}

/* ════════════════════════════════════════════
       DISCOGRAPHY — album + video list
    ════════════════════════════════════════════ */
.discog {
    background: var(--bodybg);
    padding: 3rem 0 5rem;
}

.discog__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

/* ── Album card ── */
.discog__album {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 4.6;
    background: #14100a;
}

    .discog__album img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.discog__album-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,10,4,0.15) 0%, rgba(15,10,4,0.35) 55%, rgba(15,10,4,0.85) 100%);
}

.discog__album-content {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
}

.discog__album-title {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.6rem, 8vw, 3.4rem);
    line-height: 1;
    color: var(--gold-light);
    margin-bottom: 0.15rem;
}

.discog__album-artist {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1.15rem;
    color: rgba(245,237,216,0.85);
    margin-bottom: 0.9rem;
}

.discog__album-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(245,237,216,0.55);
    padding-top: 0.75rem;
    border-top: 1px solid rgba(245,237,216,0.2);
}

/* ── Video list ── */
.discog__videos {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.video-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    cursor: pointer;
}

.video-row__thumb {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 16 / 10;
    max-height:300px;
    border-radius: 10px;
    overflow: hidden;
    background: #14100a;
}

    .video-row__thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

.video-row:hover .video-row__thumb img {
    transform: scale(1.06);
}

.video-row__badge {
    position: absolute;
    top: 0.4rem;
    left: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(20,16,10,0.55);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.18rem 0.4rem;
    border-radius: 4px;
    z-index: 2;
}

    .video-row__badge.is-live {
        background: #1DB954;
    }

.video-row__badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
}

.video-row__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #E1261C;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.2s ease, background 0.2s ease;
    border:none;
}

.video-row:hover .video-row__play {
    transform: translate(-50%, -50%) scale(1.08);
    background: #c81f16;
}

.video-row__play svg {
    width: 13px;
    height: 13px;
    fill: #fff;
    margin-left: 1px;
}

.video-row__body {
    flex: 1;
    min-width: 0;
    padding-top: 0.15rem;
}

.video-row__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.35;
    color: var(--dark);
    margin-bottom: 0.3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-row__meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    color: rgba(26,18,8,0.45);
}

/* iframe replaces thumb contents on click */
.video-row__thumb iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ── Responsive ── */
@media (min-width: 768px) {
    .discog {
        padding: 3.5rem 0 6rem;
    }

    .discog__grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 2.5rem;
        align-items: start;
    }

    .discog__album {
        aspect-ratio: 2/1.8;
    }

    .video-row__title {
        font-size: 0.95rem;
    }

    .album-rigth-side {
        position: sticky;
        top: 100px;
    }

    .album-rigth-side .video-row__thumb {
        position: relative;
        flex: 0 0 auto;
        width: 100%;
        aspect-ratio: 16 / 10;
         max-height: 400px; 
        border-radius: 10px;
        overflow: hidden;
        background: #14100a;
    }
}

@media (min-width: 1280px) {
    .discog {
        padding: 4rem 0 7rem;
    }

    .discog__grid {
        gap: 3.5rem;
    }
}




