/* ============================================
   VIBE MUSIC AI RECORDS - STYLESHEET
   ============================================
   Color palette inspired by the logo:
   - Vibrant Yellow (#FFD700)
   - Warm Orange (#E86A33)
   - Deep Black (#1A1A1A)
   - Off-white cream (#FFF8F0)
============================================ */

/* --- COLOR PALETTE --- */
:root {
    --color-bg: #1A1A1A;
    --color-bg-light: #242424;
    --color-bg-card: #2A2A2A;
    --color-text: #FFF8F0;
    --color-text-muted: #A0A0A0;
    --color-yellow: #FFD700;
    --color-orange: #E86A33;
    --color-teal: #2DD4BF;
    --color-border: #333333;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    
    --max-width: 1200px;
    --max-width-narrow: 800px;
}

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

html { font-size: 18px; scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Oswald', 'Impact', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 { font-size: 2rem; color: var(--color-text); margin-bottom: var(--space-sm); }
h3 { font-size: 1.2rem; margin-bottom: var(--space-xs); }
p { margin-bottom: var(--space-sm); }

a { color: var(--color-yellow); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--color-orange); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-md); }
.container--narrow { max-width: var(--max-width-narrow); }

/* --- HEADER --- */
.site-header {
    padding: var(--space-sm) 0;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.site-logo { display: flex; align-items: center; gap: var(--space-sm); text-decoration: none; }
.site-logo img { height: 50px; width: auto; }

.site-nav { display: flex; gap: var(--space-md); flex-wrap: wrap; }

.site-nav a {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    padding: var(--space-xs) 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.site-nav a:hover, .site-nav a.active {
    color: var(--color-yellow);
    border-bottom-color: var(--color-yellow);
}

/* --- HERO WITH PARALLAX BANNER --- */
.hero-banner {
    position: relative;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(26, 26, 26, 0.3) 0%, 
        rgba(26, 26, 26, 0.5) 50%,
        rgba(26, 26, 26, 0.95) 100%);
    z-index: 2;
}

.hero-banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: var(--space-md);
}

.hero-banner-content h1 {
    font-size: 3.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: var(--space-sm);
}

.hero-banner-content .tagline {
    font-size: 1.2rem;
    color: var(--color-text);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Old hero (fallback) */
.hero {
    padding: var(--space-xl) 0;
    text-align: center;
    background: radial-gradient(ellipse at center, var(--color-bg-light) 0%, var(--color-bg) 70%);
}

.hero-logo { max-width: 300px; margin: 0 auto var(--space-md); }
.hero-logo img { width: 100%; height: auto; }
.hero h1 { margin-bottom: var(--space-sm); }

.hero .tagline {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto var(--space-md);
}

/* --- BAND PAGE BANNER --- */
.band-banner {
    position: relative;
    height: 350px;
    overflow: hidden;
    margin-bottom: 0;
}

.band-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.band-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(26, 26, 26, 0) 0%, 
        rgba(26, 26, 26, 0.7) 70%,
        rgba(26, 26, 26, 1) 100%);
    z-index: 2;
}

.band-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: var(--space-md);
}

.band-banner-content .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.band-banner-info h1 {
    font-size: 3rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.25rem;
}

.band-banner-info .genre {
    font-size: 1rem;
    color: var(--color-yellow);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-family: 'Oswald', sans-serif;
}

/* --- SLIM LISTEN NOW BAR --- */
.listen-bar {
    background: linear-gradient(135deg, var(--color-bg-card) 0%, var(--color-bg-light) 100%);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-sm) 0;
}

.listen-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.listen-bar-label {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.listen-bar-links {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

.listen-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--color-text);
    transition: all 0.2s ease;
}

.listen-bar-link:hover {
    background: var(--color-yellow);
    color: var(--color-bg);
    border-color: var(--color-yellow);
}

/* --- SECTIONS --- */
.section { padding: var(--space-lg) 0; }
.section--alt { background-color: var(--color-bg-light); }

.section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-yellow), var(--color-orange));
    margin: var(--space-sm) auto 0;
}

/* --- GRID --- */
.grid { display: grid; gap: var(--space-md); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* --- CARDS --- */
.card {
    background-color: var(--color-bg-card);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--color-border);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.15);
    border-color: var(--color-yellow);
}

.card a { text-decoration: none; color: inherit; display: block; }

.card-image {
    aspect-ratio: 1;
    overflow: hidden;
    background-color: var(--color-bg);
}

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

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

.card-content { padding: var(--space-sm); }
.card-content h3 { color: var(--color-text); margin-bottom: 4px; }
.card-content p { font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 0; }

/* --- BAND PAGE (Legacy support) --- */
.band-header {
    padding: var(--space-lg) 0;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.band-image {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--color-bg-card);
    border: 2px solid var(--color-border);
}

.band-image img { width: 100%; height: 100%; object-fit: cover; }

