/* Header Navigation Component Styles */

.ken-header {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.ken-header-inner {
    display: flex;
    height: 100px;
    justify-content: space-between;
}

/* Logo Area */
.ken-logo-area {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding: 0 40px;
    background: #fff;
}

.logo-image {
    height: 40px;
    width: auto;
}

.brand-text {
    color: #524636;
    font-size: 20px;
    letter-spacing: 1px;
    font-family: serif;
    line-height: 1.2;
}

.brand-text span {
    display: block;
    font-size: 10px;
    color: #bf9b4d;
    margin-top: 2px;
    font-family: sans-serif;
    font-weight: bold;
}

.ken-nav-area {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
}

/* Top Bar */
.ken-top-bar {
    height: 40px;
    display: flex;
    justify-content: flex-end;
}

.ken-top-left {
    flex: 0 0 auto;
    background-color: #524636;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
}

/* Navigation item wrapper for dropdown */
.ken-nav-item-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.ken-top-link {
    padding: 0 15px;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
}

.ken-top-link:hover { 
    opacity: 0.8; 
}

.ken-top-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #f9f9f9;
}

.ken-top-sep {
    width: 1px;
    height: 12px;
    background-color: rgba(255,255,255,0.4);
}

/* Dropdown menu styles */
.ken-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1001;
}

.ken-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ken-dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #524636;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
    position: relative;
    white-space: nowrap;
}

.ken-dropdown-item::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #bf9b4d;
    opacity: 0;
    transition: opacity 0.2s;
}

.ken-dropdown-item:hover {
    background-color: #f9f9f9;
    color: #bf9b4d;
    padding-left: 30px;
}

.ken-dropdown-item:hover::before {
    opacity: 1;
}

.ken-top-right .ken-dropdown-menu {
    left: auto;
    right: 0;
}

.ken-top-right {
    background-color: #42382b;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 11px;
}

.ken-util-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
    border-left: 1px solid rgba(255,255,255,0.15);
    transition: background 0.2s;
    color: #fff;
    text-decoration: none;
}

.ken-util-link:hover { 
    background-color: rgba(255,255,255,0.1); 
}

/* Bottom Bar */
.ken-bottom-bar {
    height: 60px;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-bottom: 1px solid #eee;
}

.ken-nav-groups {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    padding-right: 40px;
}

.ken-nav-sublink {
    color: #524636;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 2px;
}

.ken-nav-sublink::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #bf9b4d;
    transition: width 0.3s;
}

.ken-nav-sublink:hover {
    color: #bf9b4d;
}

.ken-nav-sublink:hover::after {
    width: 100%;
}

.ken-nav-sublink.active {
    color: #bf9b4d;
    font-weight: 600;
}

.ken-nav-sublink.active::after {
    width: 100%;
}

.ken-contact-area {
    background: linear-gradient(135deg, #e0ca96, #bf9b4d);
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 40px;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    transition: filter 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.ken-contact-area:hover {
    filter: brightness(1.1);
}
