/* -------------------------------------------------------------
   TEJAS RAJPUT - PORTFOLIO STYLESHEET
   ------------------------------------------------------------- */

.founder-portfolio-page {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* 1. HEADER & NAVIGATION SYNC */
.header.scrolled {
    --header-bg: var(--bg-header-scrolled);
    --header-border: var(--border-color-medium);
}

/* 2. HERO SECTION & CINEMATIC INTRO */
.founder-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: #030508; /* Deep black cinematic background */
}

.founder-hero .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(3, 5, 8, 0.4) 0%, rgba(3, 5, 8, 0.98) 90%);
    z-index: 1;
}

/* Canvas overlay for flying musical notes */
.hero-notes-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Cinematic Logo Intro Overlay */
.intro-logo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #030508;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100; /* Higher than canvas and other content */
    pointer-events: none;
    animation: fadeOutOverlay 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 2.2s;
}

.intro-logo-img {
    width: 220px;
    height: auto;
    opacity: 0;
    transform: scale(0.7);
    filter: drop-shadow(0 0 10px rgba(230, 193, 92, 0.1));
    animation: logoIntro 2.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes logoIntro {
    0% {
        opacity: 0;
        transform: scale(0.6) rotate(-3deg);
        filter: drop-shadow(0 0 5px rgba(230, 193, 92, 0)) brightness(0.5);
    }
    25% {
        opacity: 1;
        transform: scale(1.03) rotate(0deg);
        filter: drop-shadow(0 0 25px rgba(230, 193, 92, 0.6)) brightness(1.3);
    }
    40% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(230, 193, 92, 0.4)) brightness(1.0);
    }
    55% {
        filter: drop-shadow(0 0 35px rgba(230, 193, 92, 0.8)) brightness(1.6);
    }
    70% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: drop-shadow(0 0 20px rgba(230, 193, 92, 0.5)) brightness(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(0.85) translateY(-50px);
        filter: drop-shadow(0 0 5px rgba(230, 193, 92, 0)) brightness(0.5);
    }
}

@keyframes fadeOutOverlay {
    0% {
        opacity: 1;
        background-color: #030508;
    }
    100% {
        opacity: 0;
        background-color: transparent;
        visibility: hidden;
    }
}

/* Orbiting Background Rings (from user screenshot) */
.hero-orbit-container {
    position: absolute;
    width: 82vw;
    height: 82vw;
    max-width: 780px;
    max-height: 780px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.hero-orbit-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px dashed rgba(230, 193, 92, 0.15);
    border-radius: 50%;
    animation: slowOrbitSpin 60s linear infinite;
}

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

.hero-orbit-card {
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 20, 31, 0.6);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(230, 193, 92, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    filter: blur(5px) brightness(0.5) contrast(0.9); /* Cinematic blur depth of field */
    opacity: 0.55;
    transition: filter 0.8s ease, opacity 0.8s ease;
    animation: floatBackdropCard 8s ease-in-out infinite alternate;
}

.orbit-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    z-index: 0;
}

.orbit-card-title {
    position: relative;
    z-index: 1;
    font-family: var(--font-serif-header);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    font-weight: 600;
}

/* Coordinates matching layout from screenshot */
.orbit-dance {
    top: 5%;
    left: 40%;
    border-color: rgba(230, 193, 92, 0.25);
    animation-delay: 0s;
}

.orbit-keyboard {
    top: 45%;
    left: 78%;
    animation-delay: -2s;
}

.orbit-djembe {
    top: 70%;
    left: 10%;
    animation-delay: -4s;
}

@keyframes floatBackdropCard {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-12px) scale(0.97); }
}

