/* Basic Reset & Variable Setup */
:root {
    --primary-bg: #ffffff;
    --primary-text: #000000;
    --accent-color: #ff003c;
    /* Cyberpunk Red/Crimson Accent */
    --accent-hover: #ff3366;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(0, 0, 0, 0.1);
    --neon-glow: 0 0 15px rgba(255, 0, 60, 0.6);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-bg);
    color: var(--primary-text);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
    height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Background Video Styling */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

#bg-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: saturate(1.2) contrast(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Brightened overlay so the background video shows as a light aesthetic, making the pure black text very visible */
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%), linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.9) 100%);
    z-index: -1;
}

/* Navigation System - Glassmorphism */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    z-index: 100;
    transition: var(--transition);
}

.top-nav.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.8rem 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
}

.logo-small {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    position: relative;
    z-index: 101;
}

.logo-small::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.logo-small:hover::after {
    width: 100%;
    box-shadow: var(--neon-glow);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-btn {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    z-index: -1;
}

.nav-btn:hover::before {
    left: 0;
}

/* About Dropdown Styling */
.nav-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-btn.has-dropdown {
    background: transparent;
    border: none;
    color: inherit;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-dropdown-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--primary-bg);
    min-width: 160px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 150;
    display: flex;
    flex-direction: column;
}

.nav-dropdown-wrapper:hover .nav-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-wrapper:hover .nav-dropdown-icon {
    transform: rotate(180deg);
}

.nav-dropdown-link {
    padding: 1rem;
    color: var(--primary-text);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    text-align: center;
}

.nav-dropdown-link:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--accent-color);
}

.nav-btn.soundcloud-btn:hover {
    color: #ff5500;
    text-shadow: 0 0 10px rgba(255, 85, 0, 0.3);
}

.nav-btn.bandcamp-btn:hover {
    color: #629aa9;
    text-shadow: 0 0 10px rgba(98, 154, 169, 0.3);
}



.nav-btn.contact-btn:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 0, 60, 0.3);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: var(--transition);
    transform-origin: left center;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    background-color: #fff;
    /* white on dark mobile menu */
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    background-color: #fff;
    /* white on dark mobile menu */
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    color: #fff;
    /* Keep mobile menu text white because background is distinctively dark here */
}

.mobile-nav-links .nav-btn {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: 3px;
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
}

.mobile-dropdown-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
}

.mobile-dropdown-content.open {
    max-height: 200px;
    margin-top: 1.5rem;
    opacity: 1;
}

