/* GLOBAL */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #0d0d0d;
    color: #fff;
    line-height: 1.6;
}

h1, h2 {
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* HERO */
.hero {
    position: relative;
    height: 70vh;
    background: url('images/hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    margin: 0;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.85;
}

/* SOCIALS */
.socials {
    text-align: center;
    padding: 40px 20px;
}

.social-links a {
    margin: 0 10px;
    color: #00d4ff;
    text-decoration: none;
    font-weight: bold;
}

.social-links a:hover {
    opacity: 0.7;
}

/* RELEASES */
.releases {
    padding: 40px 20px;
    text-align: center;
}

.release-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.release {
    background: #1a1a1a;
    padding: 12px 20px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    transition: 0.2s;
}

.release:hover {
    background: #333;
}

/* VIDEO */
.video {
    padding: 40px 20px;
    text-align: center;
}

.video-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

iframe {
    width: 100%;
    border-radius: 8px;
}

/* BIO */
.bio {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    gap: 30px;
}

.bio-img {
    width: 260px;
    border-radius: 12px;
}

.bio-text {
    flex: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .bio {
        flex-direction: column;
        text-align: center;
    }

    .bio-img {
        width: 200px;
    }
}

/* FEATURED ARTIST */
.featured-artist {
    text-align: center;
    padding: 40px 20px;
}

.artist-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: #111;
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    transition: 0.25s;
}

.artist-card:hover {
    background: #1DB954;
    color: #000;
}

.artist-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin: 15px;
}

.artist-info {
    max-width: 450px;
    text-align: left;
    margin: 15px;
}

.artist-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.8rem;
}

.artist-info p {
    margin: 0 0 15px 0;
    color: #ccc;
}

.artist-button {
    display: inline-block;
    background: #1DB954;
    color: #000;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.2s;
}

.artist-card:hover .artist-button {
    background: #000;
    color: #1DB954;
}

/* FEATURED ARTIST FIXES */
.featured-artist h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.artist-info h3 {
    font-size: 1.4rem;
}

.artist-img {
    width: 220px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    margin: 0 auto 20px auto;
}

/* FEATURED ARTIST FIXES */
.featured-artist h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.artist-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.artist-info p {
    font-size: 1rem;
    line-height: 1.5;
}

.artist-img {
    width: 220px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    margin: 0 auto 20px auto;
}

.artist-quote {
    font-size: 0.95rem;
    font-style: italic;
    color: #1DB954; /* Spotify green accent */
    margin-top: 10px;
    padding-left: 15px;
    border-left: 3px solid #1DB954;
    line-height: 1.5;
}

