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

:root {
    --primary: #1a1a1a;
    --cream: #f5f1e8;
    --accent: #c9a961;
    --text-light: #666;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--cream);
    color: var(--primary);
    line-height: 1.6;
}

/* Hero */
.hero-image {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 4rem;
    z-index: 10;
}

.hero-overlay h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    color: var(--cream);
    letter-spacing: -0.03em;
    margin: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--cream);
    font-size: 0.9rem;
    z-index: 10;
    animation: bounce 2s infinite;
    text-align: center;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem 3rem;
    transform: translateY(-100%);
    transition: transform 0.3s;
}

.nav.visible {
    transform: translateY(0);
}

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

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--cream);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Section */
.section {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    font-weight: 400;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.project-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.project-image {
    height: 320px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 2rem;
}

.project-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.project-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s;
}

.project-link:hover {
    gap: 1rem;
}

/* Discography */
.discography {
    background: white;
    padding: 6rem 3rem;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.album-card {
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.album-card:hover {
    transform: translateY(-10px);
}

.album-cover {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    overflow: hidden;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.album-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.album-year {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Album Page */
.album-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 8rem 3rem 4rem;
    color: white;
}

.album-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: start;
}

.album-cover-large {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.album-cover-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.album-info h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.album-meta {
    font-size: 1.2rem;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.album-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Tracklist */
.tracklist {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.tracklist h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.track {
    display: grid;
    grid-template-columns: 60px 1fr auto auto;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    align-items: center;
    transition: all 0.3s;
    cursor: pointer;
}

.track:hover {
    background: #f9f9f9;
    transform: translateX(4px);
}

.track-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.track-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.track-duration {
    color: var(--text-light);
    font-size: 0.95rem;
}

.play-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.play-button:hover {
    transform: scale(1.1);
    background: #d4b574;
}

.play-button svg {
    width: 20px;
    height: 20px;
    fill: white;
    margin-left: 3px;
}

/* Bio */
.bio {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 3rem;
}

.bio-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
}

.bio-content p {
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--cream);
    padding: 4rem 3rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.7;
}

.footer-section h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    opacity: 0.5;
    font-weight: 600;
}

.footer-section a {
    display: block;
    color: var(--cream);
    text-decoration: none;
    margin-bottom: 0.8rem;
    opacity: 0.7;
    transition: opacity 0.3s;
    font-size: 0.95rem;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 241, 232, 0.1);
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.5;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cream);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    opacity: 0.7;
    transition: all 0.3s;
}

.back-link:hover {
    opacity: 1;
    gap: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-overlay {
        padding: 3rem 2rem;
    }
    
    .album-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .album-cover-large {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .albums-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-image {
        height: 70vh;
    }
    
    .hero-overlay {
        padding: 2rem 1.5rem;
    }
    
    .nav {
        padding: 1rem 1.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .track {
        grid-template-columns: 40px 1fr auto;
        gap: 1rem;
    }
    
    .track-duration {
        display: none;
    }
    
    .projects-grid,
    .albums-grid {
        grid-template-columns: 1fr;
    }
}
