/* --- HEADER DESIGN --- */
.site-header {
    background: var(--navy);
    height: 80px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center; /* Vertically centers everything */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-flex {
    display: flex;
    justify-content: space-between; /* Pushes items to Left, Center, and Right */
    align-items: center;
    width: 100%;
}

/* 1. Left Side: Logo */
.logo-text {
    color: #ffffff !important;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: -0.5px;
}

/* 2. Center: The Menu */
.horizontal-menu {
    display: flex; /* THIS FORCES HORIZONTAL NAVIGATION */
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px; /* Spacing between categories */
}

.horizontal-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.horizontal-menu li a:hover {
    color: var(--gold);
}

/* 3. Right Side: Button */
.contact-button {
    background: var(--accent);
    color: #ffffff !important;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: transform 0.2s ease;
}

.contact-button:hover {
    transform: translateY(-2px);
    background: #d13d56; /* Slightly darker red on hover */
}

/* Header Spacer to avoid overlap on pages */
.header-spacer {
    height: 80px;
}

/* Mobile Responsive Fix */
@media (max-width: 992px) {
    .header-nav { display: none; } /* Hide center menu on mobile */
    .header-flex { justify-content: space-between; }
}