/* Footer Styles */
.footer {
  box-sizing: border-box;
  width: 100%;
  padding: 3rem 2rem;
  background: #1a1a1a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

.footer-info {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 20px;
}

.copyright {
  font-size: 0.9rem;
  color: #999;
  text-align: left;
}


.footer-bottom {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 60px;
  text-align: left;
}

.footer-bottom-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-bottom-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-social-links {
  flex-direction: row;
  gap: 12px;
}

.footer-link {
  color: #999;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--color-gold);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  color: #ddd;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  color: var(--color-gold);
  transform: translateY(-3px);
}

.social-link:hover .social-link-box {
  background-color: rgba(253, 236, 212, 0.1);
}

.social-link-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

/* Responsive Footer */
@media (max-width: 1024px) {

}

@media (max-width: 768px) {
  .footer {
    padding: 2rem 1.5rem;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .footer-info {
    font-size: 0.75rem;
    margin-bottom: 12px;
    line-height: 1.6;
  }

  .copyright {
    font-size: 0.75rem;
    margin-bottom: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  .footer-bottom-title {
    font-size: 0.9rem;
  }

  .footer-link {
    font-size: 0.8rem;
  }

  .social-link-box {
    width: 28px;
    height: 28px;
  }

  .social-link-box svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 1.5rem 1rem;
  }

  .footer-info {
    font-size: 0.7rem;
  }

  .copyright {
    font-size: 0.7rem;
  }

  .footer-bottom-title {
    font-size: 0.85rem;
  }

  .footer-link {
    font-size: 0.75rem;
  }

  .social-link-box {
    width: 26px;
    height: 26px;
  }

  .social-link-box svg {
    width: 14px;
    height: 14px;
  }
}
