/* ================================================================
   REDESIGNED FOOTER CSS
   Indie footer with social links
================================================================ */

/* ================================================================
   INDIE FOOTER
================================================================ */
.indie-footer {
  background: var(--footer-bg);
  padding: 4rem 2rem 2rem;
  color: var(--footer-text);
}

.indie-inner {
  max-width: 900px;
  margin: 0 auto;
}

.indie-message {
  text-align: center;
  margin-bottom: 3rem;
}

.indie-eyebrow {
  font-family: var(--font-hand);
  font-size: 1rem;
  color: var(--sticky-yellow);
  display: inline-block;
  margin-bottom: 0.6rem;
  transform: rotate(-1.5deg);
}

@media (prefers-color-scheme: dark) {
  .indie-eyebrow {
    color: #b8a860;
  }
}

.indie-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--footer-text);
}

.indie-sub {
  font-size: 0.9rem;
  color: var(--footer-text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.indie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  text-align: left;
  margin-bottom: 3rem;
}

.indie-card {
  background: var(--footer-card-bg);
  border: 1px solid var(--footer-card-border);
  border-radius: 12px;
  padding: 1.25rem;
}

.indie-card h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--footer-text);
  margin-bottom: 0.35rem;
}

.indie-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 0;
}

/* ================================================================
   FOOTER BOTTOM
================================================================ */
.footer-bottom {
  border-top: 1px solid var(--footer-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-logo);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.footer-brand:hover {
  color: rgba(255,255,255,0.8);
}

.footer-brand img {
  width: 22px; height: 22px;
  border-radius: 5px;
  opacity: 0.55;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
}

.footer-links a {
  text-decoration: none;
  color: var(--footer-text-subtle);
  font-size: 0.78rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.75); }

/* ================================================================
   FOOTER CREDITS ROW
================================================================ */
.footer-credits {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--footer-border);
  gap: 1rem;
}

.footer-autorelease a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  transition: color 0.2s;
}

.footer-autorelease a:hover {
  color: rgba(255,255,255,0.65);
}

.footer-autorelease img {
  height: 16px;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.footer-autorelease a:hover img {
  opacity: 0.7;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: rgba(255,255,255,0.65);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.footer-social a:hover svg {
  opacity: 0.7;
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 960px) {
  .indie-grid { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-links {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-credits {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-social {
    margin-top: 0.5rem;
  }
}
