/* ================= FOOTER (Black & Aesthetic Look) ================= */
.footer {
  background: #111; /* Black footer */
  color: #ccc;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-top: 2px solid #d4af37; /* gold accent line */
  box-shadow: 0 -2px 12px rgba(0,0,0,0.6); /* soft dark shadow */
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  gap: 30px;
}

.footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 250px;
  min-width: 250px;
}

/* About */
.footer-about h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #d4af37; /* gold */
}
.footer-about p {
  line-height: 1.6;
  color: #aaa;
}

/* Social icons */
.footer-socials {
  margin-top: 15px;
}
.footer-socials a {
  color: #ccc;
  font-size: 1.5rem;
  margin-right: 20px;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-socials a:hover {
  color: #d4af37; /* gold hover */
  transform: translateY(-3px); /* smooth lift effect */
}

/* Links + Contact */
.footer-links h4,
.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #d4af37; /* gold */
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-links ul li a:hover { 
  color: #d4af37; 
  padding-left: 4px; /* subtle movement */
}
.footer-contact p {
  margin-bottom: 10px;
  color: #aaa;
}

/* Bottom strip */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(212,175,55,.4);
  margin-top: 30px;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 25px;
  }
}
