/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #faf8f3;
    color: #111;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: #555;
}

/* CONTAINER */
.container {
    max-width: 720px; /* Limits width to keep that clean, readable "blog" feel */
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVIGATION */
nav {
    padding: 30px 0;
    margin-bottom: 40px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-pic {
    width:85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #eaeaea;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    font-size: 0.95rem;
    color: #666;
}

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

/* HERO SECTION (Dwijen Style) */
.hero-section {
    padding-bottom: 8px;
}

.hero-text {
    font-size: 1.5rem;
    font-weight: 400;
    color: #222;
    margin-bottom: 40px;
    line-height: 1.5;
}

.highlight {
    color: #000;
    font-weight: 500;
    /* Optional: Add a subtle background highlight if you want */
    background-color: #f0f0f0;
}

.status-section {
    margin-top: 20px;
    /* margin-bottom: 4px; */
}

.section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    margin-bottom: 15px;
    font-weight: 500;
}

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

.status-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 4px;
    color: #444;
    font-size: 1rem;
}

/* Add a custom bullet point matching the minimal aesthetic */
.status-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #999;
}

/* DIVIDER */
.divider {
    border: 0;
    height: 1px;
    background: #eaeaea;
    margin: 40px 0;
}

/* PROJECTS SECTION (Freeman Style) */
.projects-section {
    padding-bottom: 60px;
}

.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.project-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 15px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.project-card:hover {
    background-color: #f0f0f0;
}

.project-image img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    background-color: #eee;
    border: 1px solid #eaeaea;
}

.project-info {
    flex: 1;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
}

.project-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
}

.project-year {
    font-size: 0.85rem;
    color: #888;
    font-variant-numeric: tabular-nums;
}

.project-description {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

/* FOOTER */
footer {
    padding: 40px 0;
    border-top: 1px solid #eaeaea;
    color: #888;
    font-size: 0.9rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links a {
    color: #666;
    font-size: 1.5rem;
    transition: color 0.2s ease;
}

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

/* RESPONSIVE */
@media (max-width: 600px) {
    .hero-text {
        font-size: 1.3rem;
    }
    
    .project-card {
        padding: 10px 0; /* Remove side padding on mobile to save space */
    }
    
    .project-card:hover {
        background-color: transparent; /* Disable hover background on touch devices */
    }
}