@import 'variables.css';

.footer {
  background: var(--color-primary);
  color: var(--white);
  border-radius: 32px;
  padding: 60px 0 20px;
  margin: 0 20px 20px;
}

.footer-logo {
  font-size: 40px !important;
  font-weight: 600;
  color: var(--white) !important;
  margin-bottom: 12px;
}

.footer .footer-text {
  font-size: 14px;
  color: var(--white) !important;
  margin: 20px 0;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px !important;
}

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

.footer ul li {
  margin-bottom: 10px;
  cursor: pointer;
  color: var(--light-text);
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.footer ul li::before {
  content: '';
  transition: all 0.3s ease;
}

.footer ul li:hover {
  color: var(--light-text);
}

.footer ul li:hover::before {
  transition: all 0.3s ease;
  content: '\f101';
  font-family: "Font Awesome 7 Free" !important;
  font-weight: 700;
  margin-right: 6px;
  animation: slideIn 0.3s linear alternate;
}

.subscribe {
  display: flex !important;
  flex-direction: row !important;
  gap: 12px !important;
  justify-content: flex-start !important;
  align-items: center !important;
  flex-wrap: wrap;
  margin-top: 16px;
  width: 100%;
}

.subscribe input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 8px;
  width: 60%;
  outline: none;
}

.contact-item {
  display: flex !important;
  flex-direction: row !important;
  gap: 10px !important;
  justify-content: flex-start !important;
  align-items: center !important;
  margin-bottom: 16px;
  color: var(--white) !important;
}

.contact-item svg,
.contact-item .material-icons {
  fill: var(--white);
  color: var(--white);
  padding: 4px;
  font-size: 20px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  margin-top: 4px;
}

.contact-item span {
  color: var(--white);
}

.footer .divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin: 16px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 40px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-bottom p, .footer-bottom p span {
  font-size: 14px;
  color: var(--white) !important;
}


.socials {
  display: flex;
  gap: 16px;
  color: var(--white);
}

.socials span {
  color: var(--white) !important;
  cursor: pointer;
}

.socials span:hover {
  color: #4dd0a3;
}

.social_icons {
  display: flex !important;
  flex-direction: row !important;
  gap: 20px !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
}

.social_icons a {
  padding: 8px 8px;
  width: 38px;
  height: 38px;
  display: flex !important;
  flex-direction: row !important;
  gap: 0 !important;
  justify-content: center !important;
  align-items: center !important;
  background-color: rgba(255, 255, 255, 0.85) !important;
  border-radius: 50%;
}

.social_icons a i,
.social_icons a .material-icons {
  color: var(--color-primary) !important;
  font-size: 18px;
}

.social_icons a:hover {
  background: var(--color-secondary) !important;
  transform: translateY(-3px);
}

.social_icons a:hover i {
  color: var(--white) !important;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 560px) {
  .footer {
    margin: 0 15px;
    padding: 30px 15px;
  }

  .footer .row {
    gap: 20px;
  }

  .footer .footer-bottom {
    margin-top: 10px;
  }
}
