@import url(../css/theme.css);
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');


.footer {
  background-color: #4b1165;
  color: white;
  padding: 40px 20px 20px;
  font-family: var(--body-font);
}

.footer-title{
    font-family: var(--main-heading-font  );
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 220px;
  margin: 20px;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: calc(1.1*var(--h4-font-size));
}

.footer-section p {
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: var(--secondary-color)
}

.social-icons{
  text-align: center;
}

.social-icons a {
  display: inline-block;
  background: #652a7c;
  color: white;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-right: 10px;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
}
.social-icons svg{
    height: 24px;
    width: 24px;
  }

.newsletter-form {
  display: flex;
  margin-top: 10px;
}

.newsletter-form input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 5px 0 0 5px;
  flex: 1;
}

.newsletter-form button {
  background-color:var(--secondary-color);
  border: none;
  padding: 0 20px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  color: white;
  font-size: 18px;
}

.footer-bottom {
  border-top: 1px solid #673c83;
  margin-top: 40px;
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    padding: 0 15px;
  }

  .footer-section {
    margin: 10px 0;
  }

  .footer-section h3 {
    font-size: var(--h3-font-size);
    text-align: center;
    margin-bottom: 10px;
  }
  .footer-section h3 br {
    display: none;
  }

  .footer-section p,
  .footer-section ul li {
    text-align: center;
    font-size: calc(0.95 * var(--paragraph-font-size));
  }

  .social-icons {
    margin-top: 15px;
    text-align: center;
  }

  .social-icons a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 16px;
    margin-right: 8px;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-form input[type="email"] {
    border-radius: 5px;
    margin-bottom: 10px;
    width: 100%;
  }

  .newsletter-form button {
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    width: 100%;
  }

  .footer-bottom {
    font-size: 12px;
    padding-top: 15px;
    margin-top: 30px;
  }
}
