/*
 Version: 1.0 – Widgets, Utilities and Page Specific Elements
*/

/* ----------------------------------------------------------
   Newsletter / Signup Widget
----------------------------------------------------------- */
.signup-wrapper {
  position: relative;
  top: 0px;
  width: 100%;
  max-width: 100%;
}

.newsletter-heading {
  display: inline-flex;              /* same alignment as footer titles */
  align-items: center;
  font-size: 0.9rem;                 /* match footer title size */
  font-weight: 400;                  /* same weight */
  color: #FFFFFF !important;         /* same color */
  text-decoration: none;             /* just in case */
  margin-bottom: 0.5rem;             /* keep the spacing you had */
}

.newsletter-heading::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f1ea";                   /* pick an icon you like */
  font-size: 1.25rem;
  opacity: 0.8;
  margin-right: 0.8rem;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  position: relative;
  top: 0;
}

.newsletter-fields {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1 1 200px;
  min-width: 150px;
  max-width: 300px;
  background-color: #05224D;
  color: #FFFFFF;
  font-size: 0.8rem;
  padding: 0.6rem 0.75rem;
  border: none;
  border-radius: 4px;
  outline: none;
}

.newsletter-input::placeholder {
  font-style: italic;
  color: rgba(255,255,255,0.5);
}

.newsletter-submit {
  background-color: #034895;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-family: 'Raleway', sans-serif;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.newsletter-submit:hover,
.newsletter-submit:focus {
  background-color: #00B8A9;
  transform: translateY(-2px);
}

.newsletter-submit:focus-visible {
    outline: 2px solid #00B8A9;  /* same accent color as hover */
    outline-offset: 2px;
}


.signup-wrapper p {
  margin: 0 !important;
  padding: 0 !important;
}




/* ----------------------------------------------------------
   Newsletter Pre-Footer Section
----------------------------------------------------------- */
.newsletter-section {
  color: #FFFFFF;
  text-align: center;
  padding: 4rem 1rem 3rem 1rem;
}

.newsletter-section p {
  font-size: 1rem;
  max-width: 1000px;
  margin: 0 auto 2rem auto;
  line-height: 1.5;
}

.newsletter-section .newsletter-shortcode {
  display: flex;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
  gap: 0.5rem;
}

.newsletter-section .signup-wrapper input,
.newsletter-section .signup-wrapper button {
  text-align: left;
  margin: 0;
}

@media (max-width: 768px) {
  .newsletter-section p { font-size: 0.9rem; margin-bottom: 1.5rem; }
  .newsletter-section .newsletter-shortcode { flex-direction: column; align-items: center; }
  .newsletter-section .signup-wrapper input,
  .newsletter-section .signup-wrapper button { width: 100%; max-width: 300px; }
}



/* ----------------------------------------------------------
   Page Specific Customisations - Icon + Title Block (force Humwell blue)
----------------------------------------------------------- */
.icon-title,
.icon-title i,
.icon-title span { color: #00295D; }

.icon-title { text-align: center; }

.icon-title i {
  font-size: 3rem;
  color: #00295D !important;
  display: block;
  margin-bottom: 0.25rem;
  line-height: 1;
}

.icon-title > span {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #00295D !important;
  line-height: 1.2;
}

/* === More Link === */
.more-link-wrapper { text-align: center; margin-top: 1rem; }

.more-link {
  color: #333333;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.more-link:hover,
.more-link:focus {
  color: #00B8A9;
  text-decoration: underline;
}

/* ----------------------------------------------------------
   Force different font size in VC Text+Separator Module
----------------------------------------------------------- */
.vc_separator.vc_separator_align_center h4 { font-size: 38px !important; text-align: center !important; }

/* ----------------------------------------------------------
   Small Text Utility
----------------------------------------------------------- */
.text-small { font-size: 0.8rem; line-height: 1.4; }





