/* Example for the entire header */
/* Phone only */
@media (max-width: 767px) {
  .ast-primary-header-bar {
    margin-top: -80px;
    border-radius: 10px;
  }
}

/* TABLET ONLY – force override */
@media (min-width: 768px) and (max-width: 921px) {
  .ast-primary-header-bar {
    margin-top: -200px !important; /* adjust as needed */
    border-radius: 10px !important;
  }
}



/* Desktop-only primary header spacing */
@media (min-width: 1025px) {
  .ast-primary-header-bar {
    margin-top: -30px;
    margin-bottom: 30px;
    margin-right: 285px;
    margin-left: 285px;
    border-radius: 10px; /* Top-left, Top-right, Bottom-right, Bottom-left */
  }
}



/* ###### DROP DOWN MENUS EDIT FOR MOBILE */
/* Astra menu toggle – clean & bold */
button.ast-menu-toggle {
  background-color: #9b9b9b;
  border: none !important;
  box-shadow: none !important;
}

/* Bolden + color arrow icon */
button.ast-menu-toggle .ast-icon svg path {
  stroke: #22346a;
  stroke-width: 2.2;
  fill: #22346a;
}

/* Optional active */
button.ast-menu-toggle:active .ast-icon svg path {
  stroke: #e8ad21;
  stroke-width: 2.2;
  fill: #e8ad21;
}

/* Optional hover */
button.ast-menu-toggle:hover .ast-icon svg path {
  stroke: #e8ad21;
  stroke-width: 2.2;
  fill: #e8ad21;
}

/* Astra arrow toggle — active/open state */
button.ast-menu-toggle[aria-expanded="true"] .ast-icon svg path {
  fill: #e8ad21 !important;
  stroke: #e8ad21 !important;
}

/* Mobile header container (actual visible panel) */
.ast-mobile-header-content {
  border-radius: 10px !important;
  overflow: hidden;
}
/* ###### DROP DOWN MENUS EDIT FOR MOBILE */



/* ###### TOGGLE MENU HOVER & ACTIVE */
/* Active / open state */
button.menu-toggle.main-header-menu-toggle[aria-expanded="true"] .mobile-menu-toggle-icon,
button.menu-toggle.main-header-menu-toggle[aria-expanded="true"] .mobile-menu-toggle-icon svg {
  color: #e8ad21 !important;
  fill: currentColor !important;
}

/* Hover state */
button.menu-toggle.main-header-menu-toggle:hover .mobile-menu-toggle-icon,
button.menu-toggle.main-header-menu-toggle:hover .mobile-menu-toggle-icon svg {
  color: #e8ad21 !important;
  fill: currentColor !important;
}
/* ###### TOGGLE MENU HOVER & ACTIVE */

/* Hide above header by default (top of page) */
.ast-above-header-wrap {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ###### STICKY HEADER HIDDEN */
/* Show when Astra sticky header is active (covers common Astra variants) */
.ast-sticky-active .ast-above-header-wrap,
.ast-header-sticked .ast-above-header-wrap,
.ast-main-header-bar-wrap.ast-sticky-active + .ast-above-header-wrap,
.ast-main-header-bar-wrap.ast-header-sticked + .ast-above-header-wrap {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
/* ###### STICKY HEADER HIDDEN */
/* PHONE ONLY — add margins to sticky above header */
@media (max-width: 767px) {
  .ast-sticky-active .ast-above-header-wrap,
  .ast-header-sticked .ast-above-header-wrap,
  .ast-main-header-bar-wrap.ast-sticky-active + .ast-above-header-wrap,
  .ast-main-header-bar-wrap.ast-header-sticked + .ast-above-header-wrap {
    margin-left: 16px !important;
    margin-right: 16px !important;
    border-radius: 10px;
  }
}
@media (max-width: 767px) {
  .ast-sticky-active .ast-above-header-wrap .site-above-header-wrap,
  .ast-header-sticked .ast-above-header-wrap .site-above-header-wrap {
    padding-left: 0px;
    padding-right: 0px;
		border-radius: 10px !important;
  }
}

/* PHONE ONLY — prevent hidden above header from stretching screen */
@media (max-width: 767px) {
  body:not(.ast-sticky-active):not(.ast-header-sticked) .ast-above-header-wrap {
    max-width: 100vw !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* Sticky header buttons: prevent super-narrow wrapping */
.ast-header-sticked .ast-above-header-wrap .ast-builder-button-wrap,
.ast-sticky-active .ast-above-header-wrap .ast-builder-button-wrap {
  display: flex;
  flex-wrap: nowrap;
}

.ast-header-sticked .ast-above-header-wrap .ast-custom-button,
.ast-sticky-active .ast-above-header-wrap .ast-custom-button {
  white-space: nowrap;
}

.ast-header-sticked .ast-above-header-wrap .ast-custom-button-link,
.ast-sticky-active .ast-above-header-wrap .ast-custom-button-link {
  flex: 0 0 auto;      /* don't shrink */
  /*min-width: max-content;*/
}

/* BOOK NOW $ button */
.ast-custom-button-link[aria-label="Book Now $"] .ast-custom-button {
  background-color: #22346a;
  color: #ffffff;
  border: 2px solid #22346a;
}

.ast-custom-button-link[aria-label="Book Now $"]:hover .ast-custom-button {
  background-color: #EA7826;
  color: #ffffff;
  border-color: #EA7826;
}
/* PHONE button */
.ast-custom-button-link[href^="tel:"] .ast-custom-button {
  background-color: transparent;
  color: #22346a;
  border: 2px solid #22346a;
}

.ast-custom-button-link[href^="tel:"]:hover .ast-custom-button {
  background-color: #EA7826;
  color: #ffffff;
  border-color: #EA7826;
}

/* DESKTOP ONLY: prevent duplicate toggle menu (Astra) */
@media (min-width: 921px) {
  .ast-desktop-header-content[style*="display: block"] {
    display: none !important;
  }
}

/* ####### CENTERING FORMS */
/* Center all form content */
.elementor-form-fields-wrapper {
  text-align: center;
}

/* Center inputs */
.elementor-form-fields-wrapper .elementor-field {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 480px; /* optional */
}

/* Center checkbox groups */
.elementor-form-fields-wrapper .elementor-field-subgroup {
  justify-content: center;
}

/* Center submit button */
.elementor-form-fields-wrapper .e-form__buttons {
  justify-content: center;
}
/* Center all Elementor form labels */
.elementor-form-fields-wrapper .elementor-field-label {
  display: block;
	font-weight: 600;
	font-size: 16px;
	margin-top: 15px;
  width: 100%;
  text-align: center !important;
}

