/* header::after {
    content: "This site is under development";
    display: inline-block;
    position: fixed;
    top: 10px;
    left: 10px;
    color: red;
    font-family: monospace, 'Courier New', Courier, monospace;
    font-size: 16px;
    z-index: 9999;
} */

/**
* @license
*
* Font Family: Panchang
* Designed by: Barbara Bigosinska, Hitesh Malaviya
* URL: https://www.fontshare.com/fonts/panchang
* © 2026 Indian Type Foundry
*
* Panchang Extralight 
* Panchang Light 
* Panchang Regular 
* Panchang Medium 
* Panchang Semibold 
* Panchang Bold 
* Panchang Extrabold 
* Panchang Variable (Variable font)

*
*/
/* Variable Font Support (Weights 200-800) */
@font-face {
    font-family: 'Panchang';
    src: url('fonts/Panchang-Variable.woff2') format('woff2'),
        url('fonts/Panchang-Variable.woff') format('woff'),
        url('fonts/Panchang-Variable.ttf') format('truetype');
    font-weight: 200 800;
    font-display: swap;
    font-style: normal;
}

/*  */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --f-main: 'Panchang', sans-serif;

    --bg: #000000;
    --tx: #fafafa;
    --tx2: #606060;
    --cf: #c800e2;

    --padding-side: 50px;
    --padding-top: 34px;
}

::selection {
    background: #c800e2c4;
    color: var(--tx);
}

@media (max-width: 768px) {
    :root {
        --padding-side: 20px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 16px;
    height: 16px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cf);
}

/* Firefox */
* {
    scrollbar-color: rgba(255, 255, 255, 0.15) var(--bg);
}

body {
    background-color: var(--bg);
    color: var(--tx);
    font-family: var(--f-main);
    font-size: 16px;
    /* cursor: crosshair; */
    /* cursor: url('assets/zoobiana-cursor.svg'), auto; */
    /* cursor: url('assets/temp/those-that-inspire.png'), auto; */
}

#smooth-content {
    /* min-height: 1400vh; */
    background-image: url(assets/particle-texture.avif);
    background-repeat: repeat;
    background-size: 100vw;
    overflow-x: hidden;
}

/*  */

/* .visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
} */

/* img, svg, video {
  pointer-events: none;
  user-select: none;
} */

a {
    color: inherit;
    text-decoration: none;
    /* transition: 140ms color ease; */
}

/* a:hover {
    color: var(--cf);
} */

/* button {
  border: none;
  background-color: transparent;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
} */

/* h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
} */

/* .cf {
  color: var(--cf);
} */

.tx2 {
    color: var(--tx2);
}

.text-stroke {
    -webkit-text-stroke: 1.5px var(--tx);
    color: var(--bg);
    paint-order: stroke fill;
}

.clickable-card {
    cursor: pointer;
}

/*  */

header {
    position: fixed;
    padding: 34px var(--padding-side);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    top: 0;
    left: 0;
    overflow: visible;
    z-index: 9990;
    pointer-events: none;
    user-select: none;
    mix-blend-mode: difference;
}

header * {
    pointer-events: auto;
    user-select: auto;
}

header>a {
    display: inline-block;
}

.header-logo {
    height: 42px;
    width: auto;
    transition: scale 0.2s ease, filter 0.2s ease;
}

.header-logo:hover {
    filter: brightness(.8);
    scale: .97;
}

.header-logo:active {
    scale: .9;
}

.header-lens-flare {
    position: absolute;
    z-index: -999;
    pointer-events: none;
    user-select: none;
    mix-blend-mode: normal;
}

.header-lens-flare-1 {
    left: -4px;
    top: -4px;
    max-width: 90vw;
}

.header-lens-flare-2 {
    right: -4px;
    transform: translateX(20%);
    top: -4px;
}

/*  */

.section {
    padding: 0 var(--padding-side);
}

/*  */

.heading {
    font-size: clamp(22px, 10vw, 100px);
    display: block;
    width: fit-content;
}

.heading>span:first-of-type {
    display: inline-block;
    z-index: -1;
    position: relative;
    transform: translateY(.5em);
}

/*  */

.footer {
    position: relative;
    margin-top: 100px;
    padding: 0 var(--padding-side) 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
    padding-top: 50px;
    margin-bottom: 50px;
    mix-blend-mode: difference;
}

.footer-zoobiana-plain-text-img {
    display: block;
    width: 100%;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.05));
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    margin-bottom: 120px;
    mix-blend-mode: difference;
}

