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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #000;
    font-size: 14px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.5;
}

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

/* Sidebar Styling */
.sidebar {
    width: 300px;
    padding: 40px;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    border-right: 1px solid #f0f0f0; /* Optional faint divider */
}

.site-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.menu-section {
    margin-bottom: 30px;
}

.category-label {
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

ul {
    list-style: none;
}

ul li {
    margin-bottom: 5px;
}

/* Main Content Styling */
.content {
    margin-left: 300px; /* Offset for sidebar */
    padding: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.caption {
    margin-top: 20px;
    font-size: 12px;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
        position: relative;
        height: auto;
        padding: 20px;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    .content {
        margin-left: 0;
        padding: 20px;
    }
}
