/* ============================================
   index.html-ONLY overrides
   Kept minimal — most styling is in site.css.
   ============================================ */

/* Footer newsletter dark-mode tweaks (only on index since others render footer the same way already) */
.footer-newsletter input::placeholder { color: rgba(255, 255, 255, 0.35); }
.footer-newsletter button:hover { background: rgba(255, 255, 255, 0.25); }
.footer-bottom a:hover { color: rgba(255, 255, 255, 0.7); }

/* Hide legacy footer chrome that was in old templates */
.footer-logo,
.footer-tag,
.footer-top { display: none; }

/* Instagram tiles (only used on index) */
.ig-link {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  aspect-ratio: 1;
  position: relative;
  display: block;
  border-radius: 4px;
  overflow: hidden;
}
.ig-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.25s;
}
.ig-link:hover::before { background: rgba(0, 0, 0, 0.1); }
.ig-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 2;
}
.ig-link:hover .ig-overlay { opacity: 1; }
.ig-overlay span {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  border-radius: 4px;
}