.footer-label {
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.4em;
    color: var(--tx2);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-label::after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.1);
}

.footer-col-social nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 40px;
    max-width: 500px;
}

.footer-col-social nav a {
    text-transform: uppercase;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--tx2);
    transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-col-social nav a:hover {
    color: var(--cf);
    font-weight: 700;
    transform: skewX(-10deg) translateX(5px);
}

.footer-col-info {
    max-width: 100%;
}

.footer-info-text {
    max-width: 400px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--tx2);
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 0.01em;
}

.footer-cta-mail {
    font-size: clamp(10px, 4.42vw, 32px);
    letter-spacing: -0.03em;
    transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-block;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 8px;
}

.footer-cta-mail:hover {
    color: var(--cf);
    font-weight: 600;
    border-bottom-color: var(--cf);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 60px;
    mix-blend-mode: difference;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-copyright {
    font-size: 11px;
    font-weight: 600;
    color: var(--tx2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-studio {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--tx2);
}

.footer-studio a {
    color: var(--tx);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-studio a:hover {
    color: var(--cf);
}

.footer-role-text-container {
    display: flex;
    gap: 25px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--tx2);
}

.footer-role-text-container span::before {
    content: "/";
    margin-right: 25px;
}

.footer-role-text-container span:first-child::before {
    display: none;
}

.footer-lens-flare-3 {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 800px;
    height: auto;
    z-index: -999;
    pointer-events: none;
    opacity: 0.3;
    filter: blur(40px);
}

@media (max-width: 1024px) {
    .footer-content {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .footer {
        margin-top: 60px;
        padding-bottom: 40px;
    }

    .footer-top {
        padding-top: 80px;
        margin-bottom: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 80px;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 30px;
        padding-top: 40px;
    }

    .footer-bottom-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-role-text-container {
        flex-wrap: wrap;
        gap: 10px 20px;
    }

    .footer-role-text-container span::before {
        margin-right: 20px;
    }

    .footer-col-social nav {
        flex-direction: column;
        gap: .5em;
    }

    .footer-cta-mail {
        border-bottom: none;
    }
}

/* Dropdown Menu Styling */
.dropdown-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    z-index: 9980;
    display: none;
    /* Controlled by GSAP */
    opacity: 0;
    justify-content: flex-end;
    align-items: flex-start;
    padding: clamp(60px, 12vh, 100px) var(--padding-side) 20px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.dropdown-menu::-webkit-scrollbar {
    display: none;
}

.dropdown-card {
    background-color: #f2f2f0;
    /* Premium off-white */
    color: #1a1a1a;
    width: 100%;
    max-width: 440px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    transform-origin: top right;
    display: flex;
    flex-direction: column;
    max-height: calc(100dvh - clamp(60px, 12vh, 100px) - 20px);
}

/* .dropdown-card::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(assets/paper-texture.avif);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    mix-blend-mode: difference;
    pointer-events: none;
    user-select: none;
} */

.dropdown-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.1em;
    font-weight: 600;
    flex-shrink: 0;
}

.dropdown-list {
    padding: 10px 0;
    overflow-y: auto;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
}

.dropdown-list::-webkit-scrollbar {
    width: 4px;
}

.dropdown-list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease, scale 0.2s ease;
    text-transform: uppercase;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.08);
}

.dropdown-item:active {
    scale: .98 !important;
}

.dropdown-item-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dropdown-item-tag {
    font-size: 11px;
    padding: 4px 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    color: #888;
}

.dropdown-item-title {
    font-size: 18px;
    font-weight: 600;
}

