/* ========================================
   BON VWAYAJ - PREMIUM PARADISE
   Luxury Caribbean Branding
   ======================================== */

:root {
    /* Haitian Flag */
    --haiti-red: #D21034;
    --haiti-blue: #00209F;
    --haiti-blue-deep: #001570;

    /* Paradise Gold */
    --gold: #d4af37;
    --gold-light: #f4d477;
    --gold-deep: #b8960c;
    --gold-glow: rgba(212, 175, 55, 0.4);

    /* Tropical */
    --turquoise: #1ABFBF;
    --turquoise-deep: #0e8a8a;
    --ocean: #0077b6;
    --coral: #FF6B35;
    --hibiscus: #e63946;
    --palm-green: #2D8F4E;
    --sunset-orange: #ff8c42;

    /* Base */
    --cream: #FFF8F0;
    --cream-warm: #FFF0E6;
    --cream-rich: #FBE8D3;
    --text-dark: #1a0e08;
    --text-body: #3d2b1f;
    --text-muted: #7a6a5e;
    --card-bg: rgba(255, 255, 255, 0.85);
    --card-glass: rgba(255, 255, 255, 0.6);

    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-serif: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --xs: 0.5rem;
    --sm: 1rem;
    --md: 2rem;
    --lg: 4rem;
    --xl: 6rem;
    --xxl: 8rem;

    /* Effects */
    --ease-luxury: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --shadow-soft: 0 4px 20px rgba(26, 14, 8, 0.08);
    --shadow-medium: 0 8px 40px rgba(26, 14, 8, 0.12);
    --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.3);
    --shadow-deep: 0 20px 60px rgba(26, 14, 8, 0.2);
    --glass-blur: blur(20px);
    --border-radius: 16px;
}

/* ========================================
   RESET & BASE
   ======================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.4s var(--ease-luxury);
}

::selection {
    background: var(--gold);
    color: var(--text-dark);
}

/* ========================================
   ANIMATED BACKGROUNDS
   ======================================== */

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes glow-pulse {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4)); }
    50% { filter: drop-shadow(0 0 35px rgba(212, 175, 55, 0.7)); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(212, 175, 55, 0.3); }
    50% { border-color: rgba(212, 175, 55, 0.8); }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('assets/img/hero-bg.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(210, 16, 52, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 32, 159, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 60%),
        linear-gradient(180deg, rgba(255, 248, 240, 0.3) 0%, rgba(255, 240, 230, 0.1) 40%, rgba(255, 248, 240, 0.4) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.08) 0%,
        rgba(26, 191, 191, 0.06) 33%,
        rgba(210, 16, 52, 0.06) 66%,
        rgba(0, 32, 159, 0.08) 100%
    );
    background-size: 400% 400%;
    animation: gradient-shift 12s ease infinite;
    z-index: 1;
}

#hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: var(--md);
    max-width: 900px;
}

.logo-container {
    margin-bottom: var(--lg);
    animation: fadeInUp 1.2s var(--ease-luxury);
}

