/*
 * Application styles
 */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1a1a2e;
  background: #f8f9fa;
  line-height: 1.6;
}

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: #1a1a2e;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand a {
  color: #e94560;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 5rem 1rem;
}

.hero h1 {
  font-size: 3rem;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.hero .tagline {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 2rem;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: #666;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #e94560;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}

.btn:hover { background: #c73652; }

/* ── Feature cards ──────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.card h3 { margin-bottom: 0.5rem; color: #1a1a2e; }
.card p  { color: #666; font-size: 0.93rem; }

/* ── Page headings ──────────────────────────────────────── */
.page-header {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid #eee;
  margin-bottom: 2.5rem;
}

.page-header h1 { font-size: 2.2rem; color: #1a1a2e; }
.page-header p  { color: #666; margin-top: 0.5rem; }

/* ── About ──────────────────────────────────────────────── */
.about-story { max-width: 700px; color: #444; margin-bottom: 3rem; }
.about-story p { margin-bottom: 1rem; }

.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.team-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.avatar {
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
  background: #f0f0f8;
}

.team-card h3 { color: #1a1a2e; margin-bottom: 0.25rem; }
.team-card .role { color: #e94560; font-size: 0.85rem; font-weight: 600; }
.team-card .bio  { color: #666; font-size: 0.88rem; margin-top: 0.5rem; }

/* ── Contact ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

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

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.3rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  font-family: inherit;
}

.contact-form textarea { min-height: 140px; resize: vertical; }

.contact-info h2 { color: #1a1a2e; margin-bottom: 1.5rem; }

.info-item { display: flex; gap: 0.75rem; margin-bottom: 1.2rem; align-items: flex-start; }
.info-icon { font-size: 1.3rem; }
.info-text strong { display: block; font-size: 0.85rem; color: #888; }
.info-text span { color: #333; }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  text-align: center;
  padding: 1.5rem;
  background: #1a1a2e;
  color: #888;
  font-size: 0.85rem;
}
