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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.navbar {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: #333;
}

.nav-link.active {
    color: #333;
    border-bottom-color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    min-height: calc(100vh - 80px);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.profile-image {
    flex-shrink: 0;
}

.profile-image img {
    width: 250px;
    height: 250px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #e0e0e0;
}

.bio h1 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #222;
}

.bio p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1.25rem;
}

.social-link {
    color: #333;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.social-link:hover {
    transform: translateY(-2px);
    opacity: 0.7;
}

#music h1, #projects h1 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #222;
    text-align: center;
}

.bands-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.band h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #333;
}

.bandcamp-embed {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 1rem;
    min-height: 120px;
}

.placeholder {
    color: #999;
    font-style: italic;
    text-align: center;
    padding: 2rem;
}

.music-link {
    margin-top: 1rem;
    text-align: center;
}

.spotify-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #fff;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.spotify-link:hover {
    background-color: #333;
    color: #fff;
}

.coming-soon {
    text-align: center;
    padding: 4rem 2rem;
}

.coming-soon p {
    font-size: 1.25rem;
    color: #666;
    font-style: italic;
}

.footer {
    border-top: 1px solid #e0e0e0;
    margin-top: auto;
    padding: 2rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-content p {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .home-content {
        flex-direction: column;
        text-align: center;
    }

    .profile-image img {
        width: 200px;
        height: 200px;
    }

    .bio h1 {
        font-size: 1.75rem;
    }

    .social-links {
        justify-content: center;
    }

    .container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .profile-image img {
        width: 150px;
        height: 150px;
    }

    .bio h1 {
        font-size: 1.5rem;
    }

    .bio p {
        font-size: 1rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a1a1a;
        color: #e0e0e0;
    }

    .navbar {
        background-color: #1a1a1a;
        border-bottom-color: #333;
    }

    .nav-brand {
        color: #e0e0e0;
    }

    .nav-link {
        color: #999;
    }

    .nav-link:hover {
        color: #e0e0e0;
    }

    .nav-link.active {
        color: #e0e0e0;
        border-bottom-color: #e0e0e0;
    }

    .profile-image img {
        border-color: #333;
    }

    .bio h1 {
        color: #f0f0f0;
    }

    .bio p {
        color: #b0b0b0;
    }

    .social-link {
        color: #e0e0e0;
    }

    #music h1, #projects h1 {
        color: #f0f0f0;
    }

    .band h2 {
        color: #e0e0e0;
    }

    .bandcamp-embed {
        background-color: #252525;
        border-color: #333;
    }

    .bandcamp-embed iframe {
        filter: brightness(0.9);
    }

    .spotify-link {
        background-color: #1a1a1a;
        border-color: #e0e0e0;
        color: #e0e0e0;
    }

    .spotify-link:hover {
        background-color: #e0e0e0;
        color: #1a1a1a;
    }

    .coming-soon p {
        color: #999;
    }

    .footer {
        border-top-color: #333;
    }

    .footer-content p {
        color: #999;
    }
}