/* Header Styles */

.site-header {
    background-color: var(--primary-white);
    border-bottom: 1px solid var(--light-grey);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-medium);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo {
    height: 60px;
    width: auto;
}

.site-logo img {
    height: 100%;
    width: auto;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin: 0;
}

.site-description {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0.25rem 0 0 0;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-search {
    position: relative;
}

.header-search input {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    width: 200px;
    transition: all 0.3s ease;
}

.header-search input:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: var(--shadow-light);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-charcoal);
    font-weight: 600;
}

.header-phone a {
    color: var(--gold-accent);
}

.header-phone a:hover {
    color: var(--gold-hover);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.5rem;
    color: var(--dark-charcoal);
}

.custom-logo {
    width: 180px;      /* Desired width */
    height: auto;      /* Maintain aspect ratio */
    max-width: 100%;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .header-wrapper {
        padding: 1rem;
    }
    
    .header-search {
        display: none;
    }
    
    .header-phone {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
}