.mobile-dropdown-link {
    font-size: 1.1rem;
    font-family: var(--font-main);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.mobile-dropdown-link:hover {
    color: #fff;
}

/* Photographer Section */
.photographer-section {
    padding: 6rem 2rem;
    background-color: transparent;
    display: flex;
    justify-content: center;
    width: 100%;
}

.photographer-section .releases-dropdown-container {
    width: 100%;
    max-width: 900px;
}

/* White Theme overrides for standard toggle button in Ushba page */
.ushba-page .release-subtitle.dropdown-toggle {
    color: #fff;
    border: 2px solid #fff;
}

.ushba-page .release-subtitle.dropdown-toggle:hover,
.ushba-page .release-subtitle.dropdown-toggle.active {
    background: #fff;
    color: #000;
}

/* Glassmorphism Bio Card */
.photographer-bio {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    align-items: center;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.photographer-img {
    width: 100%;
    max-width: 320px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    filter: brightness(0.9) contrast(1.1);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
}

.photographer-bio:hover .photographer-img {
    transform: scale(1.03);
    filter: brightness(1) contrast(1.2);
}

.photographer-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.photographer-name {
    color: #fff;
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    opacity: 0.9;
}

.photographer-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    font-family: var(--font-main);
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.photographer-text p {
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

.photographer-text p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    height: 1px;
    width: 10px;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.photographer-text p:hover {
    color: #fff;
}

.photographer-text p:hover::before {
    width: 15px;
    background: var(--accent-color);
}

@media screen and (max-width: 768px) {
    .photographer-bio {
        flex-direction: column;
        align-items: center;
        text-align: left;
        gap: 2.5rem;
        padding: 2rem;
    }

    .photographer-img {
        max-width: 100%;
        height: auto;
    }
}

/* Our Vision Section */
.vision-section {
    position: relative;
    padding: 8rem 2rem;
    color: #fff;
    z-index: 10;
    overflow: hidden;
    /* Ensure content stays above the blurred background */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Background Image with Blur */
.vision-section::before {
    content: '';
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: url('https://res.cloudinary.com/dqm1d4yua/image/upload/v1772475535/ushba_1_maypow.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px) brightness(0.4);
    /* Blur effect plus darkening */
    z-index: -1;
}

.vision-section .section-title {
    color: #fff;
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
    font-family: var(--font-main);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    text-align: justify;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    /* Puts text definitively above image */
}

.vision-content p {
    color: rgba(255, 255, 255, 0.95);
}

@media screen and (max-width: 768px) {
    .vision-section {
        padding: 5rem 1.5rem;
    }

    .vision-content {
        text-align: left;
        /* Better for mobile readability */
    }
}

/* Contact Us Section */
.contact-section {
    position: relative;
    padding: 6rem 2rem;
    background-color: var(--primary-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.contact-title {
    color: #000;
    margin-bottom: 2rem;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    font-family: var(--font-main);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: rgba(0, 0, 0, 0.8);
}

.contact-email {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #000;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 1rem;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.contact-email::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.contact-email:hover {
    color: var(--accent-color);
}

.contact-email:hover::after {
    width: 100%;
}

/* Hero Section (Main Page) */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
}

.hero-content {
    padding: 2rem;
    animation: fadeIn 1.5s ease-out forwards;
    color: #000;
}

.main-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1;
    margin-bottom: 1rem;
    color: transparent;
    -webkit-text-stroke: 1px #000;
    position: relative;
    display: inline-block;
}

.main-title::before {
    content: 'USHBA Rec.';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: #000;
    -webkit-text-stroke: 0px transparent;
    overflow: hidden;
    animation: textFill 2s cubic-bezier(0.86, 0, 0.07, 1) 1s forwards;
    white-space: nowrap;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 8px;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideUp 1s ease-out 2.5s forwards;
}

.hero-actions {
    opacity: 0;
    animation: slideUp 1s ease-out 3s forwards;
}

.primary-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #000;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid #000;
    border-radius: 0;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.primary-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #000;
    z-index: -1;
    transition: var(--transition);
}

.primary-btn:hover {
    color: #fff;
}

.primary-btn:hover::after {
    height: 100%;
}

/* Animations */
@keyframes textFill {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsiveness */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .main-title {
        font-size: clamp(2.5rem, 12vw, 4.5rem);
        -webkit-text-stroke: 1px rgba(0, 0, 0, 0.7);
        white-space: nowrap;
    }

    .subtitle {
        letter-spacing: 4px;
        font-size: 1rem;
    }
}

.releases-section {
    position: relative;
    padding: 6rem 2rem 0;
    /* Removed bottom padding */
    background-color: var(--primary-bg);
    /* Opaque background to hide video when scrolled down */
    z-index: 10;
    min-height: 100vh;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    color: var(--primary-text);

}

.releases-dropdown-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.release-subtitle.dropdown-toggle {
    font-family: var(--font-main);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: #000;
    background: transparent;
    border: 2px solid #000;
    padding: 1rem 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 1rem;
    transition: var(--transition);
}

.release-subtitle.dropdown-toggle:hover,
.release-subtitle.dropdown-toggle.active {
    background: #000;
    color: #fff;
}

.dropdown-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.dropdown-toggle.active .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    width: 100%;
}

.dropdown-content.open {
    max-height: 2000px;
    /* arbitrary large number to allow content */
    transition: max-height 0.8s ease-in-out;
}

#ushba001-content.open {
    margin-bottom: 2rem;
}

.releases-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.release-item {
    background: rgba(0, 0, 0, 0.02);
    /* Slight contrast */
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

#ushba002-content {
    width: 100vw;
    background: #000;
}

.ushba002-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.coming-soon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    gap: 2rem;
    background: #000;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    border-left: none;
    border-right: none;
    box-shadow: none;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
}

.coming-soon-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
    /* Keep the image circular as requested */
}

.coming-soon-text {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    letter-spacing: 4px;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}

/* ================================= */
/* MOUNT USHBA PAGE (AWWWARDS STYLE) */
/* ================================= */

.ushba-page {
    background-color: #050505;
    color: #fff;
    overflow-x: hidden;
}

.ushba-page .top-nav {
    border-bottom: 1px solid transparent;
}

.ushba-page .top-nav.scrolled {
    background: #fff;
    border-bottom: 1px solid var(--glass-border);
}

.ushba-page .top-nav.scrolled .logo-small,
.ushba-page .top-nav.scrolled .nav-btn,
.ushba-page .top-nav.scrolled .nav-dropdown-icon {
    color: #000;
}

.ushba-page .top-nav:not(.scrolled) .logo-small,
.ushba-page .top-nav:not(.scrolled) .nav-btn,
.ushba-page .top-nav:not(.scrolled) .nav-dropdown-icon {
    color: #fff;
}

.ushba-page .top-nav:not(.scrolled) .logo-small::after {
    background-color: #fff;
}

.ushba-page .top-nav.scrolled .logo-small::after {
    background-color: var(--accent-color);
}

.ushba-page .nav-dropdown-link {
    color: var(--primary-text);
}

.ushba-page .top-nav:not(.scrolled) .mobile-toggle span {
    background-color: #fff;
}

.ushba-page .top-nav.scrolled .mobile-toggle span {
    background-color: #000;
}

/* Ushba Hero */
.ushba-hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
}

.ushba-hero-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    filter: brightness(0.6);
    transform: translateY(0);
}

.ushba-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.ushba-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeInSlideUp 1.5s ease-out forwards;
}

.ushba-title::before {
    display: none;
}

