/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Description: Child theme for Hello Elementor - P1 Marketing customizations
Author: P1 Marketing Solutions
Version: 1.0.0
*/


/* ── P1 Nav Fix: #navLinks ID alias for .nav-links class ────────────
   The Elementor text-editor widget strips class attributes, so we
   target the stable id="navLinks" directly. Generated 2026-05-26.
──────────────────────────────────────────────────────────────────── */
ul#navLinks {
  display: flex !important;
  align-items: center;
  gap: 28px;
  list-style: none;
  justify-content: center;
  margin: 0;
  padding: 0;
}
ul#navLinks > li {
  position: relative;
}
ul#navLinks > li > a {
  display: block;
  text-decoration: none;
  white-space: nowrap;
}
ul#navLinks > li.has-dropdown > a::after {
  content: '';
  display: inline-block;
  margin-left: 5px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.6;
  vertical-align: middle;
  transition: transform 0.2s ease;
}
ul#navLinks > li.has-dropdown:hover > a::after {
  transform: rotate(180deg);
}
ul#navLinks > li.has-dropdown > .mega-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  min-width: 200px;
}
ul#navLinks > li.has-dropdown:hover > .mega-dropdown,
ul#navLinks > li.has-dropdown.open > .mega-dropdown {
  display: block;
}