/* === FOOTER STYLES === */

footer {
  background-color: #3e89c1; /* light blue */
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #a8ffbd; /* soft light green hover */
}

.footer-social {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer-social a {
  color: white;
  font-size: 1.4rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  transform: scale(1.2);
  color: #c68df2; /* purple hover */
}

/* === FOOTER STYLES === */

footer {
  background-color: #3e89c1; /* light blue */
  color: white;
  padding: 2rem 1rem;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 2rem;
  text-align: left;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.center-col {
  text-align: center;
}

.footer-col h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.footer-col p,
.footer-col a {
  color: white;
  line-height: 1.5;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: #a8ffbd; /* soft light green */
}

.footer-col form {
  margin-top: 0.5rem;
}

.footer-col input[type="email"] {
  padding: 0.5rem;
  width: 80%;
  max-width: 220px;
  margin-bottom: 0.5rem;
  border: none;
  border-radius: 4px;
}

.footer-col button {
  padding: 0.5rem 1rem;
  background-color: #a8ffbd; /* light green */
  color: #333;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.footer-col button:hover {
  background-color: #c68df2; /* hover purple */
  color: white;
}

.footer-social {
  margin-top: 0.75rem;
  display: flex;
  gap: 1rem;
  font-size: 1.4rem;
}

.footer-social a {
  color: white;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  transform: scale(1.2);
  color: #c68df2;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 1rem;
}
