/**
 * Aurelia - Starlight Echoes
 * Ethereal dream-pop music release page
 */

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --primary: #9d4edd;
    --primary-light: #c77dff;
    --primary-dark: #7209b7;
    --secondary: #3a0ca3;
    --accent: #f72585;
    --accent-light: #ff8fa3;
    
    --bg-primary: #0a0612;
    --bg-secondary: #1a0f2e;
    --bg-tertiary: #2d1b4e;
    --bg-light: #f8f7ff;
    --bg-white: #ffffff;
    
    --text-primary: #ffffff;
    --text-secondary: #e0d4f7;
    --text-tertiary: #b794f6;
    --text-inverse: #0a0612;
    --text-muted: #8b7da8;
    
    /* Gradients */
    --gradient-purple: linear-gradient(135deg, #7209b7 0%, #9d4edd 100%);
    --gradient-pink: linear-gradient(135deg, #f72585 0%, #ff8fa3 100%);
    --gradient-ethereal: linear-gradient(135deg, #9d4edd 0%, #c77dff 50%, #f72585 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(10, 6, 18, 0.7) 0%, rgba(10, 6, 18, 0.95) 100%);
    
    /* Typography */
    --font-primary: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(157, 78, 221, 0.4);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ===== HIGHLIGHT TEXT ===== */
.highlight-text {
    background: var(--gradient-ethereal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-smooth);
    padding: var(--space-lg) 0;
}

.navbar.scrolled {
    background: rgba(10, 6, 18, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(157, 78, 221, 0.2);
    box-shadow: var(--shadow-md);
    padding: var(--space-md) 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    font-style: italic;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-ethereal);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary-light);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--gradient-purple);
    color: var(--text-primary);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-glow);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(157, 78, 221, 0.6);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
}

.nav-toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 6, 18, 0.6) 0%, rgba(10, 6, 18, 0.9) 100%);
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    padding: var(--space-4xl) 0;
}

.album-cover {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.album-cover img {
    width: 100%;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.album-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: var(--gradient-ethereal);
    filter: blur(60px);
    opacity: 0.4;
    z-index: 1;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-info {
    color: var(--text-primary);
}

.album-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-lg);
    background: rgba(157, 78, 221, 0.2);
    border: 2px solid var(--primary-light);
    color: var(--primary-light);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-glow);
}

.album-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    font-style: italic;
    line-height: 1.1;
}

.artist-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-tertiary);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.album-tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.btn-large {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-2xl);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
}

.btn-large.btn-primary {
    background: var(--gradient-purple);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

.btn-large.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(157, 78, 221, 0.6);
}

.btn-large.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-light);
}

.btn-large.btn-secondary:hover {
    background: rgba(157, 78, 221, 0.1);
    transform: translateY(-3px);
}

.streaming-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.streaming-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.streaming-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(157, 78, 221, 0.1);
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.streaming-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    color: var(--text-primary);
}

.scroll-hint {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-tertiary);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.scroll-hint i {
    font-size: 1.25rem;
}

@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 10px);
    }
}

/* ===== SECTION STYLES ===== */
section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(157, 78, 221, 0.2);
    border: 2px solid rgba(157, 78, 221, 0.4);
    color: var(--primary-light);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    font-style: italic;
    line-height: 1.2;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

/* ===== PLAYER SECTION ===== */
.player {
    background: var(--bg-secondary);
}

.player-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.player-embed {
    position: relative;
}

.embed-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.tracklist {
    background: rgba(26, 15, 46, 0.5);
    backdrop-filter: blur(10px);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(157, 78, 221, 0.2);
}

.tracklist-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.track-item {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-md);
    border-bottom: 1px solid rgba(157, 78, 221, 0.1);
    transition: var(--transition-smooth);
}

.track-item:hover {
    background: rgba(157, 78, 221, 0.05);
    padding-left: var(--space-lg);
}

.track-item.featured {
    background: rgba(157, 78, 221, 0.1);
    border-left: 3px solid var(--primary-light);
}

