.elementor-17 .elementor-element.elementor-element-9b8704f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-da855fc *//* =================================================================
   기본 & 레이아웃
================================================================= */
#custom-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    transition: background-color 0.4s ease, border-color 0.4s ease;

}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100px;
    padding: 0 130px;
    transition: height 0.3s ease;
}

.logo-area {
    justify-self: start;
}

.logo-area a {
    display: block;
    position: relative;
    height: 55px;
    width: 90px;
}

.logo-area img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    transition: opacity 0.4s ease;
}

.button-area {
    display: flex;
    justify-self: end;
    align-items: center;
    gap: 20px;
}


/* =================================================================
   헤더 상태별 스타일 (Transparent / White)
================================================================= */
#custom-header.header-transparent {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.header-transparent .logo-color { 
    opacity: 0; 
}
.header-transparent .logo-white { 
    opacity: 1; 
}
.header-transparent .main-nav > li > a { 
    color: #ffffff; 
}

#custom-header.header-white,
#custom-header.header-transparent:hover {
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    color: #111111;
}

.header-white .logo-white,
.header-transparent:hover .logo-white { 
    opacity: 0; 
}

.header-white .logo-color,
.header-transparent:hover .logo-color { 
    opacity: 1; 
}

.header-white .main-nav > li > a,
.header-transparent:hover .main-nav > li > a { 
    color: #111111; 
}


/* =================================================================
   데스크톱 메가 메뉴
================================================================= */
.main-menu-area {
    justify-self: center;
    height: 100%;
    position: relative;
}

.main-nav {
    display: flex;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav > li {
    display: flex;
    position: relative;
    align-items: center;
    padding: 0 40px;
    min-width: 240px;
}

.main-nav > li > a {
    width: 100%;
    text-decoration: none;
    text-align: center;
    font-family: "Montserrat";
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav li > a:hover {
    color: #7c4230 !important;
    font-weight: 500;
}

.submenu-bg {
    position: absolute;
    top: 100px;
    left: 50%;
    z-index: -1;
    width: 100vw;
    height: 280px;
    background-color: #ffffff;
    border-top: 1px solid #eee;
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%);
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.submenu-content {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    text-align: center;

}

.submenu-content ul {
    margin: 0;
    padding: 20px 0;
    list-style: none;
}

.main-nav > li:hover .submenu-content{
    border-top: 2px solid #7c4230;
}

.submenu-content ul li a {
    display: block;
    padding: 10px;
    white-space: nowrap;
    text-decoration: none;
    font-family: "Montserrat";
    font-size: 16px;
    color: #333;
    transition: color 0.3s ease;
}

.submenu-content ul li a:hover {
    color: #7c4230;
    font-weight: 500;
}

.main-nav > li:hover .submenu-content {
    height: 280px; 
    background-color: #fff3ef;
    transition: background-color 0.3s ease-out;
}

.main-menu-area:hover .submenu-bg,
.main-menu-area:hover .submenu-content {
    opacity: 1;
    visibility: visible;
}


/* =================================================================
   구분선 스타일
================================================================= */
.main-menu-area::before,
.main-menu-area::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%);
    transition: background-color 0.4s ease;
}

.main-menu-area::before {
    left: -160px;
}

.main-menu-area::after {
    right: -160px;
}

.main-nav > li:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%);
    transition: background-color 0.4s ease;
}

#custom-header.header-white .main-menu-area::before,
#custom-header.header-white .main-menu-area::after,
#custom-header.header-white .main-nav > li:not(:first-child)::before,
#custom-header.header-transparent:hover .main-menu-area::before,
#custom-header.header-transparent:hover .main-menu-area::after,
#custom-header.header-transparent:hover .main-nav > li:not(:first-child)::before {
    background-color: #e0e0e0;
}


/* =================================================================
   헤더 버튼 (언어, 문의)
================================================================= */
.lang-menu, .contact-btn {
    color: inherit;
    cursor: pointer;
}

.lang-menu {
    position: relative;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    width: 60px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 5px;
}

.header-white .lang-menu,
#custom-header.header-transparent:hover .lang-menu{
    border-color: #ddd;
}

.lang-menu > span{
    width: 27px;
    height: 27px;
    border-radius: 50%;
    display: inline-block;
    font-family: "Montserrat";
    font-weight: bold;
    font-size: 12px;
    background: #fff;
    color: #111;
    text-align: center;
    align-content: center;
}

.header-white .lang-menu > span,
#custom-header.header-transparent:hover .lang-menu > span{background: #7b412f; color: #fff;
    transition: color 0.3s ease;
}