.ushba-subtitle {
    font-family: var(--font-main);
    font-size: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    animation: fadeInSlideUp 1.5s ease-out 0.5s forwards;
    text-transform: uppercase;
    margin-bottom: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: fadeInSlideUp 1s ease-out 1.5s forwards;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ushba Narrative Grid */
.ushba-narrative {
    position: relative;
    z-index: 5;
    background-color: #050505;
    padding: 8rem 0;
}

.narr-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    /* Give more space to images so text isn't cut off */
    gap: 4rem;
    align-items: start;
    /* Align to top to prevent stretching */
}

.sticky-block {
    position: sticky;
    top: 150px;
    height: max-content;
    /* Added padding/box-sizing to ensure content fits within boundaries */
    padding-right: 20px;
}

.narr-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #fff;
}

.narr-paragraph {
    font-family: var(--font-main);
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.key-facts-card {
    margin-top: 14rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    width: 100%;
    /* Ensure it does not overflow */
    box-sizing: border-box;
    overflow-wrap: break-word;
    /* Allow text to wrap if it's too long */
}

.key-facts-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.key-facts-card ul {
    list-style: none;
    padding: 0;
}

.key-facts-card li {
    font-size: clamp(0.9rem, 1vw, 1.1rem);
    /* Make font slightly responsive */
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    /* Prevent text overlap */
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 0.8rem;
}

.key-facts-card li strong {
    color: #fff;
    min-width: 120px;
    /* Give label a minimum width */
}

.narr-image-stack {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    width: 100%;
    /* Important to keep images constrained */
    overflow: hidden;
    /* Hide horizontal overflow on the scroll track */
}

.image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    transform: translateY(50px);
    opacity: 0;
    transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.image-wrapper.in-view {
    transform: translateY(0);
    opacity: 1;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.05);
    transition: transform 1.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1);
}

.photo-credit {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-family: var(--font-main);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    z-index: 10;
}

.narr-text-mobile {
    display: none;
}

@media screen and (min-width: 900px) {
    .narr-text-mobile {
        display: block;
        padding: 3rem 0;
    }
}

@media screen and (max-width: 899px) {
    .narr-container {
        grid-template-columns: 1fr;
    }

    .sticky-block {
        position: relative;
        top: 0;
        margin-bottom: 3rem;
    }

    .narr-text-mobile {
        display: block;
        margin-top: -2rem;
    }

    .narr-image-stack {
        gap: 3rem;
    }
}

/* Footer spacer */
.ushba-footer {
    padding: 8rem 2rem;
    text-align: center;
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ushba-footer h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    color: #fff;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.btn-light {
    border-color: #fff;
    color: #fff;
}

.btn-light::after {
    background-color: #fff;
}

.btn-light:hover {
    color: #000;
}

/* Tribute Section */
.tribute-section {
    padding: 1.5rem 2rem;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
    position: relative;
}

.tribute-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.tribute-text {
    font-family: 'Waterfall', cursive;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #fff;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 2px;
    margin: 0;
}

.tribute-name-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tribute-name-trigger {
    font-family: 'Waterfall', cursive;
    font-size: clamp(2.2rem, 5vw, 3.1rem);
    color: #fff;
    font-weight: 400;
    line-height: 0.8;
    letter-spacing: 2px;
    padding: 0.2rem 3rem;
    height: 3rem;
    border: 1px solid transparent;
    background: transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tribute-dropdown-icon {
    font-family: var(--font-main);
    font-size: clamp(0.5rem, 0.8vw, 0.7rem);
    transition: transform 0.3s ease;
    position: absolute;
    right: 1rem;
}

.tribute-name-wrapper.active .tribute-dropdown-icon {
    transform: rotate(180deg);
}

.tribute-name-wrapper.active .tribute-name-trigger,
.tribute-name-trigger:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
}

.tribute-name-dropdown {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    width: 800px;
    max-width: 90vw;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0 2rem;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    margin-top: 0;
}

.tribute-name-wrapper.active .tribute-name-dropdown {
    opacity: 1;
    max-height: 1500px;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    padding: 2rem;
    margin-top: 1.5rem;
}

.tribute-bio-card {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

.tribute-img {
    width: 250px;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    filter: brightness(0.9) contrast(1.1);
    transition: transform 0.5s ease;
}

.tribute-name-wrapper:hover .tribute-img {
    transform: scale(1.02);
}

.tribute-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    text-align: left;
}

.tribute-text-content p {
    position: relative;
    padding-left: 1.2rem;
    transition: all 0.3s ease;
    margin: 0;
}

.tribute-text-content p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    height: 1px;
    width: 8px;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.tribute-text-content p:hover {
    color: #fff;
}

.tribute-text-content p:hover::before {
    width: 12px;
    background: var(--accent-color);
}

@media screen and (max-width: 768px) {
    .tribute-bio-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .tribute-img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .tribute-text-content {
        text-align: left;
    }
}

/* Main Footer (Index Page) */
.main-footer {
    padding: 3rem 2rem;
    text-align: center;
    background-color: var(--primary-bg);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 10;
    position: relative;
}

.main-footer .footer-content p {
    font-family: var(--font-main);
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}