.nineties-footer {
  background: #000;
  color: #fff;
  padding: 60px 20px 0;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-box {
  flex: 1 1 250px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

.footer-box h3 {
  color: #540c3a;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-about {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #540c3a;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

/* Bottom bar */
.footer-bottom {
  margin-top: 40px;
  background: #050505;
  text-align: center;
  padding: 15px;
  font-size: 13px;
  color: #777;
}

/* ✅ RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo {
    margin: auto;
  }
}
