/* Body layout adjustment for site header */
body {
    flex-direction: column;
    align-items: center;
    padding-top: 0;
}

/* Site Header - ajot.me style (full-width) */
.site-header {
    background: #ffffff;
    padding: 24px 20px;
    margin-bottom: 24px;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.site-header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Identity section */
.site-identity {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar-link {
    display: block;
    flex-shrink: 0;
}

.avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
}

.site-identity-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.site-name {
    font-family: 'Roboto Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.site-name:hover {
    color: #4a4a4a;
}

.site-tagline {
    font-family: 'Roboto Mono', monospace;
    font-size: 13px;
    color: #6b7280;
}

/* Navigation */
.site-nav {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.nav-link {
    font-family: 'Roboto Mono', monospace;
    font-size: 13px;
    font-weight: 400;
    color: #6b7280;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #1a1a1a;
}

.nav-current {
    color: #1a1a1a;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Responsive */
@media (max-width: 700px) {
    .site-header {
        padding: 20px 16px;
        margin-bottom: 16px;
    }

    .site-identity {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .site-identity-text {
        align-items: center;
    }

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

    .site-name {
        font-size: 16px;
    }

    .site-tagline {
        font-size: 12px;
    }

    .site-nav {
        gap: 4px;
    }

    .nav-link {
        font-size: 11px;
        padding: 5px 8px;
    }
}
