/* === GET LINKED UP BRANDED WORDPRESS THEME === */
/* Professional polish: clean header, brand + slogan, subtle brand nav, fixed whitespace/imagery */
/* Brand: Primary #6C3AE1 | Dark #19132D | Accent #00C9A7 */
/* Updated: April 23, 2026 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* 0. TYPOGRAPHY — modern professional */
body, .ast-site-content, p, li, a, .entry-content, .widget, button, input, select, textarea {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, h6, .site-title, .ast-builder-html-element {
  font-family: 'Outfit', 'Inter', sans-serif !important;
  letter-spacing: -0.015em;
}

/* 1. HIDE DUPLICATE ASTRA PAGE TITLE EVERYWHERE */
.entry-title, .page .entry-title, .home .entry-title,
.page-title, .ast-page-header, .ast-archive-title,
header.entry-header, .ast-single-post-header,
main > article > header { display: none !important; }

/* 2. TRUST BAR — softer brand-tinted, readable */
body::before {
  content: "★ Trusted by 178+ companies  •  5.0 from 722 reviews  •  Call (770) 878-2900";
  display: block;
  background: linear-gradient(90deg, #F5F0FF 0%, #E8FAF5 100%);
  color: #19132D;
  text-align: center;
  padding: 9px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  border-bottom: 1px solid #E8DDFF;
  position: relative;
  z-index: 999;
}

/* 3. HEADER — clean white with subtle brand accent, NO dark backgrounds */
.ast-primary-header-bar, .site-header, .ast-main-header-wrap, .main-header-bar-wrap {
  background: #ffffff !important;
  border-bottom: 1px solid #EDE7F6 !important;
  box-shadow: 0 2px 10px rgba(108, 58, 225, 0.05) !important;
}
.ast-above-header, .ast-above-header-bar, .ast-theme-transparent-header .site-header {
  background: transparent !important;
}

/* 4. BRAND NAME — "Get Linked Up" in stylish gradient lettering */
.site-title, .site-title a {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 800 !important;
  font-size: 24px !important;
  background: linear-gradient(135deg, #6C3AE1 0%, #9B6EFF 50%, #00C9A7 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  letter-spacing: -0.025em !important;
  text-decoration: none !important;
  line-height: 1.1 !important;
  display: inline-block !important;
}
.site-title a:hover { opacity: 0.85; }

/* Force brand name visible on ALL breakpoints (fix mobile-hidden) */
.ast-site-title-wrap .site-title,
.site-header .site-title,
.ast-mobile-header-wrap .site-title {
  display: block !important;
  visibility: visible !important;
  clip: auto !important;
  height: auto !important;
  width: auto !important;
  overflow: visible !important;
  position: static !important;
}

/* 5. SLOGAN — appears under brand name */
.site-description {
  display: block !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #6C3AE1 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  margin-top: 2px !important;
  opacity: 0.9;
}

/* Logo sizing */
.site-logo-img, .custom-logo-link { margin-right: 14px !important; }
.site-logo-img img, .custom-logo {
  max-height: 44px !important;
  width: auto !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
}

.ast-site-identity, .ast-site-title-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 2px;
}

/* 6. NAVIGATION — clean text, subtle brand-gradient underline on hover */
.main-navigation, .main-navigation ul, .ast-primary-menu,
.main-header-menu, .ast-main-header-bar-navigation {
  background: transparent !important;
}
.main-navigation a, .main-navigation .menu-item a, .main-header-menu a {
  color: #19132D !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  letter-spacing: 0.005em !important;
  padding: 10px 18px !important;
  position: relative !important;
  background: transparent !important;
  transition: color 0.2s ease !important;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-parent > a {
  color: #6C3AE1 !important;
}
.main-navigation .menu-item > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: linear-gradient(90deg, #6C3AE1, #00C9A7);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.main-navigation .menu-item > a:hover::after,
.main-navigation .current-menu-item > a::after {
  transform: scaleX(1);
}

/* Dropdown submenus — light with brand accents */
.main-navigation ul.sub-menu, .main-navigation .sub-menu {
  background: #ffffff !important;
  border: 1px solid #EDE7F6 !important;
  box-shadow: 0 12px 32px rgba(25, 19, 45, 0.12) !important;
  border-radius: 12px !important;
  padding: 8px !important;
}
.main-navigation .sub-menu a {
  color: #19132D !important;
  border-radius: 8px !important;
  padding: 10px 14px !important;
}
.main-navigation .sub-menu a:hover {
  background: linear-gradient(90deg, #F5F0FF, #E8FAF5) !important;
  color: #6C3AE1 !important;
}
.main-navigation .sub-menu a::after { display: none !important; }

/* 7. REMOVE EXCESSIVE WHITESPACE ABOVE HERO */
.site-content, main#main, .ast-container {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.ast-article-single, .post-inner, .page-inner, .entry-content {
  padding-top: 8px !important;
}
.entry-content > *:first-child,
.entry-content > p:first-child,
.entry-content > h1:first-child,
.entry-content > h2:first-child,
.entry-content > figure:first-child,
.entry-content > img:first-child {
  margin-top: 0 !important;
}
.ast-single-post-order, article.page { padding-top: 8px !important; }

/* 8. IMAGE CONSTRAINTS — professional, smaller, uniform */
.entry-content img,
article img:not(.site-logo-img):not(.custom-logo):not(.ast-header-break-point img) {
  max-width: 78% !important;
  max-height: 300px !important;
  height: auto !important;
  display: block !important;
  margin: 1.25em auto !important;
  border-radius: 14px !important;
  object-fit: cover !important;
  box-shadow: 0 10px 32px rgba(25, 19, 45, 0.08) !important;
}
.entry-content > figure:first-of-type img,
.entry-content > img:first-of-type,
.entry-content > p:first-of-type > img {
  max-width: 85% !important;
  max-height: 340px !important;
}
/* Logos always small */
.site-logo-img img, .custom-logo, .site-header img[class*="logo"], header img[alt*="logo" i] {
  max-height: 44px !important;
  max-width: 200px !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
}

/* 9. CONTENT HEADINGS */
.entry-content h2 {
  color: #6C3AE1 !important;
  font-weight: 700 !important;
  font-size: 28px !important;
  margin: 1.6em 0 0.6em !important;
  letter-spacing: -0.015em;
}
.entry-content h3 {
  color: #19132D !important;
  font-weight: 600 !important;
  font-size: 21px !important;
  margin: 1.3em 0 0.5em !important;
}
.entry-content p { color: #2B2345; line-height: 1.7; }

/* 10. BUTTONS / CTAs — brand gradient pill */
.wp-block-button__link, .ast-button, .button,
button.ast-button, .entry-content a.button, .entry-content button {
  background: linear-gradient(135deg, #6C3AE1 0%, #5029B8 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 14px 32px !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  box-shadow: 0 6px 20px rgba(108, 58, 225, 0.28) !important;
  transition: transform 0.15s, box-shadow 0.15s !important;
  text-decoration: none !important;
  display: inline-block !important;
}
.wp-block-button__link:hover, .ast-button:hover, .button:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 12px 28px rgba(108, 58, 225, 0.38) !important;
  color: #fff !important;
}

/* Phone links inline (not buttons) */
.entry-content a[href^="tel:"] {
  background: transparent !important;
  color: #6C3AE1 !important;
  padding: 0 !important;
  text-decoration: underline !important;
  box-shadow: none !important;
  font-weight: 600 !important;
}

/* 11. FAQ ACCORDIONS */
.entry-content details {
  border: 1px solid #EDE7F6 !important;
  border-radius: 12px !important;
  margin-bottom: 10px !important;
  background: #FBFAFE !important;
  overflow: hidden;
}
.entry-content summary {
  padding: 16px 20px !important;
  font-weight: 600 !important;
  color: #19132D !important;
  cursor: pointer !important;
  font-family: 'Outfit', sans-serif !important;
  list-style: none !important;
  position: relative;
  padding-right: 40px !important;
}
.entry-content summary::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #6C3AE1;
  font-size: 20px;
  font-weight: 400;
}
.entry-content details[open] summary {
  color: #6C3AE1 !important;
  border-bottom: 1px solid #EDE7F6 !important;
}
.entry-content details[open] summary::after { content: '−'; }
.entry-content details > *:not(summary) { padding: 16px 20px !important; }

/* 12. MOBILE HAMBURGER — outlined, not heavy bg */
.ast-mobile-menu-buttons-fill .menu-toggle,
.ast-mobile-header-wrap .menu-toggle,
.menu-toggle, button.menu-toggle {
  background: #ffffff !important;
  border: 2px solid #6C3AE1 !important;
  color: #6C3AE1 !important;
  border-radius: 10px !important;
  padding: 8px 10px !important;
  box-shadow: 0 2px 8px rgba(108, 58, 225, 0.15) !important;
}
.ast-mobile-header-wrap .menu-toggle svg,
.menu-toggle svg { fill: #6C3AE1 !important; color: #6C3AE1 !important; }

/* 13. FOOTER — dark with brand accents */
.site-footer {
  background: #19132D !important;
  color: #E8DDFF !important;
  padding: 48px 0 24px !important;
}
.site-footer a { color: #B59BFF !important; text-decoration: none; }
.site-footer a:hover { color: #00C9A7 !important; }
.site-footer .ast-footer-copyright, .site-footer .footer-primary {
  color: #8A7FAB !important;
  font-size: 13px !important;
  border-top: 1px solid #2B2345 !important;
  padding-top: 20px !important;
  margin-top: 20px !important;
}

/* 14. MOBILE RESPONSIVE */
@media (max-width: 768px) {
  body::before {
    font-size: 11px !important;
    padding: 7px 12px !important;
    line-height: 1.45 !important;
  }
  .site-title, .site-title a { font-size: 19px !important; }
  .site-description { font-size: 9.5px !important; letter-spacing: 0.1em !important; }
  .entry-content img,
  article img:not(.site-logo-img):not(.custom-logo) {
    max-width: 100% !important;
    max-height: 240px !important;
    margin: 1em 0 !important;
  }
  .entry-content h2 { font-size: 22px !important; }
  .entry-content h3 { font-size: 18px !important; }
  .main-navigation a { padding: 12px 16px !important; font-size: 16px !important; }
  .site-logo-img img, .custom-logo { max-height: 38px !important; }
}

/* PATCH-2026-04-23-GAP-FIX */
/* Hide stray JSON-LD text accidentally rendered as &lt;p> in page content */
.entry-content > p:first-of-type,
.entry-content > p:nth-of-type(2),
.entry-content > p:nth-of-type(3) {
  display: none !important;
  margin: 0 !important;
  height: 0 !important;
}
/* But keep paragraphs that are actual content (have links, strong, images, or classes) */
.entry-content > p[class],
.entry-content > p:has(img),
.entry-content > p:has(a),
.entry-content > p:has(strong) { display: block !important; margin: inherit !important; height: auto !important; }

/* Force slogan/tagline render even if Astra hid it */
.site-header .site-title + .site-description,
.site-header .site-description,
.ast-site-identity .site-description,
p.site-description {
  display: block !important;
  visibility: visible !important;
  height: auto !important;
  width: auto !important;
  clip: auto !important;
  overflow: visible !important;
  position: static !important;
  font-family: 'Inter', -apple-system, 'Segoe UI', sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: #6C3AE1 !important;
  margin: 2px 0 0 0 !important;
  line-height: 1.2 !important;
}

/* Tighten top padding on article — trust bar + nav is enough separation */
.site-content > .ast-container { padding-top: 0 !important; margin-top: 0 !important; }
article.post-11, article.ast-article-single { padding-top: 0 !important; margin-top: 0 !important; }
.entry-content { padding-top: 0 !important; margin-top: 0 !important; }

/* Give the hero image a proper top margin — just a bit */
.glu-hero-image { margin-top: 16px !important; }

/* === GLU-PATCH-2026-04-23-GAP-SLOGAN START === */
/* Hide the first 3 empty/JSON-LD paragraphs on home that create a ~300px gap */
body.home .entry-content > p:nth-child(-n+3) { display: none !important; margin: 0 !important; height: 0 !important; padding: 0 !important; }
/* Also cover service/city/interior pages that start with the same JSON-LD p */
.entry-content > p:nth-child(1):empty,
.entry-content > p:nth-child(2):empty { display: none !important; margin: 0 !important; height: 0 !important; }
/* Tighten top spacing */
body.home .site-content > .ast-container { padding-top: 8px !important; }
body.home .entry-content { padding-top: 0 !important; margin-top: 0 !important; }
body.home .glu-hero-image { margin-top: 16px !important; }
/* Render the slogan (.site-description) so earlier-saved tagline shows */
.site-header .site-description {
  display: block !important;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #6C3AE1;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.9;
}
/* If Astra hides it with ast-screen-reader-text, force visible */
.site-header .ast-site-identity .site-description.ast-screen-reader-text {
  position: static !important;
  width: auto !important;
  height: auto !important;
  clip: auto !important;
  overflow: visible !important;
}
/* === GLU-PATCH-2026-04-23-GAP-SLOGAN END === */

/* === GLU-SLOGAN-PSEUDO START === */
.site-title::after { content: "AI-Powered Staffing Solutions"; display: block; font-family: Inter, sans-serif; font-size: 11px; font-weight: 600; color: #6C3AE1; letter-spacing: 1.2px; text-transform: uppercase; margin-top: 4px; opacity: 0.85; -webkit-text-fill-color: #6C3AE1; background: none; line-height: 1; }
.ast-site-title-wrap .site-title { line-height: 1.1; }
/* === GLU-SLOGAN-PSEUDO END === */