/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Template: astra
Author: Brainstorm Force
Author URI: https://wpastra.com/about/?utm_source=theme_preview&utm_medium=author_link&utm_campaign=astra_theme
Description: The Astra WordPress theme is lightning-fast and highly customizable. It has over 1 million downloads and the only theme in the world with 6,000+ five-star reviews! It’s ideal for professional web designers, solopreneurs, small businesses, eCommerce, membership sites and any type of website. It offers special features and templates so it works perfectly with all page builders like Spectra, Elementor, Beaver Builder, etc. Fast performance, clean code, mobile-first design and schema markup are all built-in, making the theme exceptionally SEO-friendly. It’s fully compatible with WooCommerce, SureCart and other eCommerce plugins and comes with lots of store-friendly features and templates. Astra also provides expert support for free users. A dedicated team of fully trained WordPress experts are on hand to help with every aspect of the theme. Try the live demo of Astra: https://zipwp.org/themes/astra/
Tags: custom-menu,custom-logo,entertainment,one-column,two-columns,left-sidebar,e-commerce,right-sidebar,custom-colors,editor-style,featured-images,full-width-template,microformats,post-formats,rtl-language-support,theme-options,threaded-comments,translation-ready,blog
Version: 4.13.3.1780645267
Updated: 2026-06-05 07:41:07

*/

/* ============================================================
   HANNON CONSTRUCTIONS — NAV MENU CSS
   Paste into Appearance > Customize > Additional CSS
   ============================================================ */

/* ── MENU ── */
.hc-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
  margin: 0;
  padding: 0;
  margin-left: auto;
}

/* ── TOP LEVEL ITEMS ── */
.hc-menu > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.hc-menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 14px;
  height: 100%;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.hc-menu > li > a:hover,
.hc-menu > li:hover > a {
  color: #c8a96e;
}
.hc-menu > li > a.active {
  color: #c8a96e;
}

/* ── CHEVRON ── */
.hc-chevron {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.hc-menu > li:hover .hc-chevron {
  transform: rotate(180deg);
}

/* ── STANDARD DROPDOWN (Services) ── */
.hc-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a1a18;
  border-top: 2px solid #c8a96e;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  min-width: 240px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 9999;
}
.hc-menu > li:hover .hc-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hc-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  color: #c8c8b8;
  text-decoration: none;
  letter-spacing: 0.03em;
  border-left: 2px solid transparent;
  transition: color 0.12s, border-color 0.12s, background 0.12s;
}
.hc-dropdown a:hover {
  color: #f5f0e8;
  border-left-color: #c8a96e;
  background: rgba(255,255,255,0.04);
}

/* ── MEGA MENU (Projects) ── */
.hc-mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #1a1a18;
  border-top: 2px solid #c8a96e;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  width: 1200px;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 9999;
  overflow: hidden;
}
.hc-menu > li:hover .hc-mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ── MEGA COLUMN ── */
.hc-mega-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-right: 0.5px solid rgba(255,255,255,0.07);
  transition: background 0.15s;
}
.hc-mega-col:last-child {
  border-right: none;
}
.hc-mega-col:hover {
  background: #252523;
}

/* ── MEGA IMAGE ── */
.hc-mega-img {
  width: 100%;
  height: 130px;
  overflow: hidden;
  flex-shrink: 0;
}
.hc-mega-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.hc-mega-col:hover .hc-mega-img img {
  opacity: 1;
}

/* ── MEGA TEXT ── */
.hc-mega-text {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hc-mega-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #c8a96e;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.hc-mega-title {
  font-size: 14px;
  font-weight: 400;
  color: #f5f0e8;
  line-height: 1.5;
  flex: 1;
}
.hc-mega-arrow {
  font-size: 14px;
  color: #c8a96e;
  margin-top: 12px;
  display: block;
  transition: transform 0.15s;
}
.hc-mega-col:hover .hc-mega-arrow {
  transform: translateX(3px);
}

/* ── VIEW ALL STRIP ── */
.hc-mega-footer-wrap {
  width: 100%;
  flex-shrink: 0;
  display: flex;
}
.hc-mega-footer {
  width: 100%;
  display: block;
  text-align: center;
  padding: 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #c8a96e;
  text-decoration: none;
  border-top: 0.5px solid rgba(255,255,255,0.07);
  background: #141412;
  text-transform: uppercase;
  transition: background 0.15s;
}
.hc-mega-footer:hover {
  background: #1e1e1c;
}

/* ── MOBILE ── */
@media (max-width: 1024px) {
  .hc-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    height: auto;
  }
  .hc-menu > li {
    height: auto;
    flex-direction: column;
    align-items: stretch;
  }
  .hc-menu > li > a {
    padding: 12px 24px;
    height: auto;
    font-size: 14px;
  }
  .hc-dropdown,
  .hc-mega {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    width: 100%;
    flex-direction: column;
    background: #111110;
    display: none;
    padding: 0;
  }
  .hc-menu > li.open .hc-dropdown,
  .hc-menu > li.open .hc-mega {
    display: flex;
  }
  .hc-dropdown a {
    padding: 10px 32px;
    font-size: 13px;
  }
  .hc-mega-col {
    border-right: none;
    border-bottom: 0.5px solid rgba(255,255,255,0.06);
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
  }
  .hc-mega-img {
    width: 48px;
    height: 48px;
    border-radius: 2px;
    flex-shrink: 0;
  }
  .hc-mega-text {
    padding: 0;
  }
  .hc-mega-label { display: none; }
  .hc-mega-arrow { display: none; }
  .hc-mega-footer-wrap { display: none; }
  .hc-chevron { display: none; }
}
 