/* ===== Francisco Santos — Jesús Dice... Landing Page ===== */
/* Palette derived from album art: deep night sky → dawn blue → sunlit gold */

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #f4ebd9;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;

    /* Animated gradient — celestial sky tones from night to dawn */
    background: linear-gradient(-45deg,
        #0c1a36,
        #14305e,
        #1c4382,
        #2d5fa8,
        #3873bd,
        #2a5396,
        #1a3a72,
        #0e1f3d);
    background-size: 400% 400%;
    animation: bg-shift 28s ease infinite;
}

@keyframes bg-shift {
    0%   { background-position: 0% 50%; }
    25%  { background-position: 50% 0%; }
    50%  { background-position: 100% 50%; }
    75%  { background-position: 50% 100%; }
    100% { background-position: 0% 50%; }
}

/* Ambient particles — warm gold sunlight motes */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float-particle linear infinite;
    opacity: 0;
}

@keyframes float-particle {
    0%   { opacity: 0; transform: translateY(100vh) scale(0); }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* ===== Layout ===== */
.container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 40px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    min-height: calc(100vh - 80px);
}

/* ===== Artist Section (Left) ===== */
.artist-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 20px;
    position: sticky;
    top: 60px;
}

/* Album Frame */
.album-frame {
    position: relative;
    width: 420px;
    max-width: 100%;
    margin-bottom: 36px;
}

.album-glow {
    position: absolute;
    inset: -30px;
    border-radius: 40px;
    background: linear-gradient(135deg,
            rgba(245, 216, 150, 0.30),
            rgba(120, 170, 230, 0.22),
            rgba(255, 240, 200, 0.18),
            rgba(91, 143, 217, 0.30));
    filter: blur(40px);
    z-index: 0;
    animation: glow-pulse 4s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    from { opacity: 0.6; transform: scale(0.97); }
    to   { opacity: 1;   transform: scale(1.02); }
}

.album-cover {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    transition: transform 0.4s ease;
}

.album-cover:hover {
    transform: scale(1.02);
}

/* Artist Name */
.artist-name {
    font-family: 'Cinzel', 'Cormorant Garamond', serif;
    font-size: 3.6rem;
    font-weight: 700;
    color: #f5d896;
    margin-bottom: 12px;
    padding: 6px 6px 10px;
    overflow: visible;
    text-shadow:
        0 0 14px rgba(245, 216, 150, 0.55),
        0 0 36px rgba(255, 220, 150, 0.25),
        0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.04em;
    line-height: 1.05;
}

.surname {
    color: #f4ebd9;
    font-weight: 600;
}

.artist-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-style: italic;
    color: #ffe6b3;
    margin-bottom: 6px;
    letter-spacing: 0.03em;
    text-shadow: 0 0 12px rgba(245, 216, 150, 0.35);
}

.artist-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(245, 216, 150, 0.7);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 28px;
    height: 28px;
}

/* Spotify */
.social-links .social-icon:nth-child(1) { background: transparent; }
/* YouTube Music */
.social-links .social-icon:nth-child(2) { background: #FF0000; color: #fff; }
/* Apple Music */
.social-links .social-icon:nth-child(3) { background: #FA233B; color: #fff; border-radius: 12px; }

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

/* ===== Music Section (Right) ===== */
.music-section {
    padding-top: 20px;
}

/* Latest Release */
.latest-release {
    margin-bottom: 36px;
}

.release-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #f5d896;
    margin-bottom: 14px;
}

.release-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    border: 1px solid rgba(245, 216, 150, 0.18);
    backdrop-filter: blur(10px);
}

.release-thumb {
    width: 84px;
    height: 84px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.release-info {
    flex: 1;
}

.release-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
    font-style: italic;
}

.release-artist {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.stream-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #c89b54, #f5d896);
    color: #1a2c4f;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.stream-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 18px rgba(245, 216, 150, 0.45);
}

/* Listen Heading */
.listen-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 18px;
}

/* Link List */
.link-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.music-link {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 22px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: #f4ebd9;
    transition: all 0.3s ease;
    cursor: pointer;
}

.music-link:hover {
    background: rgba(245, 216, 150, 0.08);
    border-color: rgba(245, 216, 150, 0.28);
    transform: translateX(4px);
}

.music-link.coming-soon {
    opacity: 0.5;
    cursor: default;
}

.music-link.coming-soon:hover {
    opacity: 0.6;
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.coming-soon-text {
    color: rgba(255, 255, 255, 0.4) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.link-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.link-icon svg {
    width: 22px;
    height: 22px;
}

/* Platform Colors */
.link-icon.spotify       { background: transparent; }
.link-icon.apple         { background: #FA233B; color: #fff; border-radius: 6px; }
.link-icon.youtube-music { background: #FF0000; color: #fff; }
.link-icon.youtube       { background: #FF0000; color: #fff; }
.link-icon.amazon        { background: #25D1DA; color: #fff; }
.link-icon.tidal         { background: #000;    color: #fff; border: 1px solid rgba(255, 255, 255, 0.2); }
.link-icon.deezer        { background: #A238FF; color: #fff; }
.link-icon.pandora       { background: #224099; color: #fff; }
.link-icon.iheart        { background: #C6002B; color: #fff; }

.link-name {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 500;
    white-space: nowrap;
}

.link-badge {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #f5d896;
    padding: 3px 12px;
    border-radius: 50px;
    border: 1px solid rgba(245, 216, 150, 0.35);
    white-space: nowrap;
    margin-left: auto;
    text-align: center;
}

/* ===== Footer ===== */
.footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 30px 20px 40px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

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

.artist-section { animation: fadeInUp 0.8s ease forwards; }
.music-section  { animation: fadeInUp 0.8s ease 0.2s forwards; opacity: 0; animation-fill-mode: forwards; }

.music-link, .music-link.coming-soon {
    animation: fadeInUp 0.4s ease forwards;
    opacity: 0;
}
.music-link:nth-child(1) { animation-delay: 0.30s; }
.music-link:nth-child(2) { animation-delay: 0.38s; }
.music-link:nth-child(3) { animation-delay: 0.46s; }
.music-link:nth-child(4) { animation-delay: 0.54s; }
.music-link:nth-child(5) { animation-delay: 0.62s; }
.music-link:nth-child(6) { animation-delay: 0.70s; }
.music-link:nth-child(7) { animation-delay: 0.78s; }
.music-link:nth-child(8) { animation-delay: 0.86s; }
.music-link:nth-child(9) { animation-delay: 0.94s; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 24px 24px;
    }
    .artist-section { position: static; padding-top: 0; }
    .album-frame    { width: 280px; }
    .artist-name    { font-size: 2.5rem; }
}

@media (max-width: 480px) {
    .container { padding: 28px 16px 16px; gap: 30px; }
    .album-frame { width: 240px; }
    .artist-name { font-size: 2.1rem; }
    .release-card { padding: 12px 14px; gap: 12px; }
    .release-thumb { width: 56px; height: 56px; }
    .music-link { padding: 12px 14px; gap: 12px; }
    .link-icon { width: 32px; height: 32px; }
    .link-icon svg { width: 16px; height: 16px; }
}
