/* ========================================
   CSS Custom Properties (Variables)
   ======================================== */
:root {
    /* Colors from artwork */
    --color-warm-light: #f5d7c8;
    --color-warm-mid: #e8b4a1;
    --color-warm-dark: #d9967a;
    --color-cool-light: #b8c5d0;
    --color-cool-mid: #8fa3b5;
    --color-cool-dark: #6b7f94;
    --color-neutral-light: #f8f5f2;
    --color-neutral-dark: #2a2a2a;
    --color-white: #ffffff;
    
    /* Typography */
    --font-hebrew: 'Cormorant Garamond', serif;
    --font-english: 'Inter', sans-serif;
    --font-accent: 'Libre Baskerville', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Shadows */
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(233, 180, 161, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

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

body {
    font-family: var(--font-english);
    color: var(--color-neutral-dark);
    line-height: 1.6;
    overflow: hidden;
    background: 
        radial-gradient(circle at 20% 80%, rgba(245, 215, 200, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(184, 197, 208, 0.3) 0%, transparent 50%),
        linear-gradient(
            170deg,
            #f8e8df 0%,
            #f3dfd4 15%,
            #ead5c9 30%,
            #dfc9be 45%,
            #d2bdb3 60%,
            #c5b1a8 75%,
            #a8b3be 90%,
            #95a8b8 100%
        );
    background-attachment: fixed;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    position: relative;
}

/* ========================================
   Container & Layout
   ======================================== */
.container {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

section {
    opacity: 0;
    animation: fadeInUp 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

section:nth-child(1) { animation-delay: 0.2s; }
section:nth-child(2) { animation-delay: 0.6s; }

/* ========================================
   Hero Section
   ======================================== */
.hero {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
    max-width: 500px;
    padding: 0;
}

.hero-content {
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
}

.artwork-container {
    position: relative;
    animation: elegantFloat 8s ease-in-out infinite;
}

.artwork-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: glow 4s ease-in-out infinite alternate;
}

.album-artwork {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 24px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.2), 
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 0 100px rgba(245, 215, 200, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.album-artwork:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.25), 
        0 20px 50px rgba(0, 0, 0, 0.18),
        0 0 120px rgba(245, 215, 200, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.25);
}

@keyframes elegantFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes glow {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* ========================================
   Typography
   ======================================== */
.title-section {
    margin: 0;
    text-align: center;
    animation: fadeInUp 1.5s ease-out 0.5s both;
}

.song-title.hebrew {
    font-family: var(--font-hebrew);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 50%, #e8e8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
    line-height: 1.1;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.song-title-english {
    font-family: var(--font-accent);
    font-size: clamp(1.2rem, 3.5vw, 2rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.4rem;
    font-style: italic;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
}

.artist-name {
    font-family: var(--font-accent);
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 300;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: 5px;
    text-transform: lowercase;
    font-style: italic;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.25));
    margin-top: 1.2rem;
    position: relative;
}

.artist-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.release-info {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    margin: 0;
    margin-top: 0.8rem;
}

.section-title {
    font-family: var(--font-accent);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-white);
    text-align: center;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

/* Elegant vignette effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0.12) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Luxury shimmer overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
    animation: gentleShimmer 15s ease-in-out infinite alternate;
}

@keyframes gentleShimmer {
    0% { opacity: 0.5; }
    100% { opacity: 0.8; }
}

.coming-soon-message {
    padding: var(--spacing-md);
    color: var(--color-cool-dark);
    font-style: italic;
}

/* ========================================
   Streaming Section
   ======================================== */
.streaming-section {
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.streaming-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.streaming-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--color-neutral-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    min-width: 150px;
}

.streaming-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--color-warm-mid);
    background: var(--color-white);
}

/* Luxury button styling */
.streaming-link.pre-save {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 1rem 2.5rem;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2), 
        0 5px 15px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    animation: luxuryPulse 5s ease-in-out infinite;
    min-width: 220px;
    border-radius: 60px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.streaming-link.pre-save::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.7s ease;
}

.streaming-link.pre-save:hover::before {
    left: 150%;
}

.streaming-link.pre-save::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 60px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.streaming-link.pre-save:hover::after {
    opacity: 1;
}

.streaming-link.pre-save .platform-icon {
    display: none;
}

.streaming-link.pre-save:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    color: rgba(255, 255, 255, 1);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.25), 
        0 8px 20px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    animation: none;
    border-color: rgba(255, 255, 255, 0.4);
}

