/* ===== José y Johana — Landing Page ===== */

/* Reset */
*,
*::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: #e8e4de;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;

    /* Rich Latin-inspired gradient — vibrant blue to warm gold */
    background: linear-gradient(160deg,
            #0b2460 0%,
            #0e3585 15%,
            #1248a0 30%,
            #1856a8 45%,
            #1d4f8a 55%,
            #3d4535 70%,
            #6b5a28 82%,
            #8b6f2a 92%,
            #a8832e 100%);
    background-attachment: fixed;
}

/* Ambient particles */
.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: 520px;
    max-width: 100%;
    margin-bottom: 36px;
}

.album-glow {
    position: absolute;
    inset: -12px;
    border-radius: 20px;
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.35),
            rgba(255, 140, 50, 0.2),
            rgba(212, 175, 55, 0.35));
    filter: blur(20px);
    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: 16px;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(212, 175, 55, 0.3);
    transition: transform 0.4s ease;
}

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

/* Artist Name */
.artist-name {
    font-family: 'Great Vibes', cursive;
    font-size: 5.5rem;
    font-weight: 400;
    color: #ffd700;
    margin-bottom: 12px;
    padding: 10px 10px 15px 20px;
    overflow: visible;
    text-shadow:
        0 0 10px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 185, 0, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.ampersand {
    color: #ffe44d;
}

.artist-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 6px;
    letter-spacing: 0.03em;
}

.artist-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

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

.social-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.social-icon:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

/* ===== 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: #d4af37;
    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(255, 255, 255, 0.08);
    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.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

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

.stream-badge {
    display: inline-block;
    padding: 5px 14px;
    background: linear-gradient(135deg, #d4af37, #e8c860);
    color: #0d1b2a;
    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 15px rgba(212, 175, 55, 0.4);
}

/* 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.5);
    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.06);
    text-decoration: none;
    color: #e8e4de;
    transition: all 0.3s ease;
    cursor: pointer;
}

.music-link.active:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

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

.music-link.coming-soon:hover {
    opacity: 0.6;
}

.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: #1DB954;
    color: #fff;
}

.link-icon.apple {
    background: #FA233B;
    color: #fff;
}

.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;
}

.link-arrow {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.music-link.active:hover .link-arrow {
    color: rgba(255, 255, 255, 0.7);
    transform: translateX(3px);
}

.link-badge {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.35);
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

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

/* ===== 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 {
    animation: fadeInUp 0.4s ease forwards;
    opacity: 0;
}

.music-link:nth-child(1) {
    animation-delay: 0.3s;
}

.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.6rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 28px 16px 16px;
        gap: 30px;
    }

    .album-frame {
        width: 240px;
    }

    .artist-name {
        font-size: 2.2rem;
    }

    .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;
    }
}