@charset "utf-8";

/* Footer */
footer {
  background: var(--color-black);
  position: relative;
  z-index: 10;
  /* padding: 4rem 2rem 2rem; */
}

/* .footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
} */

.footer-content {
  width: 100%;
  padding: 3rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-content svg {
  fill: var(--color-yellow);
  width: 240px;
}

.footer-desc {
  color: var(--color-gray);
  line-height: 1.8;
  margin-top: 1rem;
}

/* .footer-section h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
} */

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  align-items: center;
}

.social-links a:not(:last-child) {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}
#instagram-icon {
  fill: var(--color-white);
  width: 16px;
  height: auto;
}
#x-icon {
  fill: var(--color-white);
  width: 16px;
  height: auto;
}

.social-links a:hover {
  background: var(--color-yellow);
  transform: translateY(-3px);
}

.social-links a:hover #x-icon,
.social-links a:hover #instagram-icon {
  fill: var(--color-black);
}

.social-links a:last-child{
  width: 80px;
  height: auto;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-link {
  display: flex;
  gap: 2rem;
}
.footer-link a {
  color: var(--color-gray);
}

.footer-link a::after {
  font-family: "Material Symbols Outlined";
  content: "\f8ce";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-size: 1.2em;
  position: relative;
  transition: transform 0.3s ease;
  margin-left: 0.5rem;

}

.footer-bottom {
  width: 100%;;
  margin: 0 auto;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}

 @media (width <= 1024px) {
  .footer-link {
    flex-direction: column;
    gap: 0.5rem;
    justify-content: flex-end;
  }
 }
 @media (width <= 768px) {
  .footer-content {
    flex-direction: column;
  }
  .footer-info {
    margin-inline: auto;
    text-align: center;
  }
  .footer-link {
    flex-direction: row;
    margin-inline: auto;
    margin-top: 2rem;
  }
  .social-links {
    display: inline-flex;
  }
 }
/* Responsive */
/* @media (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
} */
