/* Minimal Footer Style - RCA Inspired */

.footer_component {
  background-color: #000000 !important;
  border-top: 1px solid #333333;
  padding: 1.5rem 2rem !important;
  margin-top: 4rem;
}

.footer-menu-section {
  display: none !important;
}

.copyright-wrapper {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  gap: 2rem !important;
  padding: 0 !important;
  border: none !important;
}

.copyright-wrapper .text-size-regular {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 9px !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  color: #666666 !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  white-space: nowrap;
}

.subfooter {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 1.5rem !important;
  flex-wrap: wrap;
  padding: 0 !important;
  margin: 0 !important;
}

.subfooter .text-size-regular,
.subfooter a {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 9px !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  color: #666666 !important;
  text-decoration: none !important;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.subfooter a:hover,
.linkaltovisual:hover {
  color: #ffffff !important;
}

/* Social Icons in Footer */
.footer-social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: opacity 0.3s ease;
}

.footer-social-icons a:hover {
  opacity: 0.7;
}

.footer-social-icons svg {
  width: 16px;
  height: 16px;
  fill: #666666;
  transition: fill 0.3s ease;
}

.footer-social-icons a:hover svg {
  fill: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer_component {
    padding: 1.25rem 1rem !important;
  }
  
  .copyright-wrapper {
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: flex-start !important;
  }
  
  .subfooter {
    justify-content: flex-start !important;
    gap: 1rem !important;
  }
  
  .copyright-wrapper .text-size-regular,
  .subfooter .text-size-regular,
  .subfooter a {
    font-size: 8px !important;
  }
}

@media (max-width: 480px) {
  .subfooter {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
  }
}
