@charset "utf-8";

.geumho-header {
    border-bottom: 1px solid rgba(58, 36, 21, 0.14);
    background: rgba(255, 255, 255, 0.98);
	width: 100%;

	position: sticky;
	top: 0;
	z-index: 1000;
	/* background-color: transparent; */
	box-shadow: none;

	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.geumho-header__inner {
    display: flex;
    align-items: center;
    width: min(calc(100% - 48px), 1280px);
    min-height: 82px;
    margin: 0 auto;
}

.geumho-header.on { 
	position: fixed; 

	background-color: #fff;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.geumho-header__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--geumho-brown, #3a2415);
}

.geumho-header__logo-mark {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
}
.geumho-header__logo-mark img { width: 100%; }

.geumho-header__logo-mark i {
    position: absolute;
    display: block;
    border-radius: 50%;
}

.geumho-header__logo-mark i:nth-child(1) {
    top: 1px;
    left: 7px;
    width: 17px;
    height: 17px;
    background: var(--geumho-pink, #e93472);
}

.geumho-header__logo-mark i:nth-child(2) {
    right: 1px;
    bottom: 4px;
    width: 16px;
    height: 16px;
    background: var(--geumho-teal, #18a88b);
}

.geumho-header__logo-mark i:nth-child(3) {
    bottom: 0;
    left: 0;
    width: 15px;
    height: 15px;
    background: var(--geumho-yellow, #f4c437);
}

.geumho-header__logo-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.geumho-header__logo-text img {
    width: 170px;
}

.geumho-header__logo-text small {
    color: #8a7a6e;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}

.geumho-header__nav--pc {
    margin-left: auto;
}

.geumho-header__nav ul {
    display: flex;
    align-items: center;
    gap: 45px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.geumho-header__nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    color: var(--geumho-brown, #3a2415);
    font-size: 17px;
    font-weight: 750;
}

.geumho-header__nav a:hover,
.geumho-header__nav a.is-active {
    color: var(--geumho-pink, #e93472);
}

.geumho-header__nav a.is-active::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--geumho-pink, #e93472);
    content: "";
}

.geumho-header__apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    min-height: 42px;
    margin-left: 40px;
    padding: 10px 18px;
    border: 2px solid var(--geumho-brown, #3a2415);
    border-radius: 999px;
    background: var(--geumho-brown, #3a2415);
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.geumho-header__apply:hover {
    border-color: var(--geumho-pink, #e93472);
    background: var(--geumho-pink, #e93472);
    transform: translateY(-2px);
}

.geumho-header__apply.is-disabled {
    background: #e4e4e4;
    border: 1px solid #e4e4e4;
    font-weight: 600;
    color: #bababa;
}
.geumho-header__apply.is-disabled:hover {
	transform: none;
}

.geumho-header__menu-btn,
.geumho-header__mobile-menu {
    display: none;
}

@media all and (max-width: 1024px) {
    .geumho-header__nav ul {
        gap: 30px;
    }

    .geumho-header__apply {
        margin-left: 22px;
    }
}

@media all and (max-width: 768px) {
    .geumho-header__inner {
        width: min(calc(100% - 32px), 1160px);
        min-height: 68px;
    }

    .geumho-header__logo-text small {
    }

    .geumho-header__nav--pc,
    .geumho-header__apply {
        display: none;
    }

    .geumho-header__menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 38px;
        height: 38px;
        margin-left: auto;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .geumho-header__menu-btn span {
        display: block;
        width: 23px;
        height: 2px;
        margin: 0 auto;
        border-radius: 999px;
        background: var(--geumho-brown, #3a2415);
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .geumho-header.is-open .geumho-header__menu-btn span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .geumho-header.is-open .geumho-header__menu-btn span:nth-child(2) {
        opacity: 0;
    }

    .geumho-header.is-open .geumho-header__menu-btn span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .geumho-header__mobile-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: block;
        visibility: hidden;
        overflow: hidden;
        max-height: 0;
        border-top: 1px solid transparent;
        background: #ffffff;
        opacity: 0;
        transition: max-height 0.25s ease, opacity 0.2s ease, visibility 0.2s ease;
    }

    .geumho-header.is-open .geumho-header__mobile-menu {
        visibility: visible;
        max-height: 460px;
        border-top-color: rgba(58, 36, 21, 0.14);
        opacity: 1;
    }

    .geumho-header__nav--mobile {
        width: min(calc(100% - 32px), 1160px);
        margin: 0 auto;
        padding: 14px 0 22px;
    }

    .geumho-header__nav--mobile ul {
        display: block;
    }

    .geumho-header__nav--mobile li {
        border-bottom: 1px solid rgba(58, 36, 21, 0.1);
    }

    .geumho-header__nav--mobile a {
        display: flex;
        min-height: 52px;
        font-size: 16px;
    }

    .geumho-header__mobile-apply {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        margin-top: 18px;
        border-radius: 999px;
        background: var(--geumho-brown, #3a2415);
        color: #ffffff !important;
        font-size: 15px;
        font-weight: 900;
    }
}

@media all and (max-width: 420px) {
    .geumho-header__inner {
        width: min(calc(100% - 24px), 1160px);
    }

    .geumho-header__logo-mark {
        width: 31px;
        height: 31px;
    }
}
