/* ============================================
   NEW WINE Album Website - CSS Stylesheet
   J.A.L.M.-MUSIC | 55th Studio Album
   Gospel Neo-Soul / Afro-Cuban
   ============================================ */

/* ========== CSS Reset & Base Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Warm, Soulful, Prophetic */
    --primary-gold: #d4af37;
    --deep-wine: #6b1f2e;
    --dark-burgundy: #4a0e1b;
    --rich-amber: #cc7722;
    --midnight-black: #0d0a0a;
    --warm-ivory: #faf8f5;
    --deep-purple: #3d1f4a;
    --teal-accent: #2a5e5e;
    
    /* Typography */
    --font-display: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --font-script: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--warm-ivory);
    background-color: var(--midnight-black);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ========== Typography ========== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--rich-amber);
}

/* ========== Layout Containers ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 0;
}

/* ========== Navigation ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(13, 10, 10, 0.98), rgba(13, 10, 10, 0.85));
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
    transition: var(--transition-smooth);
}

.nav-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.5));
}

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

.nav-menu a {
    color: var(--warm-ivory);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-gold);
    border-bottom-color: var(--primary-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-fast);
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(107, 31, 46, 0.3) 0%,
        rgba(61, 31, 74, 0.2) 40%,
        rgba(13, 10, 10, 1) 100%
    );
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-logo {
    width: clamp(200px, 40vw, 280px);
    height: auto;
    object-fit: contain;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 4px 16px rgba(212, 175, 55, 0.4));
    animation: fadeInScale 1.2s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    color: var(--primary-gold);
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--rich-amber);
    margin-bottom: 0.5rem;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-artist {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--warm-ivory);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-genre {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1rem;
    color: rgba(250, 248, 245, 0.7);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-genre .separator {
    color: var(--primary-gold);
}

.hero-quote {
    max-width: 700px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(107, 31, 46, 0.2);
    border-left: 4px solid var(--primary-gold);
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-quote p {
    font-family: var(--font-script);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--warm-ivory);
    margin: 0;
}

.hero-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--primary-gold);
    font-style: normal;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--rich-amber));
    color: var(--midnight-black);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
    animation: fadeInUp 1s ease-out 1.2s both;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
    color: var(--midnight-black);
}

/* ========== Album Cover Section ========== */
.album-section {
    background: linear-gradient(
        to bottom,
        var(--midnight-black),
        rgba(61, 31, 74, 0.2),
        var(--midnight-black)
    );
}

.album-cover-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.album-cover-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
}

.album-cover-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 60px rgba(212, 175, 55, 0.5);
}

.album-meta h2 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.album-artist {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--warm-ivory);
    margin-bottom: 0.5rem;
}

.album-details,
.album-genre {
    color: rgba(250, 248, 245, 0.7);
    margin-bottom: 0.5rem;
}

/* ========== About Section ========== */
.about-section {
    background-color: var(--midnight-black);
}

.section-title {
    text-align: center;
    color: var(--primary-gold);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-gold), transparent);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--warm-ivory);
    margin-bottom: 2rem;
}

.concept-quote {
    padding: 2rem;
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(107, 31, 46, 0.2), rgba(61, 31, 74, 0.2));
    border-left: 4px solid var(--primary-gold);
    font-family: var(--font-script);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--warm-ivory);
}

/* ========== Tracks Section ========== */
.tracks-section {
    background: linear-gradient(
        to bottom,
        var(--midnight-black),
        rgba(74, 14, 27, 0.2),
        var(--midnight-black)
    );
}

.tracks-grid {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.track-card {
    background: linear-gradient(135deg, rgba(107, 31, 46, 0.2), rgba(61, 31, 74, 0.15));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 2rem;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.track-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.track-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.track-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    font-family: var(--font-display);
    line-height: 1;
}

.track-info {
    flex: 1;
}

.track-title {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.track-hebrew {
    font-family: var(--font-script);
    font-style: italic;
    font-size: 1rem;
    color: var(--rich-amber);
}

.track-subtitle {
    font-family: var(--font-script);
    font-style: italic;
    color: var(--rich-amber);
    font-size: 1.1rem;
}

.track-preview {
    color: rgba(250, 248, 245, 0.8);
    line-height: 1.8;
}

.track-preview p {
    margin-bottom: 0.7rem;
}

.track-preview strong {
    color: var(--primary-gold);
}

.track-expand {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.track-expand:hover {
    background: var(--primary-gold);
    color: var(--midnight-black);
}

.track-details {
    display: none;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.track-card.expanded .track-details {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.track-card.expanded .track-expand {
    background: var(--primary-gold);
    color: var(--midnight-black);
}

.track-scenario,
.track-lyrics {
    margin-bottom: 2rem;
}

.track-scenario h4,
.track-lyrics h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.track-scenario p {
    color: rgba(250, 248, 245, 0.85);
    line-height: 1.8;
}

.lyrics-content {
    color: rgba(250, 248, 245, 0.9);
    line-height: 2;
    font-size: 0.95rem;
}

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

.lyrics-content em {
    color: var(--rich-amber);
    font-family: var(--font-script);
}

.lyrics-content strong {
    color: var(--primary-gold);
    display: block;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

/* ========== Scripture Section ========== */
.scripture-section {
    background: linear-gradient(
        to bottom,
        var(--midnight-black),
        rgba(61, 31, 74, 0.3),
        var(--midnight-black)
    );
}

.scripture-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.scripture-card {
    background: linear-gradient(135deg, rgba(107, 31, 46, 0.2), rgba(61, 31, 74, 0.2));
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
}

.scripture-card h3 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.scripture-card blockquote {
    font-family: var(--font-script);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.9;
    color: var(--warm-ivory);
    text-align: center;
}

/* ========== Artist Section ========== */
.artist-section {
    background-color: var(--midnight-black);
}

.artist-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.artist-logo {
    width: clamp(200px, 50vw, 300px);
    height: auto;
    object-fit: contain;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 4px 16px rgba(212, 175, 55, 0.3));
    transition: var(--transition-smooth);
}

.artist-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 24px rgba(212, 175, 55, 0.5));
}

.artist-content h2 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.artist-tagline {
    font-family: var(--font-script);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--rich-amber);
    margin-bottom: 1rem;
}

.artist-genre {
    color: rgba(250, 248, 245, 0.7);
    margin-bottom: 2rem;
}

.artist-bio {
    text-align: left;
    color: rgba(250, 248, 245, 0.9);
    line-height: 1.8;
}

.artist-bio h3 {
    color: var(--primary-gold);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.artist-bio ul {
    list-style-position: inside;
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.artist-bio li {
    margin-bottom: 0.5rem;
    color: rgba(250, 248, 245, 0.85);
}

/* ========== Footer ========== */
.footer {
    background: linear-gradient(to top, var(--midnight-black), rgba(107, 31, 46, 0.2));
    padding: 3rem 0 2rem;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-logo {
    width: 150px;
    height: auto;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.3));
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.footer-artist {
    color: rgba(250, 248, 245, 0.7);
    margin-bottom: 1rem;
}

.footer-copyright {
    color: rgba(250, 248, 245, 0.5);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--primary-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--rich-amber);
}

/* ========== Animations ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: rgba(13, 10, 10, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .album-cover-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .scripture-content {
        grid-template-columns: 1fr;
    }
    
    .hero-quote {
        padding: 1.5rem;
    }
    
    .track-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .track-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }
    
    .nav-logo {
        height: 50px;
    }
    
    .hero-logo {
        width: 180px;
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .track-card {
        padding: 1.5rem;
    }
}