@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

a {
   text-decoration: none;
   color: inherit;
   padding: 0;
   margin: 0;
}

a {
   text-decoration: none;
   color: inherit;
   padding: 0;
   margin: 0;
}

footer li {
  font-size: 16px;
  line-height: normal;
}

.site-footer {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background-color: #111;
  color: #fff;
  width: 100%;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s, transform 0.2s;
}

.site-footer a:hover {
  color: #ccc;
  transform: translateX(2px);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px 40px 20px;
  border-bottom: 1px solid #222;
  gap: 15px;
}

.footer-logo a {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.footer-search form {
  display: flex;
  max-width: 300px;
  width: 100%;
}

.footer-search input {
  flex: 1;
  padding: 6px 12px;
  border: none;
  border-radius: 3px 0 0 3px;
  font-size: 14px;
  background-color: #222;
  color: #fff;
}

.footer-search input::placeholder {
  color: #aaa;
}

.footer-search button {
  background-color: #222;
  border: none;
  padding: 6px 12px;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  color: #fff;
}

.footer-search button:hover {
  background-color: #333;
}

.footer-sections {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px 40px;
  gap: 20px;
  border-bottom: 1px solid #222;
}

.footer-column {
  min-width: 150px;
  margin-bottom: 20px;
  padding-right: 20px;
  border-right: 1px solid #222;
}

.footer-column:last-child {
  border-right: none;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s, transform 0.2s;
}

.footer-column ul li a:hover {
  color: #ccc;
  transform: translateX(2px);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #222;
  font-size: 14px;
  transition: background 0.3s, transform 0.2s;
}

.footer-social a:hover {
  background-color: #333;
  transform: scale(1.1);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 14px;
  color: #aaa;
  border-top: 1px solid #222;
}

.footer-bottom img {
  margin-top: 10px;
  max-width: 60px;
}

.footer-credit {
  background-color: #111;
  text-align: center;
  padding: 10px 20px 50px 20px;
  font-size: 20px;
  color: #fff;
  margin-bottom: 0;
  border-bottom: 1px solid #222;
}

@media (max-width: 768px) {
  .footer-search form {
    display: flex;
    min-width: 80vw;
    width: 100%;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .footer-sections {
    flex-wrap: wrap;
  }

  .footer-column {
    width: 48%;
    margin-bottom: 25px;
    padding-right: 10px;
    border-right: none;
  }
}

@media (max-width: 480px) {
  .footer-column {
    width: 100%;
  }
}
