/* 
  HEADER STYLES - CONSISTENT ACROSS ALL PAGES
*/

.site-header 
{
	background-color: var(--header-bg);
    box-shadow: 0 2.5px 2.5px var(--gw-gold);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    padding: 0;
}

.header-container 
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max-width);
    margin: 0 auto;
    width: 100%;
    padding: 10px 20px;
    position: relative;
}

/* 
  LOGO SECTION
*/
.logo 
{
    display: flex;
    align-items: center;
    flex-shrink: 0; 	
    margin-right: 30px;
    max-width: 300px;
}

.logo a 
{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--gw-platinum);
}

.logo img 
{
    height: 150px; 	
    width: auto;
    max-width: 100%;
}

.logo span 
{
    font-size: 1.2rem;
    font-weight: 700;
    margin-left: 15px;
    white-space: nowrap; 	
}

/* 
  MAIN NAVIGATION
*/
.header-nav 
{
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav 
{
    margin: 0 auto;
}

.main-nav ul 
{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.main-nav li 
{
    flex-shrink: 0;
    position: relative;
}

.main-nav a 
{
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    white-space: nowrap;
    font-size: 0.95rem;
    display: inline-block;
    transition: transform 0.3s ease;
    background-image: linear-gradient(to right, var(--gw-platinum), var(--gw-platinum));
    background-size: 0% 100%;
    background-repeat: no-repeat;
    background-position: left center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--gw-gold); 
    transition: background-size 0.6s ease, -webkit-text-fill-color 0.6s ease;
}

.main-nav a::after 
{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--gw-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s ease;
}

.main-nav a:hover,
.main-nav a.active 
{
    -webkit-text-fill-color: transparent;
    background-size: 100% 100%;
	text-shadow: 0 0 px var(--gw-rose-grey);
}

.main-nav a:hover::after,
.main-nav a.active::after 
{
    transform: scaleX(1);
}

/* 
  HEADER ACTIONS
*/
.header-actions 
{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: 20px;
}

/* 
  MOBILE MENU TOGGLE
*/
.menu-toggle 
{
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span 
{
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--text-light);
    transition: var(--transition);
}

/* 
  RESPONSIVE STYLES
*/
@media (max-width: 992px) 
{
    .header-container 
	{
        flex-wrap: wrap;
    }
    
    /* Simplify the logo section */
    .logo 
	{
        margin-right: auto;
    }
    
    .logo span 
	{
        display: none;
    }
    
    /* Mobile menu toggle */
    .menu-toggle 
	{
        display: block;
        margin-left: 15px;
    }
    
    /* Mobile menu (hidden by default) */
    .main-nav 
	{
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--header-bg);
        box-shadow: 0 5px 10px #0000001a;
        z-index: 101;
    }
    
    /* Show when active */
    .main-nav.active 
	{
        display: block;
    }
    
    /* Vertical menu */
    .main-nav ul 
	{
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
    }
    
    .main-nav a 
	{
        display: block;
        padding: 1rem;
        border-bottom: 1px solid #ffffff1a;
    }
    
    /* Hamburger to X animation */
    .menu-toggle.active span:nth-child(1) 
	{
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) 
	{
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) 
	{
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* Small mobile styles */
@media (max-width: 480px) 
{
    .btn-outline {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .logo img 
	{
        height: 40px;
    }
    
    /* Stack action buttons on very small screens */
    .header-actions 
	{
        flex-direction: column;
        gap: 5px;
    }
}

[itemscope] [itemprop][content],
[itemscope] meta[itemprop],
[itemscope] link[itemprop] {
    display: none;
}

/* 
	END OF FILE
*/