/* ================= FOOTER ================= */

/* footer {
  margin-top: var(--space-xl);
  background: #fafbfc; 
  border-top: 1px solid var(--border);
  padding: var(--space-lg) 0;
  text-align: center;
  color: var(--text-secondary);
}

footer .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 var(--space-md);
  font-size: 0.85rem; 
  line-height: 1.6;
}



/* =====================================================
   FOOTER
===================================================== */
/* 
footer {
  background: white;
  border-top: 1px solid var(--border);
  padding: var(--space-md);
  text-align: center;
  color: var(--text-secondary);
} */

/* =====================================================
   FOOTER (Portfolio Style Replica)
===================================================== */

.footer {
  background: #eeeeee;
  padding: var(--space-sm) var(--space-md);
  font-size: 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

/* Email Section */
.footer-email {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
}

.copy-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.copy-btn:hover {
  opacity: 1;
}

/* Center Text */
.footer-copy {
  text-align: center;
  color: var(--text-primary);
  font-weight: 500;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social a {
  text-decoration: none;
  color: var(--text-primary);
  transition: opacity 0.2s ease;
}

.footer-social i {
  font-size: 24px;
}

.footer-social a:hover {
  opacity: 0.7;
}

.social-btn.location .map-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* ==============================
   MOBILE & TABLET
============================== */

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-email {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}
