@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Space+Grotesk:wght@300;400;500;700&display=swap');

:root {
    --gold: #D4AF37;
    --gold-electric: #FFD700;
    --gold-glow: rgba(255, 215, 0, 0.4);
    --purple: #7B66FF;
    --purple-deep: #0D0616;
    --purple-accent: #160C21;
    --purple-glow: rgba(123, 102, 255, 0.3);
    --bg-deep: var(--purple-deep);
    --bg-accent: var(--purple-accent);
    --white: #ffffff;
    --dim: rgba(255, 255, 255, 0.4);
    --glass: rgba(13, 6, 22, 0.8);
    --transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --electric-glow: 0 0 20px rgba(123, 102, 255, 0.4), 0 0 40px rgba(255, 215, 0, 0.2);
    --purple-glow-strong: 0 0 30px rgba(123, 102, 255, 0.6);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, var(--purple), var(--gold-electric));
    z-index: 2000;
    box-shadow: 0 0 10px var(--purple-glow);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-deep);
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* Hide default cursor */
}

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--gold-electric);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: normal;
    transition: transform 0.1s ease;
    box-shadow: 0 0 10px var(--gold-glow);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--purple);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s cubic-bezier(0.23, 1, 0.32, 1), background 0.3s ease, border-color 0.3s ease;
}

.cursor-glow {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(123, 102, 255, 0.2) 0%, transparent 70%);
    position: fixed;
    top: -400px;
    left: -400px;
    pointer-events: none;
    z-index: -1;
    transition: transform 0.2s ease-out;
}

/* Noise Texture */
.noise {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05;
    pointer-events: none;
    z-index: 9997;
    animation: noise 0.2s infinite;
}

#particles-bg {
    display: none;
}

/* Electric Border System */
.electric-container {
    position: relative;
    padding: 2px;
    border-radius: 24px;
    background: transparent;
}

.electric-border {
    position: relative;
    width: 100%;
    height: 100%;
    border: 2px solid var(--purple);
    border-radius: inherit;
    filter: url(#turbulent-displace);
    transition: var(--transition);
}

@keyframes electricPulse {
    0%, 100% { opacity: 0.6; filter: url(#turbulent-displace) blur(4px) brightness(1); }
    50% { opacity: 1; filter: url(#turbulent-displace) blur(2px) brightness(1.5); }
}

.electric-glow {
    position: absolute;
    inset: 0;
    border: 2px solid var(--purple);
    border-radius: inherit;
    filter: blur(4px);
    opacity: 0.6;
    pointer-events: none;
    animation: electricPulse 3s infinite ease-in-out;
}

.electric-glow-gold {
    border-color: var(--gold-electric);
    filter: blur(2px);
    box-shadow: 0 0 15px var(--gold-glow);
}

.hero:hover .electric-border,
.artist-card:hover .electric-border {
    border-color: var(--gold-electric);
    filter: url(#turbulent-displace) brightness(1.5);
}

@keyframes noise {
    0% {
        transform: translate(0, 0);
    }

    10% {
        transform: translate(-1%, -1%);
    }

    20% {
        transform: translate(-2%, 1%);
    }

    30% {
        transform: translate(1%, -2%);
    }

    40% {
        transform: translate(-1%, 3%);
    }

    50% {
        transform: translate(-2%, 1%);
    }

    60% {
        transform: translate(3%, 0);
    }

    70% {
        transform: translate(0, 2%);
    }

    80% {
        transform: translate(-3%, 1%);
    }

    90% {
        transform: translate(1%, 3%);
    }

    100% {
        transform: translate(2%, 2%);
    }
}

/* Section Base */
section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8rem 6vw;
    position: relative;
    width: 100%;
}

/* Typography Base */
h1,
h3,
.nav-logo {
    font-family: 'Syncopate', sans-serif;
    text-transform: uppercase;
    letter-spacing: -2px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 400;
    line-height: 0.9;
    margin-bottom: 2rem;
}

.serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    text-transform: none;
}

.serif-premium {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    text-transform: none;
    color: var(--gold-electric);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 20px var(--gold-glow);
}

.serif-premium::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero:hover .serif-premium::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 6vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    padding: 1rem 6vw;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-links {
    display: flex;
    gap: 4rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    opacity: 0.4;
    transition: var(--transition);
}

.nav-links a:hover {
    opacity: 1;
    color: var(--purple);
    text-shadow: 0 0 10px var(--purple-glow);
}

.nav-logo img {
    height: 60px;
    filter: url(#removeWhite);
}

/* Hero Vertical Alignment Fix */
.hero {
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('assets/team_photo.jpg') center/cover;
    filter: blur(5px) brightness(0.25);
    z-index: -1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 6rem);
    margin-bottom: 2rem;
    line-height: 0.85;
    width: 100%;
}

.hero-subtext {
    letter-spacing: 12px;
    opacity: 0.8;
    font-size: 0.75rem;
    margin-top: 1.5rem;
    font-weight: 300;
    color: var(--purple);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.hero-subtext::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--gold-electric);
    box-shadow: 0 0 10px var(--gold-glow);
}

.hero-actions {
    margin-top: 4rem;
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 4px;
    border: 1px solid var(--purple);
    border-radius: 60px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--purple);
    transform: translateY(101%);
    z-index: -1;
    transition: var(--transition);
}

.btn-primary:hover {
    color: white;
    border-color: var(--gold-electric);
    box-shadow: var(--electric-glow);
    transform: translateY(-2px);
}

.btn-primary:hover::after {
    content: '';
    position: absolute;
    inset: -2px;
    border: 2px solid var(--gold-electric);
    border-radius: inherit;
    filter: url(#turbulent-displace);
    z-index: -1;
    pointer-events: none;
}

.btn-primary:hover::before {
    transform: translateY(0);
}

.hero-contact-strip {
    position: absolute;
    bottom: 3rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 6vw;
    font-size: 0.6rem;
    letter-spacing: 4px;
    opacity: 0.4;
}

/* About Section Alignment Fix */
.about-section {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
    align-items: center;
    background: var(--bg-deep);
    padding-top: 33vh;
    /* Prevent Nav overlap */
}

.about-img-container {
    width: 100%;
    position: relative;
}

.about-img-container img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    filter: grayscale(100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-content {
    padding-right: 6vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.about-content h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 2.5rem;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--dim);
    margin-bottom: 3.5rem;
    max-width: 480px;
    line-height: 1.7;
    letter-spacing: 0.5px;
}

.btn-magnetic {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--purple);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 4px;
    transition: 0.3s transform ease-out;
    border: 1px solid var(--purple);
    border-radius: 4px;
}

/* Talents Section Alignment */
.talents-section {
    justify-content: center;
}

.section-header {
    text-align: center;
    width: 100%;
    margin-bottom: 4rem;
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.artist-card {
    height: 65vh;
    position: relative;
    overflow: hidden;
    background: #000;
    border-radius: 20px;
    border: 1px solid rgba(123, 102, 255, 0.3);
}

.artist-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--purple);
    border-radius: inherit;
    filter: url(#turbulent-displace);
    z-index: 10;
    pointer-events: none;
    opacity: 0.8;
    animation: electricPulse 4s infinite ease-in-out;
}

.artist-card:hover::before {
    border-color: var(--gold-electric);
    filter: url(#turbulent-displace) brightness(1.5);
    opacity: 1;
    animation-duration: 1s; /* Faster surge on hover */
}

.artist-card:hover {
    box-shadow: 0 0 30px var(--gold-glow);
    z-index: 20;
}

.artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-card:hover img {
    transform: scale(1.1);
    opacity: 1;
    filter: grayscale(0) contrast(1.1) brightness(1.1);
}

.artist-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent, rgba(0, 0, 0, 0.8));
    pointer-events: none;
    z-index: 5;
}

.artist-card:hover {
    box-shadow: 0 0 30px var(--gold-glow);
    z-index: 20;
}

.artist-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 3rem;
    z-index: 10;
}

