/* =========================================
   4. HEADER & MOBILE MENU
========================================= */
.site-header {
    background-color: var(--bg-white);
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon { width: 240px; height: auto; } /* Smaller Icon */

.logo-text-wrapper { display: flex; flex-direction: column; }

.logo-ggh {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    letter-spacing: 0.5px;
}

.logo-subtext {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 600;
}

.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.desktop-nav a:hover, 
.desktop-nav a.active {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-main);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--bg-white);
    z-index: 1000;
    display: flex; flex-direction: column; align-items: center;
    padding: 20px;
    transform: translateY(-100%);
    transition: transform var(--transition-fast);
    visibility: hidden;
}

.mobile-menu-overlay.active {
    transform: translateY(0);
    visibility: visible;
}

.close-menu {
    align-self: flex-end;
    background: none; border: none; font-size: 28px; cursor: pointer; padding: 10px;
}

.mobile-nav-links { list-style: none; text-align: center; width: 100%; margin: 40px 0; }
.mobile-nav-links li { margin-bottom: 25px; }
.mobile-nav-links a { text-decoration: none; color: var(--text-main); font-size: 1.2rem; font-weight: bold; }
.mobile-btn { width: 80%; max-width: 300px; margin-bottom: 15px; }
/* =========================================
   HEADER CTA AREA
========================================= */

/* Align the phone link and button side-by-side */
.header-cta {
    display: flex;
    align-items: center;
    gap: 20px; /* Adjust this to increase/decrease space between phone and button */
}

/* Style the phone link and icon */
.header-cta .phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Space between icon and numbers */
    color: #462c4d; /* Dark color to match your text */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.header-cta .phone-link svg {
    width: 18px;
    height: 18px;
    color: #6a536f; /* Slightly muted color for the icon */
    transition: color 0.2s ease;
}

/* Hover effects */
.header-cta .phone-link:hover,
.header-cta .phone-link:hover svg {
    color: #af87b2; /* Changes to your brand purple on hover */
}
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1099px) 
  and (-webkit-min-device-pixel-ratio: 2) {
   .desktop-nav a { font-size: 0.95rem;}
	  .btn {
    
    padding: 7px 20px;
    border-radius: var(--border-radius-btn);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.65rem;

}
.header-cta .phone-link {

    font-size: 0.65rem;
}
	  .logo-icon {
    width: 240px;
    height: auto;
}
	  .logo-ggh {
    font-size: 1rem;
}
	  .logo-subtext {
    font-size: 0.55rem;

}
	  .logo-container {
    gap: 0px;

}
	  .desktop-nav ul {
    gap: 10px;
}
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-cta {
        gap: 15px;
    }
	
	.logo-icon {
    width: 200px;
    height: auto;
}
  }  
    /* Optional: Hide the phone number text on tiny screens, keeping just the icon */
    @media (max-width: 480px) {
        .header-cta .phone-link {
            font-size: 0; /* Hides text */
        }
        .header-cta .phone-link svg {
            width: 22px;
            height: 22px;
        }
    }
