/* ===== FOOTER ===== */
footer {
  font-family: Arial, sans-serif;
  color: #fff;
}

/* Upper footer */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 50px;
  background: #e9e7e7;   
  color: #333;
}

.footer-logo {
  width: 150px;
  margin-bottom: 10px;
}

.empower-text {
  font-size: 14px;
  max-width: 250px;
  color: #444;
}

.footer-social a {
  color: #333;
  margin-left: 15px;
  font-size: 20px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #2E8B57; /* emerald green hover */
}

/* Lower footer */
.footer-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 40px 50px;
  background: #4B0082;   /* same as navbar */
}

.footer-column{
    line-height: 30px;
}
.footer-column h4 {
  margin-bottom: 15px;
  color: #fee715; /* yellow accent */
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 8px 0;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #2E8B57;
}

/* Newsletter */
#newsletter-form {
  display: flex;
  flex-direction: column;
}

#newsletter-form input {
  padding: 10px;
  border: none;
  border-radius: 4px;
  margin-bottom: 10px;
}

#newsletter-form button {
  background: #2E8B57;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

#newsletter-form button:hover {
  background: #fee715;
  color: #2B2B2B;
}

.success-message {
  display: none;
  color: #2E8B57;
  font-size: 14px;
  margin-top: 10px;
}

/* Copyright */
.footer-copyright {
  text-align: center;
  padding: 15px;
  background: #1a1a1a;
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    margin-top: 15px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 20px;
  }
}