@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f0f0; 
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ddd;
    background-color: white;
}

.profile-info {
    text-align: right;
    line-height: 1.2;
}

.profile-info h1 {
    margin: 0;
    font-size: 1.8em;
    font-weight: 700;
    color: #333;
}

.profile-info p {
    margin: 0;
    font-size: 0.9em;
    font-weight: 400;
    color: #555;
}

.featured-work {
    background-color: #000;
    color: white;
    padding: 10px 20px 0; 
}

.hero-image-container {
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
    overflow: hidden; 
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center; 
}

.featured-work-label {
    font-size: 1.1em;
    font-weight: 400;
    padding-bottom: 10px; 
}

.work-categories {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 0 20px 20px; 
    background-color: #000;
}

.category-item {
    flex: 1;
    text-align: center;
    cursor: default;
    transition: opacity 0.3s;
}

.category-item:hover {
    opacity: 0.8;
}

.thumbnail-container {
    width: 100%;
    height: 180px;
    margin-bottom: 5px;
    overflow: hidden;
    border: 1px solid #111; 
    background-color: #111;
}

.thumbnail-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.category-label {
    color: white;
    font-size: 1em;
    font-weight: 700;
    padding: 10px 0;
}