.brand-name {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 12vw, 9rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 0.95;
    background: linear-gradient(
        135deg,
        var(--haiti-blue) 0%,
        #4060cf 20%,
        #FFFFFF 40%,
        #FFFFFF 60%,
        #e8304a 80%,
        var(--haiti-red) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
    margin-bottom: var(--sm);
    text-shadow: none;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.tagline-kreyol {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    margin-bottom: var(--xs);
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    letter-spacing: 0.02em;
}

.tagline {
    font-size: clamp(0.95rem, 2.5vw, 1.3rem);
    color: var(--text-dark);
    font-weight: 400;
    opacity: 0.75;
    letter-spacing: 0.03em;
}

.hero-cta {
    animation: fadeInUp 1.6s var(--ease-luxury);
}

.hero-message {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 4.5vw, 2.8rem);
    letter-spacing: 0.06em;
    line-height: 1.3;
    margin-bottom: var(--md);
    background: linear-gradient(90deg,
        var(--haiti-blue) 0%,
        var(--turquoise) 20%,
        var(--gold) 40%,
        var(--coral) 60%,
        var(--haiti-red) 80%,
        var(--haiti-blue) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
}

.cta-button {
    display: inline-block;
    padding: 1.1rem 3.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% auto;
    color: var(--text-dark);
    border-radius: 60px;
    box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s var(--ease-luxury);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5);
    background-position: right center;
}

.cta-button:hover::before {
    left: 100%;
}

.scroll-indicator {
    margin-top: var(--lg);
    font-size: 1.5rem;
    color: var(--gold);
    animation: float 3s ease-in-out infinite;
    opacity: 0.7;
}

.scroll-indicator span {
    display: inline-block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 10px;
    background: var(--gold);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-dot {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 22px; }
}

/* ========================================
   WAVE DIVIDERS
   ======================================== */

.wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -1px;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

.wave-divider.flip {
    transform: scaleY(-1);
    margin-top: 0;
    margin-bottom: -1px;
}

/* ========================================
   SECTIONS BASE
   ======================================== */

.hero {
    z-index: 1;
}

.wave-divider {
    position: relative;
    z-index: 2;
}

.section {
    padding: var(--xxl) var(--md);
    position: relative;
    overflow: hidden;
    z-index: 2;
    background: var(--cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: var(--lg);
}

.title-main {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, var(--gold-deep) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 5s linear infinite;
    margin-bottom: var(--xs);
    filter: drop-shadow(0 2px 4px rgba(184, 150, 12, 0.3));
}

.title-sub {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto var(--md);
    color: var(--text-body);
    line-height: 1.9;
    opacity: 0.9;
}

/* Section backgrounds */
.section-light {
    background: var(--cream);
}

.section-warm {
    background: linear-gradient(135deg, var(--cream-warm) 0%, var(--cream-rich) 100%);
}

.section-dark {
    background: linear-gradient(135deg, #1a0e08 0%, #2a1810 50%, #1a1520 100%);
    color: var(--cream);
}

.section-dark .title-sub,
.section-dark .section-intro {
    color: rgba(255, 248, 240, 0.7);
}

/* ========================================
   GLASSMORPHISM CARDS
   ======================================== */

.glass-card {
    background: var(--card-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: all 0.5s var(--ease-luxury);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-deep);
    border-color: rgba(212, 175, 55, 0.4);
}

.glass-card:hover::before {
    opacity: 1;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--lg);
    margin-top: var(--lg);
    align-items: start;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1.5fr;
    }
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-deep);
    transition: all 0.6s var(--ease-luxury);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 2px solid var(--gold);
    border-radius: var(--border-radius);
    opacity: 0.3;
    pointer-events: none;
    transition: all 0.6s var(--ease-luxury);
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-image:hover::after {
    inset: 0;
    opacity: 0.6;
}

.about-text p {
    margin-bottom: var(--md);
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--text-body);
}

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--gold-deep);
    line-height: 1.8;
}

.about-text h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--gold);
    margin: var(--lg) 0 var(--sm);
    position: relative;
    display: inline-block;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.highlight {
    padding: var(--md) var(--lg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(26, 191, 191, 0.05) 100%);
    border-left: 4px solid;
    border-image: linear-gradient(180deg, var(--gold), var(--turquoise)) 1;
    font-style: italic;
    margin: var(--md) 0;
    color: var(--text-body);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    position: relative;
}

.emphasis {
    font-weight: 600;
    background: linear-gradient(135deg, var(--gold-deep), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.soul-song {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    background: linear-gradient(135deg, var(--gold), var(--coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   SOUND SECTION
   ======================================== */

.sound-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--md);
    margin-top: var(--lg);
    margin-bottom: var(--md);
}

.sound-card {
    padding: var(--md) var(--sm);
    text-align: center;
    position: relative;
}

.sound-card .sound-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--sm);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s var(--ease-bounce);
}

.sound-card:hover .sound-icon {
    transform: scale(1.15) rotate(5deg);
}

.sound-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    color: var(--gold);
    margin-bottom: var(--xs);
}

.sound-card p {
    color: var(--text-body);
    line-height: 1.7;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* ========================================
   LANGUAGES SECTION
   ======================================== */

.languages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--sm);
    margin-top: var(--lg);
}

.language-card {
    padding: var(--md) var(--sm);
    text-align: center;
}

.language-card .lang-flag {
    font-size: 3rem;
    margin-bottom: var(--sm);
    transition: transform 0.4s var(--ease-bounce);
}

.language-card:hover .lang-flag {
    transform: scale(1.3) rotate(5deg);
}

.language-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: var(--gold);
    margin-bottom: var(--xs);
}

