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

footer {
  background: #0f1826;
  padding: 2.5rem 2rem 1.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-family: 'Bangers', cursive;
  font-size: 1.8rem;
  color: var(--yellow);
  letter-spacing: 2px;
  text-shadow: 3px 3px 0 var(--orange);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 260px;
}

.footer-col h4 {
  font-family: 'Bangers', cursive;
  font-size: 1rem;
  color: var(--yellow);
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.social-links { display: flex; gap: 0.8rem; }

.social-btn {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.social-btn:hover { background: var(--yellow); }

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

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}