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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;
    height: 70px;

    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);

    border-bottom: 1px solid #e6e6e6;
}

.header-inner {
    width: 90%;
    max-width: 1200px;
    height: 100%;

    margin: auto;

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

.site-logo {
    font-size: 32px;
    font-weight: bold;
    color: #2f8cff;

    text-decoration: none;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-link {
    color: #666;
    text-decoration: none;
    font-size: 15px;
}

.header-button {
    padding: 10px 22px;

    background: #2f8cff;
    color: white;

    border-radius: 50px;

    text-decoration: none;
    font-weight: bold;

    transition: .2s;
}

.header-button:hover {
    background: #1975e8;
}