.lang-phrase {
    font-size: 0.9rem;
    color: var(--text-body);
    font-style: italic;
    opacity: 0.8;
    line-height: 1.6;
}

/* ========================================
   MUSIC PREVIEW PLAYER
   ======================================== */

.player-container {
    max-width: 800px;
    margin: var(--lg) auto 0;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.player-header {
    background: linear-gradient(135deg, rgba(26, 14, 8, 0.95), rgba(42, 24, 16, 0.95));
    padding: var(--md);
    display: flex;
    align-items: center;
    gap: var(--md);
}

.player-art {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}

.player-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-info {
    flex: 1;
    color: var(--cream);
}

.player-now-playing {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--xs);
    font-weight: 600;
}

.player-track-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.03em;
    margin-bottom: 0.25rem;
}

.player-track-artist {
    font-size: 0.9rem;
    opacity: 0.7;
}

.player-controls-bar {
    background: rgba(26, 14, 8, 0.9);
    padding: var(--sm) var(--md);
}

.player-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 248, 240, 0.15);
    border-radius: 2px;
    margin-bottom: var(--sm);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.player-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
}

.player-progress-fill::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -4px;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-glow);
    opacity: 0;
    transition: opacity 0.2s;
}

.player-progress:hover .player-progress-fill::after {
    opacity: 1;
}

.player-time {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255, 248, 240, 0.5);
    margin-bottom: var(--sm);
}

.player-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--md);
}

.player-btn {
    background: none;
    border: none;
    color: var(--cream);
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.player-btn:hover {
    opacity: 1;
    color: var(--gold);
}

.player-btn.play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--text-dark);
    font-size: 1.4rem;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px var(--gold-glow);
    transition: all 0.3s var(--ease-luxury);
}

.player-btn.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    color: var(--text-dark);
}

.player-playlist {
    background: rgba(26, 14, 8, 0.85);
    max-height: 280px;
    overflow-y: auto;
}

.playlist-track {
    display: flex;
    align-items: center;
    gap: var(--sm);
    padding: 0.75rem var(--md);
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 248, 240, 0.05);
}

.playlist-track:hover {
    background: rgba(212, 175, 55, 0.08);
}

.playlist-track.active {
    background: rgba(212, 175, 55, 0.12);
}

.playlist-track-num {
    font-size: 0.85rem;
    color: rgba(255, 248, 240, 0.4);
    width: 24px;
    text-align: center;
    font-weight: 600;
}

.playlist-track.active .playlist-track-num {
    color: var(--gold);
}

.playlist-track-info {
    flex: 1;
}

.playlist-track-name {
    font-size: 0.95rem;
    color: var(--cream);
    font-weight: 500;
}

.playlist-track.active .playlist-track-name {
    color: var(--gold);
}

.playlist-track-sub {
    font-size: 0.8rem;
    color: rgba(255, 248, 240, 0.4);
}

.playlist-track-duration {
    font-size: 0.8rem;
    color: rgba(255, 248, 240, 0.4);
}

.playlist-track-badge {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
}

.badge-preview {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
}

.badge-coming {
    background: rgba(255, 248, 240, 0.08);
    color: rgba(255, 248, 240, 0.4);
}

/* Scrollbar for playlist */
.player-playlist::-webkit-scrollbar {
    width: 4px;
}

.player-playlist::-webkit-scrollbar-track {
    background: transparent;
}

.player-playlist::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 2px;
}

/* ========================================
   RELEASE FEATURE
   ======================================== */

.release-feature {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--lg);
    margin-top: var(--lg);
    align-items: center;
}

@media (min-width: 768px) {
    .release-feature {
        grid-template-columns: 1fr 1.5fr;
    }
}

.release-art {
    position: relative;
}

.release-art img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-deep);
    transition: all 0.6s var(--ease-luxury);
}

.release-art:hover img {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 0 25px 70px rgba(26, 14, 8, 0.3);
}

.release-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    background: linear-gradient(135deg, var(--gold-deep), var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--xs);
}

.release-date {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: var(--md);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
}

.release-description {
    font-size: 1.125rem;
    margin-bottom: var(--md);
    line-height: 1.9;
    color: var(--text-body);
}

.section-dark .release-description {
    color: rgba(255, 248, 240, 0.85);
}

