/* index.php와 동일한 헤더 스타일 적용 */
#header {
    background: linear-gradient(135deg, #c41e3a, #d73858) !important;
    box-shadow: 0 2px 10px rgba(196, 30, 58, 0.3);
}

#header .menu_area {
    background: transparent !important;
}

.logo a {
    color: #fff !important;
    font-weight: bold;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-size: 24px !important;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    filter: brightness(0) invert(1);
    width: 40px;
    height: auto;
}

.ftrSocial {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.ftrSocial li a {
    color: #fff !important;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.ftrSocial li a:hover {
    color: #c41e3a !important;
    background: #fff;
    transform: scale(1.1);
}

/* 메뉴 버튼 스타일 */
.menu-trigger .menu-trigger__line {
    background: #fff !important;
}

/* 사용자 프로필 드롭다운 스타일 */
.user-profile .dropdown .dropdown-toggle,
.user-profile .dropdown-toggle {
    background-color: rgba(255, 255, 255, 0.15) !important;
    background-image: none !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 16px !important;
    border-radius: 20px !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
    backdrop-filter: blur(10px) !important;
}

.user-profile .dropdown .dropdown-toggle:hover,
.user-profile .dropdown-toggle:hover,
.user-profile .dropdown .dropdown-toggle:focus,
.user-profile .dropdown-toggle:focus,
.user-profile .dropdown .dropdown-toggle:active,
.user-profile .dropdown-toggle:active,
.user-profile .dropdown .dropdown-toggle.show,
.user-profile .dropdown-toggle.show {
    background-color: rgba(255, 255, 255, 0.25) !important;
    background-image: none !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    outline: none !important;
    transform: translateY(-1px) !important;
}

.user-profile .dropdown .dropdown-menu,
.user-profile .dropdown-menu {
    background-color: #ffffff !important;
    background-image: none !important;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    min-width: 180px !important;
    padding: 6px 0 !important;
    margin-top: 5px !important;
    backdrop-filter: blur(10px) !important;
}

.user-profile .dropdown .dropdown-item,
.user-profile .dropdown-item {
    background-color: transparent !important;
    background-image: none !important;
    color: #495057 !important;
    padding: 10px 18px !important;
    transition: all 0.3s ease !important;
    border: none !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    display: block !important;
}

.user-profile .dropdown .dropdown-item:hover,
.user-profile .dropdown-item:hover {
    background-color: rgba(196, 30, 58, 0.08) !important;
    background-image: none !important;
    color: #c41e3a !important;
    text-decoration: none !important;
    transform: translateX(3px) !important;
}

/* 반응형 처리 */
@media (max-width: 768px) {
    .logo a {
        font-size: 20px !important;
    }
    
    .ftrSocial {
        display: none;
    }
}