@font-face {
    font-family: 'AgileJewelry'; /* Name you'll use in CSS */
    src: url('../fonts/Agile\ Jewelry.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

.site-footer {
  border-top: 1px solid #ddd;
  background-color: #fff;
  padding: 3rem 2rem;
  font-family: 'Poppins', sans-serif;
  color: #0a1a44;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

/* Logo and name */
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-logo img {
  width: 60px;
  height: auto;
}

.name-footer {
  font-size: 1.3rem;
  color: #0a1a44;
    font-family: 'AgileJewelry';
}

/* Contact Info */
.footer-contact {
  max-width: 250px;
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-contact p {
  margin: 0;
}

/* Quick Links */
.footer-nav {
  min-width: 160px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: #0a1a44;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-nav a:hover {
  color: #f59e0b;
}

/* Social Section */
.footer-social {
  text-align: left;
}

.footer-social p {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-social ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social i {
  font-size: 1.3rem;
  color: #0a1a44;
  transition: color 0.3s;
}

.footer-social i:hover {
  color: #f59e0b;
}

/* Section titles */
.footer-contact::before,
.footer-nav::before,
.footer-social::before {
  content: attr(data-title);
  font-weight: 700;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
  color: #0a1a44;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .footer-logo,
  .footer-nav,
  .footer-contact,
  .footer-social {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .footer-nav ul,
  .footer-social ul {
    justify-content: center;
  }

  .footer-contact p {
    text-align: center;
  }

  .footer-logo,
  .footer-nav,
  .footer-contact,
  .footer-social {
    margin-bottom: 1.5rem;
  }

}