.streaming-link svg,
.streaming-link img {
    width: 24px;
    height: 24px;
}


/* ========================================
   Footer
   ======================================== */
.footer {
    display: none;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes luxuryPulse {
    0%, 100% {
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.2), 
            0 5px 15px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        transform: translateY(0);
    }
    50% {
        box-shadow: 
            0 12px 35px rgba(0, 0, 0, 0.22), 
            0 6px 18px rgba(0, 0, 0, 0.17),
            inset 0 1px 0 rgba(255, 255, 255, 0.35);
        transform: translateY(-2px);
    }
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    .container {
        padding: var(--spacing-sm);
    }
    
    .hero {
        max-width: 100%;
    }
    
    .hero-content {
        padding: 0 var(--spacing-sm);
        gap: 1.2rem;
    }
    
    .album-artwork {
        max-width: 240px;
    }
    
    .song-title.hebrew {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .song-title-english {
        font-size: clamp(1rem, 3vw, 1.5rem);
    }
    
    .artist-name {
        font-size: clamp(0.9rem, 2.5vw, 1.3rem);
    }
    
    .streaming-link.pre-save {
        width: 100%;
        max-width: 280px;
        font-size: 0.85rem;
        padding: 0.9rem 2rem;
        min-width: 200px;
        letter-spacing: 1.2px;
    }
}

@media (max-width: 480px) {
    body {
        background: 
            radial-gradient(circle at 20% 80%, rgba(245, 215, 200, 0.4) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(184, 197, 208, 0.4) 0%, transparent 50%),
            linear-gradient(
                180deg,
                #f8e8df 0%,
                #ead5c9 25%,
                #d2bdb3 50%,
                #a8b3be 75%,
                #95a8b8 100%
            );
    }
    
    .container {
        padding: 0.5rem;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .hero {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .hero-content {
        padding: 0;
        gap: 0;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .album-artwork {
        max-width: 180px;
        margin-bottom: 0.3rem;
    }
    
    .title-section {
        margin-bottom: 0;
    }
    
    .song-title.hebrew {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        letter-spacing: 2px;
        margin-bottom: 0;
        line-height: 1.08;
    }
    
    .song-title-english {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
        margin-bottom: 0;
        letter-spacing: 1.5px;
    }
    
    .artist-name {
        font-size: clamp(0.85rem, 3.5vw, 1.1rem);
        letter-spacing: 2px;
        margin-bottom: 0;
    }
    
    .release-info {
        font-size: 0.7rem;
        letter-spacing: 1.8px;
        margin-bottom: 0;
    }
    
    .streaming-link.pre-save {
        font-size: 0.8rem;
        padding: 0.85rem 1.8rem;
        min-width: 180px;
        max-width: 260px;
        letter-spacing: 1px;
        margin-top: 0.4rem;
    }
}

@media (max-width: 390px) {
    .container {
        padding: 0.6rem;
    }
    
    .hero-content {
        gap: 0.2rem;
    }
    
    .album-artwork {
        max-width: 190px;
    }
    
    .song-title.hebrew {
        font-size: clamp(1.7rem, 7vw, 2.4rem);
        letter-spacing: 1.8px;
    }
    
    .song-title-english {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
        letter-spacing: 1.5px;
    }
    
    .artist-name {
        font-size: clamp(0.8rem, 3.5vw, 1.1rem);
        letter-spacing: 2px;
    }
    
    .streaming-link.pre-save {
        font-size: 0.8rem;
        padding: 0.9rem 1.8rem;
        min-width: 180px;
        max-width: 260px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0.5rem;
    }
    
    .hero-content {
        gap: 0.15rem;
    }
    
    .album-artwork {
        max-width: 170px;
    }
    
    .song-title.hebrew {
        font-size: clamp(1.5rem, 6vw, 2rem);
        letter-spacing: 1.5px;
    }
    
    .song-title-english {
        font-size: clamp(0.8rem, 3.5vw, 1rem);
        letter-spacing: 1.2px;
    }
    
    .artist-name {
        font-size: clamp(0.75rem, 3vw, 0.95rem);
        letter-spacing: 1.8px;
    }
    
    .streaming-link.pre-save {
        font-size: 0.75rem;
        padding: 0.85rem 1.6rem;
        min-width: 160px;
        max-width: 240px;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    body {
        background: white;
    }
    
    .streaming-section,
    .audio-section {
        display: none;
    }
}

