/* TRAE-CHANGE: Footer Widget Areas Styling */

/* Footer widget area styling */
.footer-widget-area {
  @apply text-white;
}

.footer-widget-area h3 {
  color: #fff !important;
  font-size: 1.25em;
  text-decoration: underline;
}

/* Footer widget titles */
.footer-widget-title {
  @apply font-bold text-white text-lg mb-4;
}

/* Footer widget content */
.footer-widget ul {
  padding: 0;
  margin: 0;
}

.footer-widget ul li {
  margin-bottom: 8px;
}

.footer-widget ul li a {
  color: #e6e6e6;
  @apply text-gray-300 hover:text-white hover:underline transition-colors duration-200;
}

.footer-widget ul li a:hover {
  color: #009ee3 !important;
}

.footer-widget ul li a:active {
  color: #009ee3 !important;
}

/* Navigation menu widget styling in footer */
.footer-widget .menu {
  @apply list-none p-0 m-0;
}

.footer-widget .menu li {
  @apply mb-2;
}

.footer-widget .menu li a {
  @apply text-gray-300 hover:text-white hover:underline transition-colors duration-200 text-sm;
}

/* Custom menu widget styling */
.footer-widget .widget_nav_menu ul {
  @apply list-none p-0 m-0;
}

.footer-widget .widget_nav_menu ul li {
  @apply mb-2;
}

.footer-widget .widget_nav_menu ul li a {
  @apply text-gray-300 hover:text-white hover:underline transition-colors duration-200 text-sm;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-widget-area {
    @apply mb-6;
  }

  .footer-widget-title {
    @apply text-base mb-3;
  }
}
