/* =========================
   Footer
   ========================= */
.footer {
  background-color: #0f172a; /* slate-900 */
  color: #e2e8f0; /* slate-200 */
  padding: 20px 10px;
  font-size: 14px;
}

.footer a {
  color: #93c5fd; /* sky-300 */
  text-decoration: none;
  margin: 0 10px;
}

.footer a:hover {
  color: #e0f2fe; /* sky-100 */
}

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

.footer-branding {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-legal {
  font-size: 12px;
  color: #94a3b8; /* slate-400 */
}

@media (min-width: 600px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .footer-branding,
  .footer-links,
  .footer-legal {
    margin-bottom: 0;
  }
}

/* =========================
   Base
   ========================= */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8fafc; /* slate-50 */
  color: #0f172a; /* slate-900 */
}

/* =========================
   Header / Navigation
   ========================= */
.app-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0f172a; /* slate-900 */
  text-decoration: none;
}

.brand-name .accent {
  color: #0284c7; /* sky-600 */
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #334155; /* slate-700 */
  font-weight: 500;
}

.nav-links a:hover {
  color: #0284c7; /* sky-600 */
}

.cta-button {
  padding: 0.5rem 1rem;
  background-color: #0284c7; /* sky-600 */
  color: #fff;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #0369a1; /* sky-700 */
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #0f172a;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background-color: #fff;
    padding: 1rem;
    position: absolute;
    top: 100%;
    right: 0;
    width: 240px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}