/* HC MVC Child base styles */

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

a {
  text-decoration: none;
}

/* ===============================
   HEADER LAYOUT (FORCE OVERRIDE)
   =============================== */

.site-header {
  display: flex !important;
  align-items: center !important;
  padding: 14px 32px !important;
}

/* Logo stays left */
.site-header .brand {
  flex: 0 0 auto !important;
}

/* Nav container centered */
.site-header .nav {
  flex: 1 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 40px !important;
}

/* ===============================
   NAV TEXT STYLE (BIGGER)
   =============================== */

.site-header .nav a {
  font-size: 20px !important;
  font-weight: 700 !important;
  letter-spacing: 0.6px !important;
  color: #222 !important;
  transition: color 0.2s ease !important;
}

/* Hover effect */
.site-header .nav a:hover {
  color: #b86b3b !important;
}

/* ===============================
   CONTACT US ICON (CLEAN & SIMPLE)
   =============================== */
/* ===============================
   CONTACT US ICON (CLEAN & SIMPLE)
   =============================== */

/* Hide any injected icons from theme/Elementor */
.site-header .nav a.nav-contact i,
.site-header .nav a.nav-contact svg,
.site-header .nav a.nav-contact .icon {
  display: none !important;
}

/* Phone icon (always works, black) */
.site-header .nav a.nav-item.nav-contact::before{
  content: "☎" !important;
  font-family: inherit !important;
  color: #000 !important;
  margin-right: 6px !important;
  font-size: 18px !important;
  vertical-align: middle !important;
  display: inline-block !important;
}

/* ===============================
   MOBILE ADJUSTMENT
   =============================== */

@media (max-width: 768px) {
  .site-header {
    flex-direction: column !important;
  }

  .site-header .nav {
    margin-top: 10px !important;
    gap: 24px !important;
  }

  .site-header .nav a {
    font-size: 16px !important;
  }
}

/* Remove the black square / badge for Contact Us */
.site-header .nav a.nav-contact::before,
.site-header .nav a.nav-contact::after,
.site-header .nav a.nav-item.nav-contact::before,
.site-header .nav a.nav-item.nav-contact::after {
  background: none !important;
  box-shadow: none !important;
  border: 0 !important;
  outline: 0 !important;
}

/* Force the Contact Us icon to be plain (no block) */
.site-header .nav a.nav-item.nav-contact::before{
  content: "☎" !important;
  display: inline !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
  line-height: 1 !important;
  border-radius: 0 !important;
  background: none !important;
  color: #000 !important;
  margin-right: 6px !important;
  vertical-align: middle !important;
}

