/* footer.css */
.footer {
  background-color: #1f1f1f;
  color: #f0f0f0;
  padding: 50px 30px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand,
.footer-links,
.footer-contact {
  flex: 1 1 250px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 10px;
}

.footer h3 {
  color: #d4a373;
  margin-bottom: 10px;
}

.footer h4 {
  color: #d4a373;
  margin-bottom: 12px;
}

.footer p,
.footer li,
.footer a {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-contact i {
  margin-right: 8px;
}

.footer-social {
  margin-top: 12px;
}

.footer-social a {
  color: #d4a373;
  margin-right: 10px;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #999;
}

/* Mobile/Small Screen Responsiveness */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand, .footer-links, .footer-contact {
    flex: 1 1 100%;
  }

  .footer-social {
    justify-content: center;
    display: flex;
  }
}

@media screen and (max-width: 576px) {
  .footer {
    padding: 2rem 1rem;
  }

  .footer-logo {
    height: 50px;
  }

  .footer h3, .footer h4 {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
  }

  .footer p, .footer li, .footer a {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
  }
}