/* Hero Content */
.founder-hero-content {
    position: relative;
    z-index: 3;
    padding: 0 2rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Movie Intro Letter-by-Letter Reveal Styles */
.founder-title {
    font-family: var(--font-serif-header);
    font-size: 5.8rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 25px 0 15px;
    line-height: 1.1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-shadow: 0 0 35px rgba(255, 255, 255, 0.12), 0 10px 30px rgba(0, 0, 0, 0.9);
}

.char {
    display: inline-block;
    opacity: 0;
    transform: scale(1.3) translateY(-15px);
    filter: blur(12px);
    animation: cinematicReveal 1.6s cubic-bezier(0.1, 0.8, 0.25, 1) forwards;
    will-change: transform, opacity, filter;
}

/* Staggered word gaps */
.char.space-gap {
    width: 2rem;
}

@keyframes cinematicReveal {
    0% {
        opacity: 0;
        filter: blur(16px);
        transform: scale(1.4) translateY(-25px);
    }
    30% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: scale(1) translateY(0);
    }
}

/* Title golden light sheen */
.founder-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 193, 92, 0.15), transparent);
    transform: skewX(-25deg);
    animation: movieTitleGlint 4.5s ease-in-out infinite;
    animation-delay: 2.5s;
    pointer-events: none;
}

@keyframes movieTitleGlint {
    0% { left: -100%; }
    50%, 100% { left: 150%; }
}

.founder-subtitle {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 5px;
    color: var(--gold-primary);
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(15px);
    animation: slideUpFade 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 3.5s; /* Subtitle starts after title reveal finishes */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-cta-buttons {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(15px);
    animation: slideUpFade 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 3.9s; /* Buttons enter last */
}

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

/* 3. ABOUT SECTION & LAYOUTS */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-pic-container {
    position: relative;
    justify-self: center;
    width: 100%;
    max-width: 440px; /* Centered, same size as portrait frame */
    margin: 0 auto;
    opacity: 0;
    transform: translateX(-35px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, opacity;
}

.revealed .about-pic-container {
    opacity: 1;
    transform: translateX(0);
}

.image-frame-gold {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 120%; /* 4:5 Aspect Ratio */
    background: rgba(255, 255, 255, 0.03); /* Soft glass background */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Clean white glass edge */
    border-radius: 12px; /* Rounded corners for clean look */
    overflow: hidden;
    /* Soft premium ambient drop-shadow */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
    /* Force GPU composition layer to fix overflow: hidden masking rendering glitches on transitions */
    transform: translate3d(0, 0, 0);
    isolation: isolate;
    /* Force rounded corners clipping on Blink/WebKit engines during accelerated transitions */
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
}

/* Pristine glass pane overlay on top of the slideshow images */
.image-frame-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.15); /* Clean glass border on top */
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 12px 24px rgba(255, 255, 255, 0.05); /* Soft inner glass highlights */
    pointer-events: none;
    z-index: 3; /* Above the image layers */
    border-radius: inherit;
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.about-pic-container:hover .image-frame-gold {
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.75);
}

.about-pic-container:hover .image-frame-gold::after {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15), inset 0 12px 30px rgba(255, 255, 255, 0.08);
}

/* Disable the old gold frame border on the image-frame-gold */
.image-frame-gold::before {
    display: none !important;
}

.founder-portfolio-page .founder-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 1;
    will-change: opacity, transform;
    transition: opacity 1s ease-in-out, transform var(--transition-slow), filter var(--transition-slow);
    filter: saturate(0.8) hue-rotate(-12deg) contrast(1.03) brightness(1.02); /* Color correction to remove golden face tint */
}

/* Active image is on top and fades in */
.founder-portfolio-page .founder-img.active {
    opacity: 1;
    z-index: 3;
}

/* Previous image stays visible at opacity 1 underneath the active image during transition */
.founder-portfolio-page .founder-img.previous {
    opacity: 1;
    z-index: 2;
}

/* All images zoom together inside the frame on hover to prevent transition misalignment */
.founder-portfolio-page .about-pic-container:hover .founder-img {
    transform: scale(1.04);
    filter: brightness(1.05) contrast(1.03);
}

/* About Title layout updates */
#founder-about .section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
    font-size: 5.2rem; /* Big, impactful cinematic title */
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 1px;
}

