/**
 * Nick's Software - Footer CSS
 * Contains: Footer base styles + responsive
 */

/* ===== Footer Base ===== */
footer {
  background: var(--surface-dark, #1e293b);
  padding: 80px 5% 40px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-light, #64748b);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer-col h4 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

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

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: var(--text-light, #64748b);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent-bright, #60a5fa);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: var(--text-light, #64748b);
  font-size: 14px;
}

.footer-contact {
  display: flex;
  gap: 24px;
}

.footer-contact a {
  color: var(--text-light, #64748b);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--accent-bright, #60a5fa);
}

/* ===== Footer Responsive - Tablet ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Footer Responsive - Mobile ===== */
@media (max-width: 768px) {
  footer {
    padding: 60px 5% 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-contact {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}
