/* ==========================
   FOOTER
   ========================== */

.footer {
  position: relative;
  background: linear-gradient(180deg, #070707, #040404);
  padding: 5rem 2rem 3rem;
  color: #ccc;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* cinematic ambient glow */
.footer-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(196,166,104,0.18), transparent 55%);
  filter: blur(120px);
  opacity: 0.6;
  animation: footerGlowMove 25s ease-in-out infinite;
  z-index: 0;
}

@keyframes footerGlowMove {
  0% { transform: translate(-6%, -6%); }
  50% { transform: translate(6%, 6%); }
  100% { transform: translate(-6%, -6%); }
}

/* ==========================
   FOOTER CONTAINER
   ========================== */

.footer-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr; /* add an extra column for social links */
  gap: 3rem;
  z-index: 1;
  flex-wrap: wrap;
}

/* ==========================
   BRAND
   ========================== */

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand img {
  width: 200px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-brand h3 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: #fff;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #aaa;
  max-width: 380px;
}

/* ==========================
   FOOTER LINKS & CONTACT
   ========================== */

.footer h4 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  color: #fff;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 0.6rem;
}

.footer ul li a {
  color: #aaa;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer ul li a:hover {
  color: #c4a668;
  transform: translateX(3px);
}

/* ==========================
   SOCIAL LINKS
   ========================== */

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #c4a668;
  color: #0a0a0a;
  transform: scale(1.15);
}

/* UNIQUE FOOTER LOGO */
.footer-logo-unique {
  width: 160px;          /* slightly larger for premium feel */
  height: auto;
  display: block;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 10px rgba(196,166,104,0.5)); /* cinematic glow */
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* subtle hover animation */
.footer-logo-unique:hover {
  transform: scale(1.05) rotateZ(1deg);
  filter: drop-shadow(0 6px 18px rgba(196,166,104,0.7));
}

/* ==========================
   FOOTER BOTTOM BAR
   ========================== */

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #777;
}

.footer-bottom span {
  color: #999;
}

/* ==========================
   RESPONSIVE
   ========================== */

@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
  }
}
