/* yongjoon.net — Scandinavian Functional */

/* Palette:
   #FAFAF8 — Warm White (primary background)
   #FFFFFF — Card White (link row hover background)
   #1A1A1A — Text Black (primary text)
   #555555 — Soft Dark (secondary text)
   #999999 — Muted Gray (metadata/footer)
   #4A90A4 — Nordic Blue (hover accent, status dot)
   #E8E6E1 — Divider Warm (separator lines)
   #D4E8D0 — Fresh Sage (status badge background)
*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #FAFAF8;
    color: #1A1A1A;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 32px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hero */
.hero {
    padding: 80px 0 40px;
    text-align: center;
}

.hero-name {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 40px;
    color: #1A1A1A;
    letter-spacing: normal;
    margin-bottom: 12px;
}

.hero-bio {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    color: #555555;
    margin-bottom: 20px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #D4E8D0;
    border-radius: 999px;
    padding: 4px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #555555;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4A90A4;
    display: inline-block;
    flex-shrink: 0;
}

/* Links Section */
.links {
    padding: 16px 0;
}

.cat-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #999999;
    margin-top: 48px;
    margin-bottom: 8px;
}

.links .cat-label:first-child {
    margin-top: 0;
}

.link-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #E8E6E1;
    text-decoration: none;
    color: #1A1A1A;
    transition: background-color 0.15s;
}

.link-row:hover {
    background-color: #FFFFFF;
}

.link-name {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
}

.arrow-icon {
    color: #999999;
    flex-shrink: 0;
    transition: transform 0.2s, color 0.2s;
}

.link-row:hover .arrow-icon {
    transform: translateX(4px);
    color: #4A90A4;
}

/* Featured Section */
.featured {
    padding: 16px 0;
}

.featured .cat-label {
    margin-top: 48px;
}

.featured-item {
    border-bottom: 1px solid #E8E6E1;
}

.featured-link {
    display: block;
    padding: 20px 0;
    text-decoration: none;
    color: #1A1A1A;
    transition: background-color 0.15s;
}

.featured-link:hover {
    background-color: #FFFFFF;
}

.featured-name {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.featured-desc {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #555555;
}

/* Now Section */
.now {
    padding: 16px 0 40px;
}

.now .cat-label {
    margin-top: 48px;
}

.now-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.65;
    color: #555555;
}

/* Footer */
.footer {
    padding: 32px 0;
    text-align: center;
    border-top: 1px solid #E8E6E1;
}

.footer-copy {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #999999;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
