/* ============================================================
   18 GANGSTER MUSEUM — footer.css
   ============================================================ */

#site-footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border);
}

/* ── TOP BAND (red CTA) ── */
.footer-cta-band {
  background: var(--red);
  padding: 2.8rem 6vw;
}
.footer-cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-cta-text h3 {
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.footer-cta-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}
.footer-cta-band .btn-outline {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
  white-space: nowrap;
}
.footer-cta-band .btn-outline:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--red);
}

/* ── MAIN FOOTER ── */
.footer-main {
  padding: 4rem 6vw 2.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

/* Brand column */
.footer-brand-logo {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  display: inline-block;
  margin-bottom: 1rem;
}
.footer-brand-logo span { color: var(--red); }

.footer-brand-logo img {
  display: block;
  width: auto;
  height: 56px;
  max-width: min(220px, 100%);
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--mid-grey);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-btn {
  width: 36px; height: 36px;
  background: var(--dark-grey);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--mid-grey);
  font-size: 0.9rem;
  transition: all 0.2s;
  text-decoration: none;
}
.social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Nav columns */
.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col ul a {
  font-size: 0.88rem;
  color: var(--mid-grey);
  transition: color 0.2s, padding-left 0.2s;
  display: block;
}
.footer-col ul a:hover {
  color: var(--white);
  padding-left: 6px;
}

/* Contact info */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.9rem;
}
.footer-contact-item .icon {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.9rem;
}
.footer-contact-item p {
  font-size: 0.85rem;
  color: var(--mid-grey);
  line-height: 1.5;
  margin: 0;
}
.footer-contact-item strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-grey);
  margin-bottom: 2px;
}

/* ── FOOTER BOTTOM ── */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 6vw;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--mid-grey);
  margin: 0;
}
.footer-bottom a {
  color: var(--mid-grey);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--red); }
.footer-bottom-links {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
}
@media (max-width: 680px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
  .footer-cta-inner { flex-direction: column; }
  .footer-cta-band .btn { width: 100%; justify-content: center; }
}
@media (max-width: 400px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}