.band-info h1 { margin-bottom: var(--space-xs); }
.band-genre {
    font-size: 0.9rem;
    color: var(--color-yellow);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.band-bio { color: var(--color-text-muted); }

/* --- ALBUM PAGE HEADER --- */
.album-header {
    padding: var(--space-lg) 0;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.album-cover {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--color-bg-card);
    border: 2px solid var(--color-border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

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

.album-info h1 { margin-bottom: var(--space-xs); font-size: 2.5rem; }

.album-artist {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

.album-artist a {
    color: var(--color-yellow);
}

.album-meta {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.album-description {
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

/* --- ALBUM STREAMING LINKS --- */
.album-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-top: var(--space-md);
}

.album-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--color-text);
    transition: all 0.2s ease;
}

.album-link:hover {
    background: linear-gradient(135deg, var(--color-yellow), var(--color-orange));
    color: var(--color-bg);
    border-color: transparent;
}

.album-link--primary {
    background: linear-gradient(135deg, var(--color-yellow), var(--color-orange));
    color: var(--color-bg);
    border-color: transparent;
    font-weight: 600;
}

.album-link--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* --- TRACK LIST --- */
.track-list {
    list-style: none;
    counter-reset: track;
}

.track-item {
    display: flex;
    align-items: center;
    padding: var(--space-sm);
    border-bottom: 1px solid var(--color-border);
    transition: background-color 0.2s ease;
}

.track-item:hover {
    background-color: var(--color-bg-card);
}

.track-number {
    width: 40px;
    font-family: 'Oswald', sans-serif;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.track-title {
    flex: 1;
    color: var(--color-text);
}

.track-duration {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-family: monospace;
}

/* --- LYRICS --- */
.lyrics-section {
    margin-top: var(--space-md);
}

.lyrics-track {
    margin-bottom: var(--space-lg);
}

.lyrics-track h3 {
    color: var(--color-yellow);
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-xs);
    border-bottom: 1px solid var(--color-border);
}

.lyrics-text {
    white-space: pre-wrap;
    font-family: inherit;
    color: var(--color-text-muted);
    line-height: 1.8;
    background: var(--color-bg-card);
    padding: var(--space-md);
    border-radius: 8px;
}

/* --- STREAMING LINKS (Old style) --- */
.streaming-links { display: flex; flex-wrap: wrap; gap: var(--space-xs); margin-top: var(--space-md); }

.streaming-link {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-orange) 100%);
    color: var(--color-bg);
    border-radius: 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.streaming-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    color: var(--color-bg);
}

/* --- BREADCRUMB --- */
.breadcrumb {
    padding: var(--space-sm) 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--space-md);
}

.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-yellow); }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* --- PLACEHOLDER IMAGE --- */
.placeholder-image {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--color-bg-card) 0%, var(--color-bg-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* --- FOOTER --- */
.site-footer {
    padding: var(--space-lg) 0;
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-logo { margin-bottom: var(--space-md); }
.footer-logo img { height: 60px; width: auto; opacity: 0.8; }

.footer-links { margin-bottom: var(--space-md); display: flex; justify-content: center; gap: var(--space-md); flex-wrap: wrap; }
.footer-links a { color: var(--color-text-muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--color-yellow); }

.footer-copyright { font-size: 0.8rem; color: var(--color-text-muted); }

/* --- CTA BUTTON --- */
.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-orange) 100%);
    color: var(--color-bg);
    border-radius: 30px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    color: var(--color-bg);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    html { font-size: 16px; }
    
    h1 { font-size: 2rem; }
    
    .hero-banner { height: 50vh; min-height: 300px; }
    .hero-banner-bg { background-attachment: scroll; }
    .hero-banner-content h1 { font-size: 2.5rem; }
    
    .band-banner { height: 280px; }
    .band-banner-info h1 { font-size: 2rem; }
    
    .band-header, .album-header {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .band-image, .album-cover {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .listen-bar .container {
        flex-direction: column;
    }
    
    .grid--4 { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
    
    .streaming-links, .album-links { justify-content: center; }
    
    .site-header .container {
        justify-content: center;
    }
    
    .site-nav {
        justify-content: center;
    }
}

/* ========================================
   FEATURED ALBUM (Homepage)
======================================== */
.featured-album {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: var(--space-xl);
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.featured-album-cover {
    position: relative;
}

.featured-album-cover img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.featured-album-cover:hover img {
    transform: scale(1.02);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 24px var(--color-glow);
}

.featured-album-info {
    padding: var(--space-md) 0;
}

.featured-album-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-xs);
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-album-artist {
    font-size: 1.25rem;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.featured-album-genre {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.featured-album-description {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.featured-album-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.cta-button--secondary {
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
}

.cta-button--secondary:hover {
    background: var(--color-accent);
    color: var(--color-bg);
}

.cta-button--outline {
    background: transparent;
    border: 2px solid var(--color-text-muted);
    color: var(--color-text);
}

.cta-button--outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

@media (max-width: 768px) {
    .featured-album {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .featured-album-cover {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .featured-album-info {
        text-align: center;
    }
    
    .featured-album-buttons {
        justify-content: center;
    }
}
