/* -------------------------------------------------------
   TYPOGRAFIA – modernit ja selkeät fontit
---------------------------------------------------------- */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Merriweather:wght@400;700&display=swap');

/* Runko ja perusfontti */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #222;
  line-height: 1.6;
  background-color: #f8f9fa;
}

/* Otsikot */
h1, h2, h3, h4, h5 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.3px;
}

/* Ingressit (lead) */
.lead {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #444;
}

/* Korttien tekstisisältö */
.card-body p {
  font-size: 0.95rem;
  color: #333;
}

/* -------------------------------------------------------
   LINKIT – neutraali ja tyylikäs ilman alleviivausta
---------------------------------------------------------- */
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}

a:hover,
a:focus {
  color: #0066cc;
  opacity: 0.85;
  text-decoration: none;
}

.article-card {
  transition: box-shadow .15s ease, transform .15s ease;
}
.article-card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,.06);
  transform: translateY(-2px);
}


/* -------------------------------------------------------
   BADGET JA TOPICIT
---------------------------------------------------------- */
.badge {
  font-size: 0.75rem;
  border-radius: 0.75rem;
  font-weight: 500;
  padding: 0.4em 0.7em;
}

/* värit pääryhmille */
.badge-topic-autot { background:#d1e7ff; color:#003b73; }
.badge-topic-urheilu { background:#ffe5d1; color:#7a2e00; }
.badge-topic-oheis { background:#e4ffd1; color:#215400; }
.badge-topic-some { background:#f1d1ff; color:#5a0073; }

/* -------------------------------------------------------
   KORTIT JA YLEISILME
---------------------------------------------------------- */
.card {
  border: none;
  border-radius: 1rem;
}

.card-body {
  padding: 1.5rem;
}

.card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.08);
  transition: box-shadow 0.2s ease-in-out;
}

/* -------------------------------------------------------
   OTSIKON JA SISÄLLÖN VÄLI
---------------------------------------------------------- */
h1, h2 {
  margin-bottom: 0.75rem;
}



/* AUTOT */
#topicFilter .btn-outline-autot {
  color: #003b73;
  border-color: #a4d0ff;
  background-color: transparent;
}
#topicFilter .btn-outline-autot.active {
  background-color: #d1e7ff;
  color: #003b73;
  border-color: #66b2ff;
}

/* URHEILU */
#topicFilter .btn-outline-urheilu {
  color: #7a2e00;
  border-color: #ffc89c;
  background-color: transparent;
}
#topicFilter .btn-outline-urheilu.active {
  background-color: #ffe5d1;
  color: #7a2e00;
  border-color: #ffb073;
}

/* OHEIS */
#topicFilter .btn-outline-oheis {
  color: #215400;
  border-color: #c3ff9e;
  background-color: transparent;
}
#topicFilter .btn-outline-oheis.active {
  background-color: #e4ffd1;
  color: #215400;
  border-color: #98f063;
}

/* SOME */
#topicFilter .btn-outline-some {
  color: #5a0073;
  border-color: #e4b8ff;
  background-color: transparent;
}
#topicFilter .btn-outline-some.active {
  background-color: #f1d1ff;
  color: #5a0073;
  border-color: #cc80ff;
}

/* "Kaikki" */
#topicFilter .btn-secondary {
  background-color: #e9ecef;
  color: #212529;
}
#topicFilter .btn-outline-secondary {
  background-color: transparent;
  color: #212529;
  border-color: #ced4da;
}

.badge-topic {
  border-radius: 9999px;
  font-size: .7rem;
}

.badge-topic-autot { background:#d1e7ff; color:#003b73; }
.badge-topic-urheilu { background:#ffe5d1; color:#7a2e00; }
.badge-topic-oheis { background:#e4ffd1; color:#215400; }
.badge-topic-some { background:#f1d1ff; color:#5a0073; }
