/* ─── Base ─────────────────────────────────────────────────────────────── */

:root {
    --primary: #6c5ce7;
    --primary-dark: #5a4bd1;
    --accent: #00cec9;
    --dark: #0a0a0f;
    --dark-card: #12121a;
    --dark-surface: #1a1a2e;
    --text: #e0e0e0;
    --text-muted: #888;
    --gradient: linear-gradient(135deg, #6c5ce7 0%, #00cec9 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Space Grotesk', sans-serif;
}

/* ─── Hero ────────────────────────────────────────────────────────────── */

#hero {
    position: relative;
    background: var(--dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(108, 92, 231, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 206, 201, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(108, 92, 231, 0.08) 0%, transparent 40%);
    animation: heroPulse 8s ease-in-out infinite alternate;
}

@keyframes heroPulse {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.logo-main {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(108, 92, 231, 0.5);
    box-shadow: 0 0 40px rgba(108, 92, 231, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-main:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(108, 92, 231, 0.5);
}

#hero h1 {
    letter-spacing: -1px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slogan {
    font-size: 1.3rem;
    color: var(--text-muted);
    font-style: italic;
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--text-muted);
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ─── Buttons ─────────────────────────────────────────────────────────── */

.btn-primary {
    background: var(--gradient);
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(108, 92, 231, 0.5);
    background: var(--gradient);
}

.btn-outline-light {
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 500;
    border-width: 2px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

/* ─── Section Titles ──────────────────────────────────────────────────── */

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* ─── Mission Statement ───────────────────────────────────────────────── */

#about {
    background: var(--dark);
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
}

/* ─── Artists ─────────────────────────────────────────────────────────── */

#artists {
    background: var(--dark-surface);
}

.artist-card {
    background: var(--dark-card);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    border: 1px solid rgba(108, 92, 231, 0.1);
    transition: all 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-8px);
    border-color: rgba(108, 92, 231, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.artist-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(108, 92, 231, 0.4);
    margin: 0 auto 20px;
    transition: border-color 0.3s ease;
}

.artist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-card:hover .artist-avatar {
    border-color: var(--accent);
}

.artist-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.15);
    color: var(--accent);
    text-decoration: none;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.artist-social:hover {
    background: var(--gradient);
    color: white;
    transform: scale(1.1);
}

.artist-card h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
    color: #fff;
}

.artist-genre {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ─── Releases ────────────────────────────────────────────────────────── */

#releases {
    background: var(--dark);
}

.release-card {
    background: var(--dark-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.release-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(108, 92, 231, 0.3);
}

.release-artwork {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--dark-surface);
}

.release-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.release-card:hover .release-artwork img {
    transform: scale(1.05);
}

.release-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.release-card:hover .release-overlay {
    opacity: 1;
}

.release-overlay a {
    color: white;
    font-size: 4rem;
    transition: transform 0.3s ease;
}

.release-overlay a:hover {
    transform: scale(1.2);
    color: var(--accent);
}

.release-info {
    padding: 20px;
}

.release-info h4 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 4px;
}

.release-info .release-artist {
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.release-info .release-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.play-count {
    font-size: 0.8rem;
    color: var(--accent);
}

/* ─── Contact ─────────────────────────────────────────────────────────── */

#contact {
    background: var(--dark-surface);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--dark-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1.3rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-3px);
    border-color: transparent;
}

/* ─── Footer ──────────────────────────────────────────────────────────── */

footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0.7;
}

/* ─── Responsive ──────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .logo-main {
        width: 120px;
        height: 120px;
    }

    #hero h1 {
        font-size: 2rem;
    }

    .slogan {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

/* ─── Smooth Scroll ───────────────────────────────────────────────────── */

html {
    scroll-behavior: smooth;
}

/* ─── Scrollbar ───────────────────────────────────────────────────────── */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