.section-dark .release-date {
    color: rgba(255, 248, 240, 0.55);
}

.section-dark .coming-soon-text {
    color: rgba(255, 248, 240, 0.45);
}

.streaming-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sm);
    margin-bottom: var(--md);
}

.stream-link {
    display: inline-flex;
    align-items: center;
    gap: var(--xs);
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    transition: all 0.4s var(--ease-luxury);
    border: none;
    letter-spacing: 0.02em;
}

.stream-link:hover {
    transform: translateY(-3px) scale(1.03);
}

.stream-link.spotify { background: #1DB954; }
.stream-link.spotify:hover { box-shadow: 0 12px 30px rgba(29, 185, 84, 0.4); }
.stream-link.apple { background: linear-gradient(135deg, #FA243C, #d60017); }
.stream-link.apple:hover { box-shadow: 0 12px 30px rgba(250, 36, 60, 0.4); }
.stream-link.youtube { background: linear-gradient(135deg, #FF0000, #cc0000); }
.stream-link.youtube:hover { box-shadow: 0 12px 30px rgba(255, 0, 0, 0.4); }
.stream-link.tidal { background: linear-gradient(135deg, #000, #1a1a1a); }
.stream-link.tidal:hover { box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4); }

.coming-soon-text {
    text-align: center;
    font-style: italic;
    color: var(--text-muted);
    margin-top: var(--sm);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ========================================
   SOCIAL SECTION
   ======================================== */

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--sm);
    margin-top: var(--lg);
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--md);
    text-align: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: var(--sm);
}

.social-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--text-body);
    transition: all 0.4s var(--ease-luxury);
}

.social-link:hover .social-icon svg {
    fill: var(--gold);
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px var(--gold-glow));
}

.social-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.social-handle {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
}

.social-link.coming-soon {
    opacity: 0.35;
    pointer-events: none;
}

.social-link.coming-soon .social-handle {
    color: var(--text-muted);
    font-style: italic;
}

/* Newsletter */
.newsletter {
    margin-top: var(--xxl);
    padding: var(--lg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(26, 191, 191, 0.04));
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.newsletter h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--gold);
    margin-bottom: var(--sm);
}

.newsletter p {
    color: var(--text-body);
    margin-bottom: var(--md);
    opacity: 0.85;
}

.newsletter-form {
    display: flex;
    gap: var(--sm);
    max-width: 500px;
    margin: 0 auto var(--sm);
}

.newsletter-form input {
    flex: 1;
    padding: 0.85rem 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: var(--text-dark);
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.4s var(--ease-luxury);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.newsletter-form button {
    padding: 0.85rem 2.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--text-dark);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s var(--ease-luxury);
    letter-spacing: 0.03em;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.newsletter-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: linear-gradient(135deg, #1a0e08 0%, #2a1810 50%, #1a1520 100%);
    padding: var(--xl) var(--md) var(--lg);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--md);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
        text-align: left;
    }
}

.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--xs);
}

.footer-brand p {
    color: rgba(255, 248, 240, 0.7);
    font-size: 0.95rem;
}

.footer-tagline {
    margin-top: var(--sm);
    font-style: italic;
    color: var(--gold) !important;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--xs);
}

@media (min-width: 768px) {
    .footer-links { align-items: center; }
}

.footer-links a {
    color: rgba(255, 248, 240, 0.6);
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-info {
    font-size: 0.85rem;
    color: rgba(255, 248, 240, 0.5);
}

.footer-info p { margin-bottom: var(--xs); }

.footer-info a {
    color: var(--gold);
    opacity: 0.8;
}

.footer-info a:hover { opacity: 1; }

.ai-disclosure { font-style: italic; }

/* ========================================
   SCROLL REVEAL
   ======================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
    /* Fallback: auto-reveal after 2s if JS fails */
    animation: reveal-fallback 0.8s ease 2s forwards;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    animation: none;
}

@keyframes reveal-fallback {
    to { opacity: 1; transform: translateY(0); }
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */

@media (max-width: 767px) {
    .section { padding: var(--xl) var(--sm); }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .player-header {
        flex-direction: column;
        text-align: center;
    }

    .player-art {
        width: 100px;
        height: 100px;
    }

    .streaming-links {
        justify-content: center;
    }
}

/* ========================================
   REDUCED MOTION
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal { opacity: 1; transform: none; }
}