/* Base about typewriter character styles: clean fade-in + slight slide-up */
.about-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(4px); /* Subtle slide-up instead of bouncy scale */
    will-change: opacity, transform, color, text-shadow;
    transition: opacity 0.25s ease-out, transform 0.25s ease-out, color 0.2s ease, text-shadow 0.2s ease;
    cursor: default;
}

.about-char.typed {
    opacity: 1;
    transform: translateY(0); /* Smooth settle */
}

/* Hover Interactivity for letter characters */
.char {
    display: inline-block;
    transition: transform 0.22s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.2s ease, text-shadow 0.2s ease;
    cursor: default;
}

.char:hover {
    transform: translateY(-6px) scale(1.18);
    color: var(--gold-primary);
    text-shadow: 0 0 12px rgba(230, 193, 92, 0.65);
}

/* Equalizer bounce for about heading characters */
.about-char:hover {
    animation: equalizerBounce 0.6s ease-in-out infinite alternate;
    color: var(--gold-primary);
    -webkit-text-fill-color: var(--gold-primary) !important; /* Override transparency on hover */
    text-shadow: 0 0 12px rgba(230, 193, 92, 0.65);
}

@keyframes equalizerBounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-12px) scaleY(1.2); }
}

/* Typing Music Note floating animation */
.typing-music-note {
    position: absolute;
    color: var(--gold-primary);
    pointer-events: none;
    opacity: 1;
    z-index: 10;
    font-family: 'Outfit', sans-serif;
    animation: typingNoteRise 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes typingNoteRise {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-40px) translateX(var(--drift-x)) rotate(25deg);
        opacity: 0;
    }
}

/* Typewriter Cursor */
.typewriter-cursor {
    display: inline-block;
    font-weight: 900;
    color: var(--gold-primary);
    margin-left: 2px;
    animation: blinkCursor 0.5s infinite alternate;
    text-shadow: 0 0 8px rgba(230, 193, 92, 0.8); /* Glowing block cursor */
}

.typewriter-cursor.finished {
    animation: none;
    opacity: 0;
    transition: opacity 1s ease;
}

@keyframes blinkCursor {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Drumbeat vibration animation on typewriter completion */
.section-title.vibrating {
    animation: textBeatVibrate 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes textBeatVibrate {
    0%, 100% { transform: translateX(0); }
    15% { transform: translateX(-10px); }
    30% { transform: translateX(8px); }
    45% { transform: translateX(-6px); }
    60% { transform: translateX(4px); }
    75% { transform: translateX(-2px); }
}

#founder-about .section-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 193, 92, 0.15), transparent);
    transform: skewX(-25deg);
    pointer-events: none;
}

.revealed #founder-about .section-title::after {
    animation: movieTitleGlint 4.5s ease-in-out infinite;
    animation-delay: 1.6s;
}

.about-details .section-tag {
    font-size: 2.2rem; /* Large Tag Name */
    font-weight: 900;
    letter-spacing: 6px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, opacity;
    display: inline-block;
    margin-bottom: 15px;
}

.revealed .about-details .section-tag {
    opacity: 1;
    transform: translateY(0);
}

/* Unset parent background gradients on tag name and title to fix character transparency rendering bug */
#founder-about .section-title,
.about-details .section-tag,
.revealed #founder-about .section-title,
.revealed .about-details .section-tag {
    background: none !important;
    -webkit-text-fill-color: initial !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
}

/* Staggered Hue Sunset Gradient Wave for character spans */
#founder-about .section-title .about-char {
    background: linear-gradient(90deg, #E6C15C, #FF6B6B, #A855F7, #4F46E5, #E6C15C);
    background-size: 400% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbowGlow 8s linear infinite;
}

.about-details .section-tag .about-char {
    color: #FFFFFF;
    -webkit-text-fill-color: #FFFFFF;
    background: none;
    animation: none;
}

@keyframes rainbowGlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}

.font-serif-about {
    text-align: left;
    font-size: 1.65rem; /* Slightly larger subheading */
    margin-bottom: 20px;
    font-family: var(--font-serif-body);
    font-weight: 600;
    color: var(--gold-primary);
    opacity: 0;
    will-change: opacity;
}

