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

body {
    font-family: 'Merriweather', serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Layout */
.site-container {
    display: flex;
    height: 100vh;
}

/* Sidebar navigation */
.sidebar {
    width: 220px;
    background-color: #fff;
    padding: 40px 20px;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
}

.logo {
    margin-bottom: 40px;
    text-align: center;
}

.logo a {
    text-decoration: none;
    color: #333;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.logo p {
    font-size: 16px;
    font-style: italic;
}

.nav-menu {
    list-style: none;
    margin-bottom: auto;
    text-align: center;
}

.nav-menu li {
    margin-bottom: 15px;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #000;
}

.nav-menu li.current a {
    color: #000;
    font-weight: bold;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    margin-right: 10px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #000;
}

/* Main content area */
.content {
    flex: 1;
    margin-left: 220px;
    height: 100vh;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    /* Show the horizontal scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

/* Style scrollbar for Chrome/Safari */
.content::-webkit-scrollbar {
    height: 8px;
    background: transparent;
}

.content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.4);
}

/* Gallery container with horizontal scrolling */
.gallery-container {
    width: max-content;
    height: 100%;
    position: relative;
    background-color: #fff;
    display: flex;
    align-items: center;
}

.gallery-scrollable {
    display: flex;
    height: 100%;
    padding: 0 40px;
}

.gallery-item {
    flex: 0 0 auto;
    height: 100%;
    padding: 40px 60px;
    display: flex;
    align-items: center;
}

.gallery-item img {
    height: 75vh;
    max-width: none;
    object-fit: contain;
    box-shadow: none;
}

/* Project description - moved below gallery */
.project-description {
    position: static;
    width: 100%;
    max-width: 800px;
    margin: 60px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: none;
    margin-left: 220px;
}

.project-description h2 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
}

.project-description p {
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .site-container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 20px;
        justify-content: flex-start;
    }
    
    .content {
        margin-left: 0;
        height: auto;
    }
    
    .gallery-container {
        height: 70vh;
    }
    
    .project-description {
        margin-left: 0;
        width: 100%;
    }
} 