/* 2-Column Layout for Index Page */
.container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 300px;
    background: #f8f9fa;
    padding: 40px 30px;
    border-right: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 0;
    height: 100vh;
}

.pfp {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.name {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1;
}

/* Content area in 2-column layout */
.container .content {
    flex: 1;
    padding: 60px 80px;
    max-width: 900px;
}

.project-date {
    font-family: "Departure Mono", monospace;
    font-size: 13px;
    color: #333;
}

.project-subtitle {
    font-style: italic;
    color: #333;
    font-size: 15px;
    display: block;
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        position: static;
        height: auto;
        padding: 30px 20px;
    }

    .sidebar .socials {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0;
        width: 100%;
        text-align: center;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .sidebar .socials li {
        display: inline;
        white-space: nowrap;
    }

    .sidebar .socials li:not(:last-child)::after {
        content: " • ";
        margin: 0 8px;
    }

    .container .content {
        padding: 40px 20px;
    }
}
