/* ===========================
   Uniform Site Footer
   Shared across every page. Loaded after the page's base
   stylesheet (style.css / blog.css) so it overrides the older,
   page-specific footer rules. Relies on the .btn / .btn-primary /
   .btn-outline classes already defined in the base stylesheet.
   =========================== */
.site-footer {
  background: #111111;
  border-top: 1px solid #333333;
  padding: 60px 0 0;
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 20px 0 40px;
}

.footer-col h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  margin-bottom: 12px;
  color: #aaaaaa;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #e74c3c;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 24px 0;
  border-top: 1px solid #333333;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-brand img {
  height: 28px;
  width: auto;
  display: block;
}

.footer-brand span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  color: #aaaaaa;
}

.footer-tag {
  color: #666666;
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
