/* GENERAL STYLES */
:root {
    --primary-color: #FFFFFF; /* White */
    --secondary-color: #AAAAAA; /* Grey for text */
    --background-color: #121212; /* Dark background */
    --accent-color: #1DB954; /* A vibrant color, like Spotify green */
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background-color);
    color: var(--primary-color);
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    text-transform: uppercase;
}

h1 { font-size: 4rem; font-weight: 900; margin: 0; }
h2 { font-size: 2.5rem; margin-bottom: 20px; }
h3 { font-size: 1rem; margin-top: 15px; color: var(--primary-color); }
h4 { font-size: 1.2rem; color: var(--accent-color); }

p { line-height: 1.7; color: var(--secondary-color); }
a { color: var(--accent-color); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--primary-color); }
section { padding: 80px 0; }

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwzNjUyOXwwfDF8c2VhcmNofDEwfHxtdXNpY3xlbnwwfHx8fDE2ODE0MDk3Mzg&ixlib=rb-4.0.3&q=80&w=1080') no-repeat center center/cover;
}
.hero-content p { font-size: 1.2rem; color: var(--primary-color); margin: 10px 0 30px; }
.cta-button {
    background-color: var(--accent-color);
    color: var(--primary-color) !important;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
}
.cta-button:hover { background-color: #1ed760; }

/* ABOUT SECTION */
.about-section { background-color: #181818; }
.about-container { display: flex; align-items: center; gap: 50px; text-align: left; }
.profile-logo { width: 250px; height: auto; max-width: 100%; }
.about-text p { margin-bottom: 20px; }
.about-text strong { color: var(--primary-color); }

/* RELEASES SECTION */
.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.release-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.release-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.release-item h3 { transition: color 0.3s ease; }
.release-item:hover h3 { color: var(--accent-color); }

/* CONTACT SECTION */
.contact-section { background-color: #181818; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}
.email-link { font-size: 1.2rem; font-weight: 400; text-transform: none; }

/* FOOTER */
.site-footer {
    background-color: #000;
    padding: 40px 20px;
    color: #888;
}
.footer-content p {
    margin: 8px 0;
    font-size: 0.9rem;
    color: #888;
}
.footer-content strong { color: #ccc; }

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .about-container { flex-direction: column; text-align: center; }
    .profile-logo { margin-bottom: 20px; width: 180px; }
    .contact-grid { grid-template-columns: 1fr; }
}