/* --- GLOBAL STYLES --- */
html {
    scroll-behavior: smooth; 
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    text-align: center;
}

/* --- HEADER STYLING (AANGEPAST) --- */
.main-header {
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #282828;
}

.header-container {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: baseline; /* Lijn logo en nav mooi uit */
    gap: 30px; /* Ruimte tussen logo en nav */
}

.logo a {
    color: var(--spotify-green); /* KLEUR AANGEPAST */
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

.main-nav a {
    color: var(--spotify-text-medium);
    text-decoration: none;
    margin-left: 0; /* Verwijderd, we gebruiken nu gap */
    margin-right: 20px; /* Ruimte tussen nav items */
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}
.main-nav a:last-child {
    margin-right: 0;
}

.main-nav a:hover {
    color: var(--spotify-text-light);
}

.header-right {
    /* Dit deel is voor de knop */
}

/* --- EINDE HEADER STYLING --- */

.content-wrapper {
    max-width: 960px;
    margin: 0 auto;
    padding: 80px 20px;
}

h1 {
    color: #1DB954; 
    font-size: 48px;
    margin-bottom: 15px;
}

h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

h3 {
    font-size: 22px;
    color: #1DB954;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- SPOTIFY BUTTON --- */
.spotify-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #1DB954;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 500px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.spotify-login-btn:hover {
    background-color: #1aa34a;
    transform: scale(1.05);
}

.spotify-login-btn img {
    width: 20px;
    height: 20px;
}

/* NIEUW: Stijl voor een kleinere knop in de header */
.button-small {
    padding: 8px 16px;
    font-size: 14px;
}

/* --- SECTION STYLING --- */
#hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #E6FDF0; 
}
#hero p {
    color: #1f3d2a; 
}

#how-it-works, #final-cta {
    background-color: #121212;
}

.steps-container, .inspiration-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.step, .inspiration-card {
    flex-basis: 280px;
    flex-grow: 1;
}

.step-icon, .card-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

#inspiration {
    background-color: #191919;
}

.inspiration-card {
    background-color: #282828;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.inspiration-card:hover {
    transform: translateY(-5px);
}

.inspiration-card p {
    font-size: 16px;
    color: #b3b3b3;
}

/* --- FOOTER --- */
footer {
    background-color: #191919;
    padding: 20px;
    font-size: 14px;
    color: #b3b3b3;
}
footer .content-wrapper {
    padding: 20px;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 20px; 
}
.footer-links {
    display: flex; 
    gap: 20px; 
    justify-content: center; 
    flex-grow: 1; 
}
footer a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.2s ease; 
}
footer a:hover {
    color: #ffffff;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 768px) {
    .main-header {
        padding: 15px;
    }
    /* Verberg navigatie en knop op mobiel voor een schone look */
    .main-nav, .header-right {
        display: none; 
    }
    .header-left {
        justify-content: center; /* Centreer het logo */
        width: 100%;
    }
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 28px;
    }
    .content-wrapper {
        padding: 60px 20px;
    }
    .steps-container, .inspiration-container {
        flex-direction: column;
        gap: 40px; 
    }
    footer .content-wrapper {
        flex-direction: column;
    }
}
/* --- Stats Section --- */
#stats {
    background-color: #191414; /* A slightly different dark color */
    padding: 60px 0;
    text-align: center;
}

#stats h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    min-width: 200px;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: bold;
    color: var(--spotify-green, #1DB954);
    line-height: 1.1;
}

.stat-label {
    font-size: 18px;
    color: #b3b3b3;
    margin-top: 5px;
}
/* --- Beta Access Banner --- */
.beta-banner {
    background-color: #282828;
    border-bottom: 1px solid #1DB954;
    padding: 10px 0;
    text-align: center;
}

/* Make the content wrapper inside the banner a bit smaller */
.beta-banner .content-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
}

.beta-banner h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #ffffff;
}

.beta-banner .beta-text {
    font-size: 16px;
    color: #b3b3b3;
    max-width: 550px;
    margin-bottom: 25px;
}

.request-access-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
}

.request-access-form input {
    padding: 12px 20px;
    background-color: #535353;
    border: 1px solid #121212;
    border-radius: 500px;
    color: #ffffff;
    font-size: 15px;
    min-width: 250px;
}

.request-access-form input::placeholder {
    color: #b3b3b3;
}

.request-access-form button {
    background-color: #1DB954;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 500px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.request-access-form button:hover {
    background-color: #1aa34a;
}

.form-message {
    min-height: 22px;
    margin-top: 15px;
    font-weight: bold;
}
