/* Luxury Site Header Styling */
.luxury-header-889c56f2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    border-bottom: 1px solid #333333;
    z-index: 9999;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

/* Adjust layout when WP Admin Bar is present */
body.admin-bar .luxury-header-889c56f2 {
    top: var(--wp-admin--admin-bar--height, 32px);
}
@media screen and (max-width: 782px) {
    body.admin-bar .luxury-header-889c56f2 {
        top: 46px;
    }
}

.luxury-header-container-889c56f2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.luxury-header-logo-889c56f2 img {
    height: 55px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.luxury-header-logo-889c56f2 img:hover {
    transform: scale(1.05);
}

.luxury-header-menu-889c56f2 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.luxury-header-menu-889c56f2 a {
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.luxury-header-menu-889c56f2 a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #C9A227;
    transition: width 0.3s ease;
}

.luxury-header-menu-889c56f2 a:hover {
    color: #C9A227;
}

.luxury-header-menu-889c56f2 a:hover::after {
    width: 100%;
}

/* Add padding to body to prevent content overlap */
body {
    padding-top: 85px !important;
}

@media screen and (max-width: 768px) {
    .luxury-header-menu-889c56f2 {
        gap: 15px;
    }
    .luxury-header-menu-889c56f2 a {
        font-size: 11px;
    }
    .luxury-header-logo-889c56f2 img {
        height: 40px;
    }
    body {
        padding-top: 70px !important;
    }
}
