/* ================================================
   TOP BAR & HEADER
   ================================================ */

/* Top Bar */
.top-bar {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left a {
    color: rgba(255, 255, 255, 0.8);
}

.top-bar-left a:hover {
    color: var(--white);
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.top-bar-right a {
    color: rgba(255, 255, 255, 0.8);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition);
}

.top-bar-right a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--secondary);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    transition: all var(--transition);
    height: var(--header-height);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header.scrolled {
    background: #111125;
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.4);
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    text-decoration: none;
    gap: 2px;
}

.logo:hover {
    text-decoration: none;
}

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

.logo-img {
    filter: brightness(1.2);
}

.logo-sub {
    font-family: var(--font);
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1;
    padding-left: 2px;
}

/* Navigation */
.nav-list {
    display: flex;
    gap: 5px;
}

.nav-link {
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}

.nav-link:hover {
    color: #c9a84c;
}

.nav-link.active {
    color: #c9a84c;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: #c9a84c;
    border-radius: 2px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #c9a84c;
    color: var(--secondary);
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    white-space: nowrap;
}

.header-cta:hover {
    background: #b8963e;
    color: var(--secondary);
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #c9a84c;
    border-radius: 3px;
    transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}