/* about.css - styles for Noel Navigator About page */

/* Basic reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  line-height: 1.45;
  color: #222;
  background: linear-gradient(180deg, #fbfdff 0%, #f6f9fb 100%);
  padding: 24px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.about-container {
  max-width: 880px;
  margin: 24px auto;
  padding: 20px;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0b5cff;
  letter-spacing: -0.02em;
}

.version {
  font-size: 0.9rem;
  color: #6b7280;
  margin-left: 6px;
}

/* Info icon */
.site-header .info {
  text-decoration: none;
  font-size: 1.15rem;
  color: #6b7280;
}

/* Card */
.about-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15,23,42,0.03);
}

/* Section title and lead */
.section-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.lead {
  color: #374151;
  margin-bottom: 14px;
}

/* Sections */
.about-card section {
  margin-top: 14px;
  margin-bottom: 8px;
}

h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

ul {
  list-style: none;
  padding-left: 0;
}

/* Developer list */
.devs li {
  display: flex;
  flex-direction: column;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 8px;
  background: linear-gradient(180deg, rgba(11,92,255,0.03), rgba(11,92,255,0.01));
}

.devs strong {
  font-weight: 600;
  color: #0b5cff;
}

.role {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 4px;
}

/* Features list */
.features li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(15,23,42,0.04);
}

.features li:last-child {
  border-bottom: none;
}

/* Contact */
.contact a[href^="mailto:"] {
  color: #0b5cff;
  text-decoration: none;
  font-weight: 600;
}

.contact a[href^="mailto:"]:hover,
.contact a[href^="mailto:"]:focus {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  margin-top: 16px;
  text-align: center;
  color: #6b7280;
  font-size: 0.9rem;
}

.footer-links {
  margin-top: 8px;
  display: inline-flex;
  gap: 8px;
}

.footer-links a {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-links a:focus {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 560px) {
  .about-container { padding: 12px; }
  .logo { font-size: 1.25rem; }
  .about-card { padding: 16px; }
}