/* Team Section Alignment */
.team-section {
    background: var(--bg-accent);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem 2rem;
    width: 100%;
}

.team-member {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.team-member:hover img {
    filter: grayscale(0%);
    transform: translateY(-10px) scale(1.02);
    border-color: var(--purple);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--purple-glow);
}

.team-member h4 {
    font-size: 0.75rem;
    margin-top: 1.5rem;
    color: var(--gold-electric);
    letter-spacing: 1px;
    line-height: 1.4;
}

.team-member p {
    font-size: 0.6rem;
    color: var(--dim);
    margin-top: 0.5rem;
    letter-spacing: 2px;
}

/* Buttons */
.btn-magnetic {
    display: inline-block;
    padding: 1.25rem 3.5rem;
    background: var(--gold);
    color: black;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 4px;
    transition: 0.3s transform ease-out;
}

.btn-magnetic:hover {
    border-color: var(--gold-electric);
    background: var(--gold-electric);
    color: black;
    box-shadow: 0 0 20px var(--gold-glow);
}

.btn-magnetic:hover::after {
    content: '';
    position: absolute;
    inset: -2px;
    border: 2px solid var(--gold-electric);
    border-radius: inherit;
    filter: url(#turbulent-displace);
    z-index: -1;
    pointer-events: none;
}

/* Footer Alignment Fix */
footer {
    min-height: 60vh;
    background: var(--bg-deep);
    padding: 8rem 6vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-logo img {
    height: 100px;
    margin-bottom: 4rem;
    filter: url(#removeWhite);
}

.footer-socials {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-socials a {
    color: var(--dim);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    transition: 0.4s;
}

.footer-socials a:hover {
    color: var(--purple);
    transform: translateY(-5px);
    text-shadow: 0 0 10px var(--purple-glow);
}

/* Mobile Tweaks */
@media (max-width: 1024px) {
    section {
        padding: 6rem 6vw;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding-top: 10rem;
    }

    .about-img-container img {
        height: 50vh;
    }

    .about-content {
        padding-right: 0;
        align-items: center;
        text-align: center;
    }

    .artist-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    cursor,
    .cursor,
    .cursor-follower,
    .scroll-progress,
    .cursor-glow,
    .noise {
        display: none !important;
    }

    body {
        cursor: auto !important;
    }

    nav {
        padding: 1rem 6vw;
        background: var(--glass);
        backdrop-filter: blur(20px);
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        z-index: 1100;
        cursor: pointer;
    }

    .nav-toggle span {
        width: 30px;
        height: 2px;
        background: var(--gold);
        transition: var(--transition);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(4px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        transform: translateY(-4px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-deep);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: 1050;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        opacity: 0.6;
    }

    .hero-contact-strip {
        flex-direction: column;
        gap: 1rem;
        bottom: 2rem;
        text-align: center;
    }

    h2 {
        font-size: 3.5rem;
    }

    .footer-socials {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
}

/* Talent Section Mobile Refinements */
@media (max-width: 768px) {
    .artist-card {
        height: 50vh !important;
        margin-bottom: 20px;
    }

    .artist-overlay {
        padding: 2rem !important;
    }

    .artist-card img {
        opacity: 0.8 !important;
        filter: grayscale(0) !important;
    }
}

/* Base Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}