.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    backdrop-filter: blur(20px);
    background: linear-gradient(to bottom,
            #ffffff 0%,
            #ededed 45%,
            #e2e2e2 50%,
            #d0d0d0 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    height: 95px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    height: 80px;
}

.logo {
    height: 50px;
}



.main-nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    display: flex;
    align-items: center;
    height: 80px;
    padding: 0 16px;
    transition: all 0.3s ease;

}

.main-nav li a:hover {
    transform: translateY(-5px);

}

.header-button {
    display: inline-block;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: bold;
    color: #f0f0f0;
    text-decoration: none;
    border: 1px solid #111;
    border-radius: 50px;
    background: linear-gradient(to bottom,
            #407cff 0%,
            #275af6 45%,
            #033bd6 50%,
            #0836a3 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5),
        0 1px 2px rgba(0, 0, 0, 0.6);
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.8);
    position: relative;
}

.header-button:hover {
    background: linear-gradient(to bottom,
            #1c3ba3 0%,
            #3a6ef6 45%,
            #1e4bd6 50%,
            #4a8cff 100%);
    box-shadow: none;
    border: none;
}

.header-container {
            width: 90%;
            max-width: 1100px;
            margin: 0 auto;
        }

/* Hide hamburger on desktop */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: black;
    padding: 10px;
}

/* Mobile */
@media (max-width: 768px) {

    .site-header {
        position: fixed;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);

        width: calc(100% - 30px);
        max-width: calc(100% - 30px);

        border-radius: 30px;
    }

    .header-inner {
        padding: 10px 18px;
    }

    .logo {
        height: 30px;
        margin-left: 0px;
    }

    .menu-toggle {
        display: block;
        font-size: 28px;
        padding: 8px;
    }

    .header-button {
        display: none;
    }

    .main-nav {
        display: none;

        position: absolute;
        top: calc(100% + 10px);
        left: 50%;
        transform: translateX(-50%);

        width: 100%;

        backdrop-filter: blur(20px);

        border-radius: 24px;
        overflow: hidden;

        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .main-nav li a {
        justify-content: center;
        height: auto;
        padding: 18px;
    }

    .main-nav li a:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: none;
    }
}