/*
 * Dharahara Traders — Footer styles
 * Built by: Shiva Sharan Shrestha
 * License: MIT (see ../LICENSE)
 */
/* Footer Styles for Consistency Across All Pages */
.site-footer {
  background: linear-gradient(135deg, #ecd9b0 0%, #f5f1e8 100%);
  color: #4a3728;
  padding: 56px 0 32px;
  border-top: 1px solid #e2cfa3;
  box-shadow: 0 -4px 24px rgba(139,115,85,0.10);
  font-family: 'Inter', sans-serif;
  width: 100%;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  align-items: start;
}
.footer-grid h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #b8860b;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-grid ul {
  list-style: none;
  padding: 0;
}
.footer-grid li {
  margin-bottom: 0.7rem;
  color: #4a3728;
  opacity: 0.92;
  font-size: 1.05rem;
  transition: color 0.2s;
  padding-left: 0.5rem;
  position: relative;
}
.footer-grid li::before {
  content: '\2022';
  color: #b8860b;
  font-size: 1.1rem;
  position: absolute;
  left: 0;
  top: 0;
}
.footer-grid a {
  color: #8b7355;
  text-decoration: none;
  opacity: 0.85;
  font-weight: 600;
  transition: color 0.2s, opacity 0.2s;
  border-bottom: 1px dotted #b8860b;
}
.footer-grid a:hover {
  opacity: 1;
  color: #b8860b;
  border-bottom: 1px solid #b8860b;
}
.footer-company {
  font-size: 1.15rem;
  font-weight: 700;
  color: #8b7355;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #e2cfa3;
  color: #4a3728;
  opacity: 0.95;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: none;
}
.copyright a {
  color: #b8860b;
  text-decoration: underline;
  font-weight: 600;
}
@media (max-width: 1200px) {
  .footer-grid {
    max-width: 100%;
    gap: 2rem;
    padding: 0 2rem;
  }
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .site-footer {
    padding: 40px 0 20px;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 0.5rem;
  }
  .site-footer {
    padding: 28px 0 12px;
  }
  .footer-grid h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  .footer-company {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .copyright {
    font-size: 0.95rem;
    padding-top: 1rem;
  }
}
