/* =========================================================
   Site Header
   ========================================================= */

.site-header {
    width: 100%;
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 32px;
    box-sizing: border-box;

    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;

    position: sticky;
    top: 0;
    z-index: 1000;
}


/* =========================================================
   Logo
   ========================================================= */

.site-logo {
    color: #111827;

    font-size: 1.25rem;
    font-weight: 700;

    text-decoration: none;
    letter-spacing: -0.02em;
}

.site-logo:hover {
    color: #2563eb;
}

.site-logo {
    display: inline-flex;
    align-items: center;
}

.site-logo img {
    display: block;
    width: auto;
    height: 42px;
    max-width: 180px;
}

/* =========================================================
   Navigation
   ========================================================= */

.site-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* =========================================================
   Navigation Links
   ========================================================= */

.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;
    padding: 0 16px;

    box-sizing: border-box;

    border-radius: 8px;

    font-size: 0.95rem;
    font-weight: 600;

    text-decoration: none;

    transition:
        background-color 0.15s ease,
        color 0.15s ease,
        border-color 0.15s ease;
}


/* Login */

.nav-link-login {
    color: #374151;
    border: 1px solid transparent;
}

.nav-link-login:hover {
    background: #f3f4f6;
    color: #111827;
}


/* Register */

.nav-link-register {
    color: #ffffff;
    background: #2563eb;
    border: 1px solid #2563eb;
}

.nav-link-register:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}


/* =========================================================
   Main Content
   ========================================================= */

.site-main {
    width: 100%;
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 600px) {

    .site-header {
        min-height: 64px;
        padding: 0 16px;
    }

    .site-logo {
        font-size: 1.1rem;
    }

.site-nav {
    display: flex;
    align-items: center;
    gap: 10px;

    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
    display: none;
}

.nav-link {
    flex-shrink: 0;
}
}