/* 2026-03-22 — Extracted from footer.ejs inline styles */

:root {
  --footer-bg: #1a1a1a;
  --footer-text: #ffffff;
  --footer-link: #9ca3af;
  --footer-link-hover: #ffffff;
  --success-color: #4CAF50;
  --error-color: #f44336;
}

.dark-footer {
  background: transparent;
  color: var(--footer-text);
  padding: 3rem 0 1rem 0;
  transition: all 0.3s ease;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
}

.footer-section {
  padding: 1rem;
}

.footer-section h3 {
  color: var(--footer-text);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.social-links a {
  color: var(--footer-link);
  margin-right: 1rem;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--footer-link-hover);
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

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

.footer-section ul li a {
  color: var(--footer-link);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--footer-link-hover);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  padding: 0.5rem;
  border: 1px solid var(--footer-link);
  background: transparent;
  color: var(--footer-text);
  border-radius: 4px;
}

.newsletter-form button {
  padding: 0.5rem 1rem;
  background: var(--footer-link);
  border: none;
  color: var(--footer-bg);
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--footer-link-hover);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.findboatstorage-fallback {
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 56px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #e5e7eb;
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0 12px;
  box-sizing: border-box;
}
