/* ===================================
   FOOTER STYLES
   El-Shaddai Interiors
   =================================== */

/* NOTE: Requires :root CSS variables from navbar.css or variables.css
   Variables used: --black, --dark1, --gold, --gold-light, --white, --border */

footer {
  background-color: var(--dark1);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 60px 20px;
  border-top: 1px solid var(--border);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 40px;
}

/* Footer About Section */
.footer-about p {
  font-size: 14px;
  line-height: 1.8;
  margin: 20px 0 25px;
}

.footer-logo img {
  display: block;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* Footer Links & Contact Headings */
.footer-links h3,
.footer-contact h3 {
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 700;
}

/* Footer Links */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-links a i {
  font-size: 10px;
}

/* Footer Contact Items */
.footer-contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-contact-item p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: var(--gold);
}

/* Footer WhatsApp CTA */
.footer-whatsapp-cta {
  margin-top: 30px;
}

.footer-whatsapp-btn {
  background: var(--gold);
  color: var(--black);
  padding: 12px 25px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-whatsapp-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom a {
  color: var(--gold);
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* Auerion branding link */
.footer-bottom a[href*="auerion"] {
  color: #1E90FF !important;
}

.footer-bottom a[href*="auerion"]:hover {
  color: #63B8FF !important;
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */
@media (max-width: 1024px) {
  footer {
    padding: 60px 32px 32px;
  }

  .footer-container {
    gap: 40px;
  }
}

/* ===================================
   RESPONSIVE - MOBILE
   =================================== */
@media (max-width: 768px) {
  footer {
    padding: 40px 16px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}