/* ---- Base ---- */

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  color: #1e2a33;
  background: #f7f9fb;
}

/* ---- Header ---- */

header {
  text-align: center;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 4px solid #4a90c2;
}

.logo {
  width: 150px;
  height: auto;
  margin-bottom: 0.75rem;
  mix-blend-mode: multiply;
}

header h1 {
  margin: 0.5rem 0;
  font-size: 2rem;
  font-weight: 800;
  color: #16324f;
  letter-spacing: -0.5px;
}

header p {
  color: #5a6b78;
  max-width: 600px;
  margin: 0.5rem auto 0;
  font-size: 1.05rem;
}

/* ---- Search ---- */

#search {
  width: 100%;
  padding: 1rem 1.2rem;
  font-size: 1.15rem;
  border: 2px solid #cfd8dc;
  border-radius: 10px;
  box-sizing: border-box;
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}

#search:focus {
  outline: none;
  border-color: #4a90c2;
  box-shadow: 0 0 0 3px rgba(74, 144, 194, 0.25);
}

/* ---- Filters ---- */

#filters {
  display: flex;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
}

select {
  flex: 1;
  padding: 0.7rem;
  border-radius: 8px;
  border: 2px solid #cfd8dc;
  background: white;
  color: #1e2a33;
  font-size: 0.95rem;
}

/* ---- Result count ---- */

#count {
  color: #5a6b78;
  font-size: 0.9rem;
  margin: 0 0 1rem;
  font-weight: 600;
}

/* ---- Results ---- */

.result {
  padding: 1.3rem 1.5rem;
  margin-bottom: 1rem;
  background: white;
  border: 1px solid #e3e9ec;
  border-left: 5px solid #16324f;
  border-radius: 10px;
  transition: box-shadow 0.2s, border-left-color 0.2s;
}

.result:hover {
  box-shadow: 0 4px 14px rgba(22, 50, 79, 0.1);
  border-left-color: #4a90c2;
}

.result h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.result h3 a {
  color: #16324f;
  text-decoration: none;
  font-weight: 700;
}

.result h3 a:hover {
  color: #4a90c2;
  text-decoration: underline;
}

.meta {
  color: #7c8b96;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.snippet {
  font-size: 0.97rem;
  color: #3a4750;
  line-height: 1.55;
}

/* ---- Footer ---- */

footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e3e9ec;
  color: #9aa7b0;
  font-size: 0.85rem;
}
.footer-links {
  margin-top: 0.5rem;
}

.footer-links a {
  color: #16324f;
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  color: #4a90c2;
  text-decoration: underline;
}