/* Simple, minimal styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-weight: 300px;
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #1a1a1a;
    line-height: 1.6;
    color: white;
}

h1,
h2,
h3,
p,
li,
a {
    color: white;
}

.container {
    max-width: 850px;
    margin: 0 auto;
    padding: 40px;
    min-height: 100vh;
}

/* Home Page */
h1 {
    font-weight: bold;
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
}

.subtitle {
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1.15em;
}

.contact-line {
    text-align: center;
    margin: 15px 0;
    line-height: 1.8;
}

.contact-line a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
}

.social-links-line a {
    text-decoration: underline;
}

.links-section {
    text-align: center;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.links-section a {
    color: white;
    text-decoration: none;
}

.me-section {
    text-align: center;
    margin-top: 40px;
}

.me-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: block;
    margin: 0 auto;
}

.me-caption {
    margin-top: 10px;
    font-size: 0.9em;
    color: white;
}

/* Sub-pages */
.header {
    text-align: center;
    margin-bottom: 40px;
}

.nav-links {
    margin-top: 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

/* Sections */
.section {
    margin-bottom: 40px;
}

.section-title {
    font-weight: bold;
    font-size: 1.3em;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

/* Projects */
.project {
    margin-bottom: 30px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}

.project:last-child {
    border-bottom: none;
}

.project-title {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.project-description {
    margin-left: 20px;
}

.project-description ul {
    list-style-type: disc;
    margin-left: 20px;
}

.project-description li {
    margin-bottom: 8px;
}

/* Work Experience */
.work-item {
    margin-bottom: 25px;
}

.work-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.job-title {
    font-weight: bold;
}

.date {
    font-size: 0.9em;
    color: #666;
}

.company {
    margin-bottom: 10px;
    color: #666;
}

.work-item ul {
    list-style-type: disc;
    margin-left: 20px;
}

.work-item li {
    margin-bottom: 8px;
}

/* Personal Page */
.section ul {
    list-style-type: disc;
    margin-left: 20px;
}

.section li {
    margin-bottom: 10px;
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.photo-item {
    border: 1px solid #ccc;
}

.photo-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.photo-caption {
    padding: 10px;
    font-size: 0.9em;
    text-align: center;
    border-top: 1px solid #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 30px 15px;
    }

    h1 {
        font-size: 1.5em;
    }

    .work-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .date {
        margin-top: 5px;
    }

    .photo-gallery {
        grid-template-columns: 1fr;
    }
}