.track-number {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-tertiary);
    min-width: 30px;
}

.track-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.track-name {
    color: var(--text-primary);
    font-weight: 500;
}

.track-badge {
    padding: var(--space-xs) var(--space-sm);
    background: var(--gradient-pink);
    color: var(--text-primary);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.track-duration {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-left: auto;
}

.total-time {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 2px solid rgba(157, 78, 221, 0.2);
    text-align: right;
    color: var(--text-tertiary);
    font-weight: 600;
}

/* ===== VIDEO SECTION ===== */
.video {
    background: var(--bg-primary);
}

.video-player {
    max-width: 1000px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===== STORY SECTION ===== */
.story {
    background: var(--bg-secondary);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.story-image img {
    width: 100%;
    height: auto;
}

.story-quote {
    position: absolute;
    bottom: var(--space-2xl);
    left: var(--space-2xl);
    right: var(--space-2xl);
    background: rgba(10, 6, 18, 0.9);
    backdrop-filter: blur(10px);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(157, 78, 221, 0.3);
}

.story-quote i {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: var(--space-md);
}

.story-quote p {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
}

.story-text {
    color: var(--text-primary);
}

.story-body {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.story-body p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.story-body strong {
    color: var(--text-primary);
}

.story-body em {
    color: var(--primary-light);
    font-style: italic;
}

.story-signature {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-tertiary);
    margin-top: var(--space-lg);
    font-style: italic;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background: var(--bg-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-item.tall {
    aspect-ratio: 3/4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 6, 18, 0.95), transparent);
    padding: var(--space-xl);
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-caption {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
}

/* ===== VINYL SECTION ===== */
.vinyl {
    position: relative;
    overflow: hidden;
}

.vinyl-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.vinyl-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.vinyl-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 6, 18, 0.95) 0%, rgba(10, 6, 18, 0.85) 100%);
}

.vinyl .container {
    position: relative;
    z-index: 2;
}

.vinyl-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.vinyl-info {
    color: var(--text-primary);
}

.vinyl-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.vinyl-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--primary-light);
    font-size: 1.25rem;
}

.vinyl-price {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-xl);
}

.price {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--primary-light);
    font-style: italic;
}

.shipping {
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.vinyl-note {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.vinyl-note i {
    color: var(--accent);
}

.vinyl-image {
    position: relative;
}

.vinyl-image img {
    width: 100%;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.vinyl-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: var(--gradient-ethereal);
    filter: blur(80px);
    opacity: 0.3;
    z-index: -1;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
    background: var(--bg-secondary);
    padding: var(--space-4xl) 0;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-xl) auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-purple);
    border-radius: var(--radius-full);
    font-size: 2rem;
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.newsletter-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
}

.newsletter-form {
    margin-bottom: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: var(--space-md);
}

.form-group input {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.btn-submit {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-2xl);
    background: var(--gradient-purple);
    color: var(--text-primary);
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-glow);
    cursor: pointer;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(157, 78, 221, 0.6);
}

.newsletter-note {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-primary);
    border-top: 2px solid rgba(157, 78, 221, 0.2);
    padding: var(--space-4xl) 0 var(--space-xl) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--space-4xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-primary);
    font-style: italic;
}

.footer-tagline {
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(157, 78, 221, 0.1);
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: var(--radius-md);
    color: var(--primary-light);
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    color: var(--text-primary);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    font-style: italic;
}

.footer-link {
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(157, 78, 221, 0.2);
}

.footer-copyright {
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--text-muted);
}

.footer-legal a:hover {
    color: var(--primary-light);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

[data-animate] {
    opacity: 0;
}

[data-animate].animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

[data-animate="fade-up"].animated {
    animation-name: fadeInUp;
}

[data-animate="zoom-in"].animated {
    animation-name: zoomIn;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .player-content {
        grid-template-columns: 1fr;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

    .vinyl-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .streaming-links {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .album-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

