/*
Theme Name: Hello Elementor Child
Template:   hello-elementor
Version:    1.0.0
*/



/** Color and decoration for links in the body text widgets **/
.elementor-widget-text-editor a {
  color: var(--e-global-color-accent);
	text-decoration:underline
}
.elementor-widget-text-editor a:hover {
  text-decoration: none;
}


/** Add margin beneath bulleted lists **/
.elementor-widget-text-editor ul {
  margin-bottom: 10px;
}

/** Hide the contact form legend **/
.gform_required_legend {
  display: none;
}

/** Hide the recaptcha badge in lieu of the disclaimer **/
.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
}

/** Adjusted styles for Icon List Widget **/
.elementor-widget .elementor-icon-list-item,
.elementor-widget .elementor-icon-list-item a {
  align-items: start !important;
}

.elementor-icon-list-icon {
  margin-top: 5px;
}

/* HIDE Mobile Menu Items */
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .mobile-menu {
    display: block !important;
  }
}

@media only screen and (min-width: 481px) {
  .mobile-menu {
    display: none !important;
  }
}

/** Global Contact Form Styling **/
.gform_wrapper .gfield {
  padding: 6px 0px; /* reduced spacing between fields */
}

.gform_wrapper .ginput_container input[type="text"],
.gform_wrapper .ginput_container input[type="email"],
.gform_wrapper .ginput_container input[type="tel"],
.gform_wrapper .ginput_container input[type="number"],
.gform_wrapper .ginput_container textarea,
.gform_wrapper .ginput_container select {
    padding: 12px; /* slightly tighter internal padding */
    border: 1px solid var(--e-global-color-accent);
    font-size: 16px;
    background-color: rgba(0,0,0,0.3);
    color: #ffffff;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 6px; /* reduced space between fields */
    min-height: 52px;
}

.gform_wrapper .ginput_container input::placeholder,
.gform_wrapper .ginput_container textarea::placeholder {
    color: #ffffff;
    font-size: 16px;
}

.gform_wrapper .gfield_label {
  font-size: 20px;
  color: #ffffff;
}

.gform_wrapper .gchoice label {
  font-size: 20px;
  padding: 5px;
  color: #ffffff; /* radio + checkbox label text */
}

/* Radio button styling */
.gform_wrapper .gfield_radio label {
  color: #ffffff;
}

.gform_wrapper .gfield_radio input[type="radio"] {
  accent-color: var(--e-global-color-accent);
}

/* Optional: tighter radio spacing */
.gform_wrapper .gfield_radio .gchoice {
  margin-bottom: 6px;
}

/* Reduce space before and after submit button */
.gform_footer {
  margin-top: 10px; /* reduced space above button */
  margin-bottom: 0px; /* no extra space below form */
}

.gform_wrapper .gform_button {
  margin-top: 5px; /* tighter spacing before button */
}

.recaptcha-disclaimer {
  font-size: 80%;
  color: black;
}

.recaptcha-disclaimer a { 
  color: var(--e-global-color-accent);
}

.recaptcha-disclaimer a:hover { 
  text-decoration: underline;
}

