#header {
    min-height: 120px;
}

header {
    height: 100px;
    background: #1b1b1b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    border-bottom: 1px solid #333;
    position: relative;
}

.logo {
    color: white;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: bold;
}

.site-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.2rem;
    font-weight: 700;
    color:  #c9a227;
}


.menu {
    display: flex;
    font-size: 1.6rem;
    gap: 20px;
}

.menu a {
    color: white;
    text-decoration: none;
 }

.nav-link {
    text-decoration: none;
    color: #aaa;
    padding: 8px 12px;
    transition: all 0.2s;
}

.nav-link:hover {
    color: #fff;
}

.nav-link.active {
    color: #fff;
    font-weight: bold;
    border-bottom: 2px solid #fff;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* 모바일 */
@media (max-width: 1100px) {
    header {
        height: 80px;
        padding: 0 20px;
        flex-direction: row;
        justify-content: space-between;
    }

    .site-title {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #1b1b1b;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 15px;
        z-index: 1000;
    }

    .menu.open {
        display: flex;
    }
}