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

:root {
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --accent: #6366f1;
    --accent-glow: rgba(99, 102, 241, 0.3);
    --border: rgba(255, 255, 255, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Avenir', 'Avenir Next', 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

.logo,
.hero-content h1 {
    font-family: 'Avenir', 'Avenir Next', 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-style: italic;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('images/hero-bg.jpg') center center / cover no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 15, 0.3) 0%,
        rgba(10, 10, 15, 0.5) 40%,
        rgba(10, 10, 15, 0.85) 70%,
        rgba(10, 10, 15, 1) 100%
    );
}

.nav {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
}

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.15em;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 80px;
}

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section h2 {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.section-subtitle {
    color: var(--text-muted);
    margin-bottom: 48px;
}

/* Releases */
.releases {
    background: var(--bg-dark);
}

.releases-grid {
    display: grid;
    gap: 48px;
}

.release-card.featured {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.release-image {
    position: relative;
}

.release-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.album-heading {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.release-info {
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.release-info h3 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.release-type {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.album-status {
    display: inline-block;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.album-status.coming-soon {
    color: var(--accent);
}

.release-description {
    color: var(--text-secondary);
    max-width: 400px;
}

/* Singles */
.singles-section {
    margin-top: 16px;
}

.singles-heading {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.singles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.single-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.single-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.single-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.single-info {
    padding: 16px;
}

.single-info h4 {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.single-status {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.single-status.coming-soon {
    color: var(--accent);
}

/* About */
.about {
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-card));
}

.about-content {
    max-width: 700px;
}

.about-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Connect */
.connect {
    background: var(--bg-card);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.social-link {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.streaming-soon p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-email {
    margin-top: 24px;
}

.contact-email a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.contact-email a:hover {
    color: var(--text-primary);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    padding: 32px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
    .release-card.featured {
        grid-template-columns: 1fr;
    }

    .release-image {
        aspect-ratio: 1;
        max-height: 350px;
    }

    .release-info {
        padding: 24px;
    }

    .singles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .nav {
        padding: 20px 24px;
    }

    .nav-links {
        display: none;
    }

    .hero-content h1 {
        letter-spacing: 0.15em;
    }

    .section {
        padding: 64px 0;
    }

    .singles-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .single-info h4 {
        font-size: 0.85rem;
    }

    .about-text {
        font-size: 1.05rem;
    }
}
