/* Site Title with Flourish */
/* Force container and branding to center */
.tp-middle-header .tp-container {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
}

#tp-site-branding.tp-below-logo {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  text-align: center !important;
}

/* Center the name */
.tp-site-title-tagline {
  text-align: center !important;
  padding: 20px 0;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
}

.tp-site-title {
  margin: 0 !important;
  padding: 0 20px !important;
  order: 2;
  flex-shrink: 0;
}

.tp-site-title a {
  text-decoration: none;
}

/* Left decorative element: line fading to arrow */
.tp-site-title-tagline::before {
  content: "";
  order: 1;
  height: 2px;
  width: 120px;
  background: linear-gradient(to right, #2A3D6B 0%, #2A3D6B 70%, transparent 100%);
  margin-right: 15px;
  flex-shrink: 0;
}

/* Right decorative element: line fading to arrow */
.tp-site-title-tagline::after {
  content: "";
  order: 3;
  height: 2px;
  width: 120px;
  background: linear-gradient(to left, #2A3D6B 0%, #2A3D6B 70%, transparent 100%);
  margin-left: 15px;
  flex-shrink: 0;
}

/* Hide decorative elements on mobile */
@media (max-width: 768px) {
  .tp-site-title-tagline::before,
  .tp-site-title-tagline::after {
    display: none;
  }
  
  .tp-site-title {
    padding: 0 !important;
  }
}

/* Misc */
a:hover {
    text-decoration: underline;
}
/* Footer menu link styles */
.tp-footer3 .widget_nav_menu .menu a {
    color: #ffffff;
    text-decoration: none;
}
/* Hover state */
.tp-footer3 .widget_nav_menu .menu a:hover {
    color: #F0D4C5;
    text-decoration: underline;
}
/* Active/current page */
.tp-footer3 .widget_nav_menu .menu .current-menu-item a,
.tp-footer3 .widget_nav_menu .menu .current_page_item a {
    color: #F0D4C5;
}
/* Visited links */
.tp-footer3 .widget_nav_menu .menu a:visited {
    color: #ffffff;
}
/* Footer menu left margin */
.tp-footer3 .widget_nav_menu .menu {
    margin-left: 20px;
}