/* FOOTER CSS */
.site-footer {
  background-color: #123456; /* Replace with your color */
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 50px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-section h2,
.footer-section h3 {
  margin-bottom: 15px;
  color: #fff;
}

.footer-section p,
.footer-section li,
.footer-section a {
  color: #ddd;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a:hover {
  color: #ffcc00; /* subtle accent on hover */
}

.footer-section.newsletter form {
  display: flex;
  margin-top: 10px;
}

.footer-section.newsletter input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 3px 0 0 3px;
  flex: 1;
}

.footer-section.newsletter button {
  padding: 10px 20px;
  border: none;
  background-color: #ffcc00;
  color: #123456; /* contrasting text */
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  font-weight: bold;
}

.footer-section.newsletter button:hover {
  background-color: #e6b800;
}

/* .socials {
  margin-top: 15px;
}

.socials a {
  display: inline-block;
  margin-right: 10px;
  background-color: #fff;
  color: #123456;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 12px;
}

.socials a:hover {
  background-color: #ffcc00;
  color: #123456;
} */

.socials {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;       
}

.socials a {
  display: flex;       
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background-color: #fff;
  color: #123456;
  border-radius: 5px;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.socials a:hover {
  background-color: #ffcc00;
  color: #123456;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #bbb;
  border-top: 1px solid #444;
  padding-top: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
}
