/* --- FOOTER MAIN STYLE --- */
.main-footer {
  background: transparent;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

/* --- SOCIAL ICON ALIGNMENT --- */
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 20px;
}

.social-link-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  text-decoration: none;
}

.social-link-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-link-item:hover img {
  transform: scale(1.15);
  opacity: 1;
}

/* --- TEXT --- */
.disclaimer {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto 25px;
  opacity: 0.7;
}

.footer-bottom {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
}

/* --- DIVIDER --- */
.footer-divider {
  max-width: 1000px;
  height: 3px;
  margin: 0 auto 30px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.underline {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: center; /* Keeps everything to the left */
  align-items: center;
  margin-top: 20px;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px; /* Space between logo, name, and year */
}

.footer-logo {
  height: 35px; /* Adjust size to match your text height */
  width: auto;
  display: block;
}
