body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

    nav {
        padding: 1rem 0;
        text-align: center;
        margin-right: 1rem;
    }

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

header {
    padding: 2rem;
    text-align: center;
}

.profile-container {
    max-width: 700px;
    margin: auto;
}

.profile-pic {
    width: 150px; /* Adjust as needed */
    height: 150px; /* Adjust as needed */
    border-radius: 50%; /* Circular image */
    margin-bottom: 1rem;
    /* User will need to replace 'placeholder_profile.jpg' with their actual image */
}

header h1 {
    margin-bottom: 0.5rem;
}

main {
    padding: 1rem;
}

section {
    /* background: #fff; */
    margin: 1rem auto;
    padding: 1.5rem;
    border-radius: 8px;
    max-width: 900px;
}

section h2 {
    color: #333;
    margin-top: 0;
}

#current-exploration ul {
    list-style: disc;
    padding-left: 20px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.project-card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: 5px;
}

.project-card h3 {
    margin-top: 0;
}

.view-all-projects {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #ffffff00;
    color: #000000;
    margin-top: 2rem;
}

/* Add a bit of responsiveness */
@media (max-width: 600px) {
    nav ul li {
        display: block;
        margin: 5px 0;
    }
    .projects-grid {
        grid-template-columns: 1fr;
    }
} 