/**
 * Footer Bootstrap Brain Component Styles
 * Custom CSS for dynamic footer component
 */

/* Font Size Utilities */
.fs-7 { font-size: 0.875rem !important; }
.fs-8 { font-size: 0.75rem !important; }
.fs-9 { font-size: 0.625rem !important; }

/* Separator Utilities */
.bsb-sep {
  position: relative;
}

.bsb-sep-border::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 1em;
  background-color: currentColor;
  opacity: 0.25;
}

.bsb-sep:last-child::after {
  display: none;
}

/* Custom Margin and Padding Utilities */
.py-xxl-10 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

@media (min-width: 1400px) {
  .py-xxl-10 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
}

/* Footer specific styles */
.footer-dynamic {
  background-color: #000 !important;
}

.footer-dynamic .link-wrapper ul li {
  margin-bottom: 0.25rem;
}

.footer-dynamic .link-wrapper ul li a {
  transition: opacity 0.3s ease;
}

.footer-dynamic .address-wrapper address {
  font-style: normal;
  line-height: 1.5;
}

.footer-dynamic .social-media-wrapper ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-dynamic .social-media-wrapper ul li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-dynamic .link-wrapper ul li a {
    font-size: 1.25rem !important;
  }
  
  .py-xxl-10 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}