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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 250px;
    background-color: #000;
    padding: 2rem 1.5rem;
    border-right: 1px solid #333;
}

.sidebar h1 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #fff;
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    margin-bottom: 0.5rem;
}

.nav-link {
    color: #888;
    text-decoration: none;
    font-size: 1rem;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.content {
    flex: 1;
    padding: 3rem;
}

.page {
    display: none;
}

.page.active {
    display: block;
}

.album-section {
    max-width: 800px;
    margin: 0 auto;
}

.album-art {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.album-art img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: transform 0.2s ease;
}

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

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

.album-info h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #fff;
}

.album-info p {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 2.5rem;
}

.service-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.service-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background-color: #1a1a1a;
    color: #e0e0e0;
    text-decoration: none;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.service-btn:hover {
    background-color: #2a2a2a;
    border-color: #555;
    color: #fff;
    transform: translateY(-1px);
}

.service-btn i {
    font-size: 1.2rem;
}

#about {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 6rem);
}

.about-content {
    max-width: 600px;
    text-align: center;
    padding: 4rem 2rem;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 8px;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #fff;
}

.about-content p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
}

.projects-link {
    color: #888;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.projects-link:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        padding: 1rem;
    }
    
    .sidebar ul {
        display: flex;
        justify-content: center;
        gap: 2rem;
    }
    
    .content {
        padding: 2rem 1rem;
    }
    
    .album-art {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .album-art img {
        width: 200px;
        height: 200px;
    }
    
    .service-buttons {
        grid-template-columns: 1fr;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.2s ease;
}

.close:hover {
    color: #ccc;
}

@media (max-width: 480px) {
    .album-art img {
        width: 150px;
        height: 150px;
    }
    
    .album-info h2 {
        font-size: 2rem;
    }
    
    .close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
}