.dropdown-arrow {
    width: 20px;
    height: 20px;
    opacity: 0.4;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.dropdown-item:hover .dropdown-arrow {
    transform: translateX(5px);
    opacity: 1;
}

.dropdown-footer {
    padding: 24px;
    background-color: #fcfcfb;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.dropdown-cta {
    display: block;
    width: 100%;
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 18px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.dropdown-cta:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.dropdown-footer-links {
    display: flex;
    gap: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.dropdown-footer-links a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.dropdown-footer-links a:hover {
    color: #000;
    text-decoration: underline;
    transform: translateX(8px);
}

.dropdown-cta:active {
    transform: scale(.98);
}

/* Very Small Screen / Full Screen Takeover */
@media (max-width: 500px) {
    .dropdown-menu {
        padding: 0;
    }

    .dropdown-card {
        max-width: 100% !important;
        width: 100% !important;
        height: 100dvh !important;
        max-height: 100dvh !important;
        border-radius: 0 !important;
    }

    .dropdown-header {
        padding-top: 100px;
        /* Clear the header logo/btn area */
    }

    .dropdown-list {
        padding-bottom: 40px;
        /* Extra breathing space at bottom of scroll */
    }
}

/* Ensure menu button stands out when open */
.header-menu-btn {
    transition: color 0.3s ease, font-weight 0.3s ease, scale 0.3s ease;
}

.header-menu-btn:hover {
    color: var(--cf);
    font-weight: 500;
}

body:has(.dropdown-menu[style*="display: flex"]) .header-menu-btn {
    color: var(--tx);
    /* mix-blend-mode: difference; */
}


.header-menu-btn:active {
    scale: .9;
}

.chrome-effect-img {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -999;
    mix-blend-mode: screen;
    transform: translate(30%, -12%) rotate(-20deg);
    user-select: none;
    pointer-events: none;
}

.footer .chrome-effect-img {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(10%, 52%) rotate(60deg);
}

/* Floating Fullscreen Button Styling */
/* .floating-fullscreen-btn {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: unset;
    border: unset;
    color: var(--tx);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-fullscreen-btn:hover {
    transform: scale(1.1);
    color: var(--cf);
}

.floating-fullscreen-btn:active {
    transform: scale(0.9);
}

.fullscreen-icon {
    width: 16px;
    height: 16px;
} */

@media (max-width: 860px) {
    body {
        font-size: 14px;
    }
}

/* @media (max-width: 768px) {
    .floating-fullscreen-btn {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .fullscreen-icon {
        width: 18px;
        height: 18px;
    }
} */
@media (max-width: 768px) {
    .footer-role-text-container {
        display: none;
    }

    .footer-top {
        padding-top: 50px;
        margin-bottom: 50px !important;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-content {
        gap: 40px;
        margin-bottom: 20px;
    }

    .footer-label {
        margin-bottom: 10px;
    }
}

@media (max-width: 560px) {
    .footer-col-social nav a {
        font-size: inherit;
        font-weight: 500;
    }
}

@media (max-width: 400px) {
    .heading {
        font-size: 10vw;
    }
}

/* ============================================
   INLINE ITEM TAGS (shared — blog, gallery, mixtape)
   ============================================ */

.item-tags,
.blog-card-tags,
.gallery-project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
    text-transform: lowercase;
}

.item-tag,
.blog-card-tag,
.gallery-project-tag {
    font-size: 12px;
    color: var(--tx2, rgba(255, 255, 255, 0.45));
    line-height: 1;
    letter-spacing: 0.03em;
}

.audio-tile .item-tag {
    text-align: center;
    width: 100%;
}

/* ============================================
   TAG / HASHTAG FILTER BAR (shared)
   ============================================ */

.tag-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 var(--padding-side, 40px) 40px;
    align-items: center;
}

.tag-filter-bar::before {
    content: '#Tags / Filters';
    position: relative;
    display: block;
    font-size: 12px;
    margin-top: 20px;
    margin-bottom: 4px;
    width: 100%;
    
}

.audio-section .tag-filter-bar {
    padding: 0;
    margin-top: 30px;
}

.tag-filter-bar.is-empty {
    display: none;
}

.tag-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 7px 16px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: var(--tx2, rgba(255, 255, 255, 0.5));
    font-family: inherit;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: lowercase;
    cursor: pointer;
    transition: all 0.22s ease;
    white-space: nowrap;
    user-select: none;
}
.tag-filter-chip:first-of-type {
    text-transform: capitalize;
}

.tag-filter-chip::before {
    content: '#';
    opacity: 0.6;
    font-size: 11px;
}

.tag-filter-chip:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--tx, #fff);
    transform: translateY(-1px);
}

.tag-filter-chip.active {
    background: var(--tx, #fff);
    color: var(--bg, #0a0a0a);
    border-color: var(--tx, #fff);
    font-weight: 600;
}

.tag-filter-chip.all-chip::before {
    content: '';
}

/* Empty state notice per-section (Mixtape) */
.tag-empty-notice {
    display: none;
    width: 100%;
    padding: 40px 20px;
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin: 16px 0;
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tag-empty-notice.visible {
    display: block;
}

@media (max-width: 600px) {
    .tag-filter-bar {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .tag-filter-bar::-webkit-scrollbar {
        display: none;
    }
}