.about-narrative {
    text-align: left;
    font-size: 1.25rem; /* Larger paragraph for premium reading feel */
    line-height: 1.85;
    margin-bottom: 25px;
    color: var(--text-secondary);
    opacity: 0;
    will-change: opacity;
}

/* 4. INTERACTIVE DJEMBE SECTION */
.djembe-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.djembe-desc {
    margin-bottom: 50px;
}

.djembe-container {
    max-width: 460px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(15, 20, 31, 0.75);
    border: 1px solid var(--border-color-intense);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: relative;
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.djembe-container.playing {
    border-color: var(--gold-primary);
    box-shadow: 0 20px 60px rgba(230, 193, 92, 0.3);
    animation: containerPulse 1.2s infinite ease-in-out;
}

@keyframes containerPulse {
    0%, 100% { box-shadow: 0 20px 50px rgba(230, 193, 92, 0.2); }
    50% { box-shadow: 0 20px 70px rgba(230, 193, 92, 0.45); }
}



.djembe-svg {
    width: 100%;
    height: auto;
    transform-origin: center bottom;
    transition: transform 0.08s ease;
}

/* Vibrations animations */
.djembe-svg.striking-bass {
    animation: djembeBassVibrate 0.12s ease-in-out;
}

@keyframes djembeBassVibrate {
    0%, 100% { transform: scale(1, 1) translateY(0); }
    30% { transform: scale(1.04, 0.95) translateY(3px); }
    60% { transform: scale(0.96, 1.04) translateY(-2px); }
    80% { transform: scale(1.01, 0.99) translateY(0); }
}

.djembe-svg.striking-slap {
    animation: djembeSlapVibrate 0.1s ease-in-out;
}

@keyframes djembeSlapVibrate {
    0%, 100% { transform: rotate(0deg) translateX(0); }
    25% { transform: rotate(-1.5deg) translateX(-3px); }
    50% { transform: rotate(1.2deg) translateX(3px); }
    75% { transform: rotate(-0.5deg) translateX(-1px); }
}

.drum-trigger-zone {
    cursor: pointer;
    transition: filter var(--transition-fast), fill var(--transition-fast);
}

.djembe-rim:hover {
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(230, 193, 92, 0.45));
}

.djembe-center:hover {
    filter: brightness(1.15) drop-shadow(0 0 10px rgba(230, 193, 92, 0.25));
}

.sound-indicator {
    margin-top: 25px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-primary);
    text-shadow: 0 0 12px rgba(230, 193, 92, 0.25);
    transition: color 0.15s ease;
}

/* Advanced controls styling */
.djembe-controls {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color-medium);
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* Mobile Djembe Trigger Buttons */
.djembe-phone-buttons {
    display: none;
}

.bpm-control-container {
    width: 100%;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bpm-control-container label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.bpm-control-container input[type="range"] {
    width: 100%;
    accent-color: var(--gold-primary);
    height: 4px;
    background: var(--bg-tertiary);
    border: none;
    outline: none;
    border-radius: 2px;
}

/* Djembe particles explosions */
.djembe-particle {
    fill: none;
    stroke-linecap: round;
    opacity: 1;
}

/* SVG Feedback wave */
@keyframes feedbackRipple {
    0% {
        rx: 0;
        ry: 0;
        opacity: 0.85;
        stroke-width: 4;
    }
    100% {
        rx: 96;
        ry: 22;
        opacity: 0;
        stroke-width: 0.5;
    }
}

.ripple-active {
    animation: feedbackRipple 0.35s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

/* 5. INSTRUMENTS & GIGS SECTION */
.instruments-section {
    background: var(--bg-secondary);
}

.instruments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.instrument-box {
    background: var(--bg-primary);
    border: 1px solid var(--border-color-medium);
    padding: 45px 30px;
    border-radius: 8px;
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.instrument-box:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 30px var(--gold-glow);
}

.instrument-img-container {
    width: 100%;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    background: rgba(0, 0, 0, 0.2);
}

.instrument-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.instrument-box:hover .instrument-img {
    transform: scale(1.05);
}

.instrument-box h3 {
    font-family: var(--font-serif-header);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.instrument-box p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Gigs Panel */
.gigs-panel {
    margin-top: 80px;
    padding: 45px 40px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color-medium);
    border-radius: 8px;
    transition: var(--transition-normal);
}

.panel-title {
    font-family: var(--font-serif-header);
    font-size: 1.8rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.gigs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gig-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color-light);
    padding: 18px 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center; /* Center-align name */
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.gig-card:hover {
    border-color: var(--gold-primary);
    background: var(--bg-card-hover);
    transform: translateX(5px);
}

.bullet-dot {
    display: none !important;
}

/* 6. TIMELINE & SCREEN SECTIONS */
.margin-bottom-timeline {
    margin-bottom: 50px;
}

.highlights-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 30px;
}

.highlights-timeline::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 4px;
    width: 2px;
    height: calc(100% - 10px);
    background: var(--border-color-medium);
}