.lang-menu .lang-options {
    display: none;
    position: absolute;
    top: 150%;
    right: 0;
    width: 80px;
    margin: 0;
    padding: 5px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    list-style: none;
}

.lang-menu.is-open .lang-options { 
    display: block; 
}

.lang-menu .lang-options a {
    display: block;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}

.lang-menu .lang-options a:hover { 
    background-color: #f5f5f5; 
}

.icon-globe, .icon-message {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

.button-area .contact-btn{
    border: 1px solid rgba(255,255,255,0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    align-content: center;
    line-height: 40px;
    color: #fff;
}

.header-white .button-area .contact-btn,
#custom-header.header-transparent:hover .button-area .contact-btn{
    border-color: #ddd !important;
    transition: color 0.3s ease;
}


.header-white .button-area .contact-btn,
#custom-header.header-transparent:hover .button-area .contact-btn{
    color: #7b412f;
}

.button-area .contact-btn svg{
    height: 40px;
}


/* =================================================================
   모바일 & 반응형
================================================================= */
.hamburger-menu, 
.offcanvas-menu, 
.offcanvas-overlay {
    display: none;
}

@media (max-width: 1024px) {
    .main-menu-area, .button-area, .main-menu-area::before, .main-menu-area::after, .main-nav > li:not(:first-child)::before {
        display: none;
    }

    .header-inner {
        display: flex;
        justify-content: space-between;
    }

    .hamburger-menu {
        display: flex;
        z-index: 1002;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        cursor: pointer;
    }

    .hamburger-menu span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: currentColor;
        transition: all 0.3s ease;
    }
    
    #custom-header,
    #custom-header.header-transparent {
        height: 70px;
        background-color: #ffffff;
        border-bottom: 1px solid #eeeeee;
        color: #111111;
    }

    .header-inner { 
        height: 70px; 
        padding: 0 20px; 
    }

    #custom-header .logo-white { 
        display: none !important; 
        opacity: 0; 
    }
    #custom-header .logo-color { 
        display: block !important; 
        opacity: 1; 
    }

    .offcanvas-menu {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 2000;
        width: 80%;
        max-width: 320px;
        height: 100%;
        padding: 80px 20px 20px;
        background-color: #ffffff;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        overflow-y: auto;
        transition: right 0.4s ease;
    }

    .offcanvas-menu.is-open { 
        right: 0; 
    }

    .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 30px;
        color: #333;
        cursor: pointer;
    }

    .offcanvas-overlay {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1999;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease;
    }

    .offcanvas-overlay.is-open { 
        display: block; 
        opacity: 1; 
        visibility: visible; 
    }
    
    .offcanvas-nav-wrapper .main-nav { 
        flex-direction: column; 
        height: auto; 
    }
    .offcanvas-nav-wrapper .main-nav > li { 
        display: block; 
        padding: 0; 
        border-bottom: 1px solid #f0f0f0; 
    }
    .offcanvas-nav-wrapper .main-nav > li > a { 
        display: block; 
        padding: 15px 10px; 
        font-size: 18px; 
        color: #111; 
    }

    .offcanvas-nav-wrapper .submenu-content {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        background-color: #f9f9f9;
    }
    .offcanvas-nav-wrapper .submenu-content ul { 
        padding: 10px 0 10px 20px; 
    }
    .offcanvas-nav-wrapper .submenu-content a { 
        padding: 8px 0; 
        text-align: left; 
        font-size: 15px; 
    }
}

.fp-watermark{display: none !important;}

#fullpage-container .fp-table{
    justify-content: flex-start;
}

#fullpage-container .fp-center{
    justify-content: center;
}


#scroll-to-top-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
    
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px; /* 화살표 간격 */
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

#scroll-to-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scroll-to-top-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


#scroll-to-top-btn span {
    display: block;
    width: 6px;      
    height: 6px;     
    border-top: 2px solid #fff;   
    border-right: 2px solid #fff;   
    transform: rotate(-45deg); 
    position: relative; 
    animation: scroll-top-animation 1.5s ease-in-out infinite;
}

#scroll-to-top-btn span:nth-child(1) { animation-delay: 0s; }
#scroll-to-top-btn span:nth-child(2) { animation-delay: 0.2s; }
#scroll-to-top-btn span:nth-child(3) { animation-delay: 0.4s; }

@keyframes scroll-top-animation {
    0% {
        opacity: 0;
        top: 5px;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: -5px; 
    }
}/* End custom CSS */