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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: white;
    color: #333;
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 200px;
    height: 100vh;
    padding: 40px 30px;
    background: white;
}

.artist-name {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 0px;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    margin-bottom: 12px;
}

.sidebar ul li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s;
}

.sidebar ul li a:hover {
    opacity: 0.6;
}

.content {
    margin-left: 200px;
    padding: 60px 40px;
}

.hero-image {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    display: block;
}

.gallery {
    max-width: 900px;
    margin: 0 auto;
}

.gallery-item {
    margin-bottom: 80px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    display: block;
}

.gallery-item .caption {
    margin-top: 12px;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.cv-content {
    max-width: 800px;
    line-height: 1.8;
}

.cv-content h2 {
    font-size: 14px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cv-content h2:first-child {
    margin-top: 0;
}

.cv-content p {
    margin-bottom: 15px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .sidebar {
        position: static;
        width: 100%;
        height: auto;
        padding: 20px;
    }
    
    .content {
        margin-left: 0;
        padding: 20px;
    }
    
    .gallery-item {
        margin-bottom: 40px;
    }
    
    .gallery-item img {
        max-height: 70vh;
    }
    
    .hero-image img {
        max-height: 70vh;
    }
}
