/* Box Sizing Reset */
.acb-header-wrapper,
.acb-header-wrapper * {
    box-sizing: border-box;
}

/* Header Container */
.acb-header-wrapper {
    width: 100%;
    background-color: #0b071e;
    padding: 22px 50px;
}

.acb-header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* 1. Logo / Branding */
.acb-header-branding {
    display: flex;
    align-items: center;
}

.acb-header-logo-link {
    text-decoration: none;
    display: inline-block;
}

.acb-header-logo-text {
    color: #d99a6c;
    font-family: 'Georgia', serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.acb-header-logo-img {
    max-height: 40px;
    width: auto;
    display: block;
}

/* 2. Navigation Menu */
.acb-header-nav {
    display: flex;
    align-items: center;
}

.acb-header-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 35px;
}

.acb-header-menu li {
    position: relative;
}

.acb-header-menu li a {
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.acb-header-menu li a:hover {
    color: #d99a6c;
}

/* Dropdown Arrow Indicator */
.acb-header-menu li.menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 2px;
    transition: transform 0.2s ease;
}

/* Submenu Dropdown Styling */
.acb-header-menu ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0d0826;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 200px;
    padding: 12px 0;
    list-style: none;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.acb-header-menu li.menu-item-has-children:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.acb-header-menu ul.sub-menu li {
    width: 100%;
}

.acb-header-menu ul.sub-menu li a {
    padding: 8px 20px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.acb-header-menu ul.sub-menu li a:hover {
    color: #d99a6c;
    background: rgba(255, 255, 255, 0.03);
}

/* 3. Social Media Icons */
.acb-header-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.acb-header-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.acb-header-social-icon:hover {
    background-color: #d99a6c;
    color: #ffffff;
}

.acb-header-social-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .acb-header-container {
        flex-direction: column;
        gap: 20px;
    }

    .acb-header-menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
}