:root {
    --primary-black: #0a0a0a;
    --primary-white: #ffffff;
    --accent-red: #c41e3a;
    --text-muted: #666666;
    --bg-light: #f8f8f8;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --container-width: 1200px;
}

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

html, body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--primary-white);
    color: var(--primary-black);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    cursor: none; /* Hide default cursor for gimmick */
}

/* Custom Muziq Scrollbar */
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: var(--primary-black);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-red);
}
::-webkit-scrollbar-thumb:hover {
    background: #ff0000;
}

/* Noise Overlay Gimmick */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
}

h1, h2, h3, .brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Typography Utilities */
.text-huge { 
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 12vw, 12rem); 
    line-height: 0.9; 
    letter-spacing: 0.02em;
    color: var(--primary-white);
    filter: drop-shadow(0 0 1px rgba(255,255,255,0.1));
}

.text-large { font-size: clamp(2rem, 5vw, 4rem); line-height: 1.1; }
.text-accent { color: var(--accent-red); }

/* Layout Components */
.section {
    padding: 100px 5%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.full-width-section {
    padding: 100px 5%;
    width: 100%;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: lowercase;
    letter-spacing: 0.05em;
    position: relative;
}

.nav-links a:hover::after, .nav-links a.active::after {
    content: ".";
    color: var(--accent-red);
    position: absolute;
    right: -10px;
    font-weight: 900;
    font-size: 1.2rem;
    line-height: 0.5;
}

.nav-links a:hover {
    color: var(--accent-red);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-color: var(--primary-black);
    color: var(--primary-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 0.5em;
    margin-bottom: 20px;
    opacity: 0.8;
}

/* Bio Section */
.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.bio-text {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.bio-text p {
    margin-bottom: 30px;
}

.bio-image-stack {
    position: relative;
}

.bio-img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: var(--transition-smooth);
}

.bio-img:hover {
    filter: grayscale(0%);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    overflow: hidden;
    background: #eee;
    aspect-ratio: 4/5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Aesthetic Gimmicks */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;
    background: var(--primary-black);
    color: var(--primary-white);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.floating-text {
    position: absolute;
    font-size: 15vw;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

/* Enhanced Bio Image Effect */
.bio-image-stack {
    position: relative;
    padding: 0;
}

.bio-image-stack::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-red);
    z-index: -1;
    transition: var(--transition-smooth);
}

.social-box {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 15px 25px;
    font-size: 0.7rem !important;
    letter-spacing: 0.2em;
    transition: var(--transition-smooth);
}

.social-box:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: white !important;
}

/* Drawing Lines on Scroll */
.drawing-line {
    width: 0;
    height: 1px;
    background: var(--accent-red);
    margin: 40px 0;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawing-line.active {
    width: 100%;
}

/* Floating Shapes */
.shape {
    position: absolute;
    border: 1px solid rgba(196, 30, 58, 0.2);
    z-index: -1;
    pointer-events: none;
}

.shape-1 { width: 300px; height: 300px; top: 10%; right: -5%; border-radius: 50%; transform: rotate(45deg); }
.shape-2 { width: 200px; height: 400px; bottom: 20%; left: -10%; transform: skewY(10deg); }

/* Horizontal Scroll Gallery */
.horizontal-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 50px 5%;
    scrollbar-width: none; /* Firefox */
}

.horizontal-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.gallery-wrapper {
    display: flex;
    gap: 40px;
}

.gallery-item-alt {
    flex: 0 0 400px;
    height: 500px;
    overflow: hidden;
    background: #000;
}

.gallery-item-alt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition-smooth);
}

.gallery-item-alt {
    position: relative;
    cursor: none;
}

.gallery-item-alt::before {
    content: "VIEW";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(196, 30, 58, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    letter-spacing: 0.3em;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

.gallery-item-alt:hover::before {
    opacity: 1;
}

.gallery-item-alt:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Vertical Side Banner */
.side-banner {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.1);
    white-space: nowrap;
    z-index: 100;
    pointer-events: none;
}

/* Glitch Effect on Hover for Headings */
/* Removed hover effect as requested */

/* Custom Responsive Classes added for mobile layout */
.music-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 60px;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    text-align: left;
}

.form-group {
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;
}

.form-group.align-start {
    align-items: start;
}

.footer-social {
    justify-content: center;
    margin-top: 100px;
    display: flex !important;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 1024px) {
    header {
        padding: 15px 5%;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .nav-links {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links a {
        font-size: 0.65rem;
    }

    .text-huge {
        font-size: clamp(2rem, 10vw, 4rem);
        letter-spacing: 0.02em;
        line-height: 1.1;
        word-break: normal;
    }

    .gallery-item-alt {
        flex: 0 0 85vw;
        height: 400px;
    }

    .bio-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section, .full-width-section {
        padding: 60px 5%;
    }

    .floating-text {
        font-size: 20vw;
    }

    .side-banner {
        display: none; /* Hide on mobile to save space */
    }

    .hero-content {
        padding: 0 20px;
    }

    .music-box {
        padding: 30px 15px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-group {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .footer-social {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .footer-social .social-box {
        flex: 1 1 calc(50% - 15px);
        text-align: center;
    }
}

