/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

/* Hamburger Menu */
.hamburger {
    width: 30px;
    height: 25px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #fff;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(11.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-11.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: right 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: lowercase;
    transition: opacity 0.3s ease;
}

.mobile-menu a:hover {
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.social-links a {
    font-size: 18px;
}

/* Main Container */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 120px 20px 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Artist Header */
.artist-header {
    text-align: center;
    margin-bottom: 60px;
}

.artist-name {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease;
}

.tagline {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #ccc;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Streaming Links */
.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.stream-link {
    display: block;
    width: 100%;
    max-width: 300px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.stream-link:nth-child(2) {
    animation-delay: 0.6s;
}

.stream-link:nth-child(3) {
    animation-delay: 0.8s;
}

.stream-link:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.stream-badge {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Add white border to Spotify badge to match others */
.stream-link:first-child .stream-badge {
    border: 1px solid #fff;
}

/* Make YouTube Music badge smaller and centered */
.stream-link:last-child .stream-badge {
    max-width: 250px;
    margin: 0 auto;
}

/* Bio Page Styles */
.bio-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 40px 60px;
}

.bio-header {
    text-align: center;
    margin-bottom: 60px;
}

.bio-header h1 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.bio-content {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 300;
}

.bio-content p {
    margin-bottom: 25px;
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    border-bottom: 1px solid #fff;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Music Page Styles */
.music-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px 60px;
    min-height: 100vh;
}

.music-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease;
}

.page-subtitle {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #ccc;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.song-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 20px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: fadeInUp 0.8s ease both;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.song-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
}

.album-art {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.song-card:hover .album-art img {
    transform: scale(1.05);
}

.song-info {
    text-align: center;
}

.song-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #fff;
}

.streaming-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.stream-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stream-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.stream-icon .icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Stagger animation for song cards */
.song-card:nth-child(1) { animation-delay: 0.1s; }
.song-card:nth-child(2) { animation-delay: 0.2s; }
.song-card:nth-child(3) { animation-delay: 0.3s; }
.song-card:nth-child(4) { animation-delay: 0.4s; }
.song-card:nth-child(5) { animation-delay: 0.5s; }
.song-card:nth-child(6) { animation-delay: 0.6s; }
.song-card:nth-child(7) { animation-delay: 0.7s; }
.song-card:nth-child(8) { animation-delay: 0.8s; }
.song-card:nth-child(9) { animation-delay: 0.9s; }
.song-card:nth-child(10) { animation-delay: 1.0s; }
.song-card:nth-child(11) { animation-delay: 1.1s; }

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .artist-name {
        font-size: 36px;
        letter-spacing: 2px;
    }
    
    .tagline {
        font-size: 14px;
    }
    
    .stream-link {
        max-width: 250px;
    }
    
    .bio-container {
        padding: 100px 25px 50px;
    }
    
    .bio-header h1 {
        font-size: 32px;
    }
    
    .bio-content {
        font-size: 16px;
    }
    
    /* Music page mobile styles */
    .music-container {
        padding: 100px 25px 50px;
    }
    
    .page-title {
        font-size: 36px;
        letter-spacing: 2px;
    }
    
    .page-subtitle {
        font-size: 14px;
    }
    
    .catalog-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }
    
    .song-card {
        padding: 16px;
    }
    
    .song-title {
        font-size: 16px;
    }
    
    .stream-icon {
        width: 36px;
        height: 36px;
    }
    
    .stream-icon .icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .artist-name {
        font-size: 28px;
    }
    
    .mobile-menu a {
        font-size: 20px;
    }
}