.timeline-item {
    position: relative;
    margin-bottom: 45px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    top: 6px;
    left: -30px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--gold-primary);
    box-shadow: 0 0 8px var(--gold-glow-intense);
    transition: transform var(--transition-fast), background var(--transition-fast);
}

.timeline-item:hover .timeline-marker {
    background: var(--gold-primary);
    transform: scale(1.3);
}

.timeline-content h3 {
    font-family: var(--font-serif-header);
    font-size: 1.3rem;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.timeline-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Cinematic Projects */
.movies-panel {
    margin-top: 85px;
    text-align: center;
}

.movies-panel-title {
    font-family: var(--font-serif-header);
    font-size: 1.8rem;
    margin-bottom: 40px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.movies-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.movie-box {
    position: relative;
    width: 360px;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color-medium);
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.movie-box:hover {
    transform: translateY(-6px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 30px rgba(230, 193, 92, 0.12);
}

.movie-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.movie-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) contrast(1.05);
    transition: transform var(--transition-slow), filter var(--transition-slow);
}

.movie-box:hover .movie-bg {
    transform: scale(1.05);
    filter: brightness(0.45) contrast(1.05);
}

.movie-info {
    position: absolute;
    bottom: 25px;
    left: 25px;
    text-align: left;
    z-index: 2;
}

.movie-info h4 {
    font-family: var(--font-serif-header);
    font-size: 1.6rem;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.role-tag {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold-primary);
}

/* 7. ASSOCIATED BANDS SECTION */
.bands-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color-medium);
}

.bands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.band-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color-medium);
    padding: 38px 25px;
    border-radius: 4px;
    text-align: center;
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.band-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--gold-glow);
}

.band-card h4 {
    font-family: var(--font-serif-header);
    font-size: 1.25rem;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.band-tag {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.collectives-card {
    margin-top: 30px;
    padding: 30px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color-light);
    border-radius: 4px;
    transition: var(--transition-normal);
}



.collectives-title {
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin-bottom: 5px;
    font-family: var(--font-sans);
    font-weight: 700;
}

.collectives-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* 8. FOOTER / CONTACT SECTION */
.founder-footer {
    border-top: 1px solid var(--border-color-medium);
}

.margin-bottom-footer {
    margin-bottom: 30px;
}

.contact-details-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.meta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.meta-val {
    font-family: var(--font-serif-body);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--gold-primary);
    text-decoration: none;
    transition: color var(--transition-fast), text-shadow var(--transition-fast);
}

.meta-val:hover {
    color: var(--gold-hover);
    text-shadow: 0 0 15px var(--gold-glow-intense);
}

.social-links-center {
    justify-content: center;
    margin-bottom: 40px;
}

/* 9. SCROLL REVEAL ANIMATIONS */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, opacity;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* 10. DISPLAY UTILITIES */
.display-block {
    display: block;
}

