/* Global Theme Stylesheet - theme.css */

/* Font and Base */
body {
  font-family: 'Inter', sans-serif;
  background-color: #f9fafb;
  margin: 0;
  padding: 0;
  color: #1e1e2f;
}

h1, h2, h3, h4 {
  font-weight: 600;
  color: #1e1e2f;
  margin: 0;
}

/* Navbar */
.navbar {
  background-color: #ffffff;
  color: #111827;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 1rem 2rem;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: #2563eb;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
}
.nav-links li a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
}

/* Footer */
.footer {
  background-color: #ffffff;
  color: #6b7280;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s ease-in-out;
}

.btn-primary {
  background-color: #2563eb;
  color: white;
}
.btn-primary:hover {
  background-color: #1d4ed8;
}

.btn-danger {
  background-color: #ef4444;
  color: white;
}
.btn-danger:hover {
  background-color: #dc2626;
}

.btn-muted {
  background-color: #6b7280;
  color: white;
}
.btn-muted:hover {
  background-color: #4b5563;
}

/* Card / Tool Box */
.card, .tool-box {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
}

/* Section Titles */
.section-title {
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
  margin: 2rem 0 1rem;
}

/* Utility */
.text-center {
  text-align: center;
}
.text-muted {
  color: #6b7280;
}

/* Responsive */
@media (max-width: 600px) {
  .btn {
    width: 100%;
  }
  .card, .tool-box {
    padding: 1rem;
  }
}
