/* VEDAT BAŞAK */
footer {
  background: #fff;
  padding: 40px 80px;
  border-top: 1px solid #e5e5e5;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-links {
  flex: 1 1 250px;
  margin-bottom: 20px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-links-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  text-align: left;
}

.social-icons a {
  display: inline-block;
  margin-right: 8px;
  font-size: 14px;
  color: #333;
  background: #e63946;
  padding: 8px;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #333;
}

.footer-menu {
  display: flex;
  flex: 3 1 600px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-list h4 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
}

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

.footer-list ul li {
  margin-bottom: 8px;
}

.footer-list ul li a {
  text-decoration: none;
  font-size: 14px;
  color: #555;
  transition: color 0.3s;
}

.footer-list ul li a:hover {
  color: #000;
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  color: #555;
}

.footer-heart {
  display: block;
  margin-bottom: 8px;
}

/* TABLET STYLE */
@media screen and (min-width: 768px) and (max-width: 1279px) {
  footer {
    padding: 30px 30px;
  }
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-menu {
    flex-direction: column;
    width: 100%;
    gap: 24px;
  }
  .footer-list {
    margin-bottom: 20px;
  }
}

/* MOBİLE STYLE */
@media screen and (min-width: 350px) and (max-width: 767px) {
  footer {
    padding: 20px 10px;
  }
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-links {
    margin-bottom: 24px;
    width: 100%;
  }
  .footer-menu {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
  .footer-list {
    margin-bottom: 16px;
  }
  .footer-bottom {
    font-size: 12px;
    margin-top: 20px;
  }
  .footer-links-text {
    font-size: 13px;
  }
  .social-icons a {
    font-size: 16px;
    padding: 10px;
  }
}
