/* ---------------------------------------------------------------------
-------------------    Footer Component    -----------------------------
--------------------------------------------------------------------- */

.site-footer {
  text-align: center;
  background-color: #0f0f0f;
  color: #cfcfcf;
  padding: 40px 20px;
  /* margin-top: 80px; */
  font-family: 'Kalpurush', 'Noto Serif Bengali', serif;
}



.footer-inner {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr auto 1fr; /* left | center | right */
  align-items: center;
  gap: 40px;
}

/* Brand */
.footer-brand {
  flex: 1;
}

.footer-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 6px;
  cursor: default;
}

.footer-title:hover {
  text-decoration: none;
}

.footer-tagline {
  font-size: 0.95rem;
  color: #aaaaaa;
}

/* Meta */
.footer-meta {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Footer nav */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-bottom: 16px;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.85rem;
  color: #bdbdbd;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Texts */
.footer-disclaimer {
  margin-bottom: 14px;
}

.footer-copy {
  font-size: 0.85rem;
  color: #8f8f8f;
}

/* 📱 Mobile */
@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer-title {
    font-size: 1.6rem;
  }

  .footer-nav {
    gap: 10px 16px;
  }
}

/* Footer center actions */
.footer-actions {
  flex: 0;
  display: flex;
  justify-content: center;
  gap: 18px;
}

/* Icon buttons */
.footer-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #3a3a3a;
  background: transparent;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: border-color 0.2s ease, transform 0.2s ease;
}



/* Hover — still white */
.footer-icon:hover {
  border-color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
