/* Base: fonts, global, utilities, footer */

@font-face {
  font-family: "BrownSugar";
  src: url("../BrownSugar.ttf") format("truetype");
}
@font-face {
  font-family: "Satoshi";
  src: url("../Satoshi-Variable.ttf") format("truetype");
}

body {
  margin: 0;
  padding: 0;
  font-family: "BrownSugar", serif;
  background-color: #f7f5ed;
}

/* Global helpers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Footer */
footer {
  font-family: "Satoshi", sans-serif;
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
  color: #444;
  border-top: 1px solid #ddd;
  margin-top: 60px;
  background-color: #f7f5ed;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.social-media {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.social-media a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid #d4af37;
  color: #d4af37;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-media a:hover {
  background-color: #d4af37;
  color: white;
  transform: scale(1.1);
}

.social-media a i {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-media a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.threads-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid #d4af37;
  transition: all 0.3s ease;
}

.threads-link:hover {
  background-color: #d4af37;
  transform: scale(1.1);
}

.threads-link:hover img {
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  footer {
    padding: 30px 15px;
    margin-top: 40px;
  }

  .footer-content {
    gap: 15px;
  }

  .social-media {
    gap: 15px;
  }

  .social-media a {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .social-media a img {
    width: 18px;
    height: 18px;
  }

  .threads-link {
    width: 40px;
    height: 40px;
  }
}