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

:root {
    --dark-blue: #1a1a2e;
    --light-blue: #e8eef2;
    --soft-pink: #f5e6e8;
    --soft-yellow: #fef9e7;
    --light-beige: #f5f1eb;
    --text-dark: #1a1a2e;
    --text-light: #4a4a5c;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Sidebar Styles */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 25%;
    height: 100vh;
    padding: 3rem 2.5rem;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    z-index: 100;
    overflow-y: auto;
}

.name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4rem;
    line-height: 1.2;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.work-section {
    flex: 1;
    margin-bottom: 3.5rem;
}

.work-list {
    list-style: none;
}

.work-item {
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 2;
    transition: color 0.3s ease;
    cursor: pointer;
}

.work-item:hover {
    color: var(--text-light);
}

.work-item.active,
.work-item:focus {
    font-weight: 500;
}

.contact-section {
    margin-top: auto;
    padding-top: 3rem;
}

.contact-email {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: var(--text-light);
}

/* Main Content Styles */
.main-content {
    margin-left: 25%;
    width: 75%;
    min-height: 100vh;
}

.hero {
    margin: 0px 12px;
    background-color: var(--light-blue);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.hero-text {
    max-width: 700px;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 300;
}

.scroll-prompt {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 300;
    margin-top: 1.5rem;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 12px;
    margin-top: 0;
}

.portfolio-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

/* Project Page Styles */
.project-content {
    padding: 4rem;
}

.project-header {
    margin-bottom: 4rem;
}

.project-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.project-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    font-weight: 300;
    max-width: 800px;
}

.project-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.project-image-container {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.project-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Vandevenne Specific Layout */
.vandevenne-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.project-image-full {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.project-image-full img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.project-image-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
}

.project-image-half {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.project-image-half img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .sidebar {
        width: 30%;
    }
    
    .main-content {
        margin-left: 30%;
        width: 70%;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .sidebar {
        position: relative;
        width: 100%;
        height: auto;
        padding: 2rem;
    }
    
    .name {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
    }
    
    .hero {
        padding: 3rem 2rem;
        min-height: 50vh;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item {
        aspect-ratio: 4/3;
    }
    
    .project-image-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .sidebar {
        padding: 1.5rem;
    }
    
    .name {
        font-size: 1.25rem;
    }
    
    .hero {
        padding: 2rem 1.5rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

