/* =====================================
   ABOUT PAGE – LIGHT THEME (matches moderator)
===================================== */

body {
  background: #f1f5f9;
  color: #1e293b;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* HERO — same gradient as moderator-hero */
.about-hero {
  background: linear-gradient(135deg, #eaf1f8 0%, #dde7f2 50%, #eaf1f8 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.about-hero h1 {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 10px;
}

.about-hero p {
  font-size: 15px;
  color: #475569;
  margin: 0;
}

/* CONTAINER */
.about-container {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 36px 20px 0;
}

/* CARDS — same as moderator .card */
.acard {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 30px;
  margin-bottom: 22px;
  box-shadow: 0 10px 30px rgba(30, 41, 59, 0.08);
  border: 1px solid #e2e8f0;
  transition: transform 0.2s, box-shadow 0.2s;
}

.acard:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(30, 41, 59, 0.12);
}

.acard h2 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 14px;
}

.acard p {
  font-size: 14.5px;
  line-height: 1.75;
  color: #475569;
  margin: 0;
}

.acard ul {
  margin: 8px 0 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.acard ul li {
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}

.acard b {
  color: #2563eb;
  font-weight: 600;
}

/* TECH STACK GRID */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 12px;
}

@media (max-width: 600px) {
  .stack-grid { grid-template-columns: 1fr; }
}

.stack-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px;
}

.stack-label {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}

.stack-val {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

/* CONNECT */
.connect-card { text-align: center; }

.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  text-decoration: none;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}

.social-btn:hover {
  border-color: #2563eb;
  color: #2563eb;
  background: #eff6ff;
  transform: translateY(-2px);
}

.social-btn img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  object-fit: cover;
}

/* FEEDBACK FORM */
.feedback-card form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.feedback-card input,
.feedback-card textarea {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  color: #1e293b;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}

.feedback-card input::placeholder,
.feedback-card textarea::placeholder {
  color: #94a3b8;
}

.feedback-card input:focus,
.feedback-card textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.12);
  background: #fff;
}

.feedback-card textarea {
  min-height: 110px;
  resize: vertical;
}

.feedback-card button {
  align-self: flex-start;
  background: #2563eb;
  border: none;
  border-radius: 30px;
  padding: 10px 28px;
  color: white;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}

.feedback-card button:hover {
  background: #1d4ed8;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.feedback-note {
  margin-top: 10px;
  font-size: 12px;
  color: #94a3b8;
}

/* FOOTER */
.footer {
  background: #f8fafc;
  color: #64748b;
  text-align: center;
  padding: 20px;
  font-size: 13px;
  border-top: 1px solid #e2e8f0;
}
