/* Global Styles */
body {
    background-color: #cfcfcf;
    color: #333;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 700px;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* Header */
header {
    margin-bottom: 60px;
    text-align: left;
}

h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #555;
}

#copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    color: #777;
    transition: background-color 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#copy-btn:hover {
    background-color: #e0e0e0;
    color: #000;
}

/* Main Content */
.section-title {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #ddd;
}

/* Project List */
.project-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-item {
    display: flex;
    flex-direction: column;
    padding: 24px 0;
    border-bottom: 1px solid #eee;
    transition: opacity 0.2s;
}

.project-item:last-child {
    border-bottom: none;
}



.project-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 6px;
    display: flex;
    gap: 10px;
}

.project-category {
    font-weight: 600;
    text-transform: uppercase;
    color: #444;
}

.project-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.project-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-link:hover .project-title {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: #ddd;
}

/* Footer */
footer {
    margin-top: 80px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #aaa;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .container {
        padding: 24px 20px;
    }

    h1 {
        font-size: 20px;
    }
}