/* 11. RESPONSIVENESS OVERRIDES */
@media (max-width: 1200px) {
    .founder-title {
        font-size: 4.2rem;
    }
    #founder-about .section-title {
        font-size: 3rem;
    }
    .instruments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-orbit-container {
        width: 600px;
        height: 600px;
    }
    .hero-orbit-card {
        width: 130px;
        height: 130px;
    }
    .orbit-card-title {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .header {
        height: 60px;
    }
    .header.scrolled {
        height: 60px;
    }
    .founder-title {
        font-size: clamp(1.8rem, 8.5vw, 3.8rem);
        flex-wrap: nowrap;
        white-space: nowrap;
    }
    #founder-about .section-title {
        font-size: clamp(1.4rem, 6.2vw, 2.5rem);
        white-space: nowrap;
    }
    .about-details .section-tag {
        font-size: 1.0rem;
    }
    .founder-subtitle {
        font-size: 1.1rem;
    }
    .hero-cta-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1.5rem;
        justify-content: center;
        width: 100%;
        max-width: 320px;
        margin: 2.5rem auto 0;
    }
    .hero-cta-buttons .btn {
        width: 100%;
        box-sizing: border-box;
    }
    .djembe-phone-buttons {
        display: flex;
        justify-content: center;
        gap: 1.25rem;
        margin: 1.5rem auto 1rem;
        width: 100%;
        max-width: 320px;
    }
    .djembe-phone-buttons .btn {
        flex: 1;
        font-size: 0.85rem;
        padding: 0.75rem 1.25rem;
        letter-spacing: 1px;
        white-space: nowrap;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .gigs-panel {
        padding: 30px 20px;
    }
    .gigs-grid {
        grid-template-columns: 1fr;
    }
    .instruments-grid {
        grid-template-columns: 1fr;
    }
    .bands-grid {
        grid-template-columns: 1fr;
    }
    .movies-row {
        flex-direction: column;
        align-items: center;
    }
    .movie-box {
        width: 100%;
        max-width: 360px;
    }
    .contact-details-row {
        flex-direction: column;
        gap: 30px;
    }
    .meta-val {
        font-size: 1.3rem;
    }
    .hero-orbit-container {
        width: 85vw;
        height: 85vw;
    }
    .hero-orbit-card {
        width: 90px;
        height: 90px;
        filter: blur(2px) brightness(0.5);
    }
    .orbit-card-title {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }
    .founder-portfolio-page #founder-about,
    .founder-portfolio-page #djembe,
    .founder-portfolio-page #instruments,
    .founder-portfolio-page #highlights,
    .founder-portfolio-page #bands,
    .founder-portfolio-page #contact {
        min-height: auto !important;
        height: auto !important;
        padding: 60px 0 !important;
        display: block !important;
    }
}

/* 12. FULL PAGE SECTIONS FOR CINEMATIC SCROLLING */
.founder-portfolio-page #djembe,
.founder-portfolio-page #instruments,
.founder-portfolio-page #highlights,
.founder-portfolio-page #bands,
.founder-portfolio-page #contact {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 100px 0;
    position: relative;
}

/* Staggered entrance animations for Sound Signature boxes */
.instruments-section .instrument-box {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.instruments-section.revealed .instrument-box {
    opacity: 1;
    transform: translateY(0);
}

.instruments-section.revealed .instrument-box:nth-child(1) { transition-delay: 0.1s; }
.instruments-section.revealed .instrument-box:nth-child(2) { transition-delay: 0.25s; }
.instruments-section.revealed .instrument-box:nth-child(3) { transition-delay: 0.4s; }
.instruments-section.revealed .instrument-box:nth-child(4) { transition-delay: 0.55s; }

/* Responsive Mobile overrides to prevent vertical clipping */
@media (max-width: 768px) {
    .founder-portfolio-page #djembe,
    .founder-portfolio-page #instruments,
    .founder-portfolio-page #highlights,
    .founder-portfolio-page #bands,
    .founder-portfolio-page #contact {
        min-height: auto;
        display: block;
        padding: 60px 0;
    }
}
