/* ===================================
   Option 1: Minimal Academic Design
   Clean, text-focused, traditional
   =================================== */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.8;
    color: #2c3e50;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Header */
.header {
    text-align: center;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #34495e;
}

.avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid #34495e;
}

.header-text h1 {
    font-size: 2.25rem;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.tagline {
    font-size: 1.125rem;
    color: #7f8c8d;
    font-style: italic;
}

/* Main Content */
main {
    margin-top: 2rem;
}

/* Section Headings */
h2 {
    font-size: 1.75rem;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 1.25rem;
    margin-top: 2.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #bdc3c7;
}

h3 {
    font-size: 1.375rem;
    font-weight: 400;
    color: #34495e;
    margin-bottom: 1rem;
}

/* About Section */
.about p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    text-align: justify;
}

.about a {
    color: #2980b9;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.2s ease;
}

.about a:hover {
    border-bottom-color: #2980b9;
}

/* Interests Section */
.interests {
    margin-top: 2rem;
}

.interests ul {
    list-style: none;
    padding-left: 0;
}

.interests li {
    font-size: 1rem;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.interests li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2980b9;
    font-size: 1.5rem;
    line-height: 1;
}

/* Section Divider */
.section-divider {
    border: none;
    border-top: 2px solid #34495e;
    margin: 3rem 0;
}

/* Portfolio Section */
.portfolio {
    margin-top: 2rem;
}

.project {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ecf0f1;
}

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

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project h3 {
    font-size: 1.375rem;
    margin: 0;
    color: #2c3e50;
}

.project-status {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
}

.project-status.active {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.project-status.archived {
    background-color: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.project p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    font-size: 0.875rem;
    padding: 0.25rem 0.625rem;
    background-color: #ecf0f1;
    color: #7f8c8d;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.project-link {
    color: #2980b9;
    text-decoration: none;
    font-size: 0.9375rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.2s ease;
}

.project-link:hover {
    border-bottom-color: #2980b9;
}

/* Footer */
footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #34495e;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.9375rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.2s ease;
}

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

.social-links svg {
    width: 20px;
    height: 20px;
}

.copyright {
    font-size: 0.875rem;
    color: #7f8c8d;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 2rem 1.5rem;
    }

    .header-text h1 {
        font-size: 1.875rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .avatar {
        width: 120px;
        height: 120px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .about p {
        font-size: 1rem;
        text-align: left;
    }

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

    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
    }

    .container {
        max-width: 100%;
    }

    .project {
        break-inside: avoid;
    }

    .social-links a {
        color: black;
    }
}
