/* 1. RESET & BASICS */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    /* Pure black to blend with your logo's background */
    background-color: #000000; 
    color: #ffffff;
    text-align: center; /* Centers everything by default */
}

/* 2. NAVIGATION */
nav {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 20px 40px;
    position: absolute; 
    width: 100%; 
    top: 0;
    z-index: 10;
}

.nav-logo {
    font-weight: bold;
    letter-spacing: 2px;
    color: #3b9cd7; /* Matches the blue in your logo text */
}

.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { text-decoration: none; color: #fff; font-weight: bold; }
.nav-links a:hover { color: #d45d79; /* Matches the pink in headphones */ }

/* 3. HERO SECTION (The Logo) */
.hero {
    min-height: 100vh; /* Takes up full screen height */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px; /* Space for nav */
}

.main-logo {
    /* This handles the 3000x3000px size */
    width: 100%;
    max-width: 600px; /* Prevents it from being too huge on desktop */
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #3b9cd7; /* Blue border */
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.cta-button:hover {
    background-color: #3b9cd7;
    color: #000;
}

/* 4. SECTIONS */
.container {
    padding: 50px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

h2 {
    margin-bottom: 30px;
    color: #888; /* Subtle grey for headers */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.music-placeholder {
    border: 1px solid #333;
    padding: 50px;
    background-color: #0a0a0a;
    color: #555;
    border-radius: 8px;
}

/* MOBILE FIXES */
@media (max-width: 600px) {
    nav { padding: 20px; flex-direction: column; gap: 10px; }
    .main-logo { max-width: 90%; } /* Shows larger on mobile */
}