:root {
  --bg:#fff;
  --text:#111;
  --brand:#ffffff;
  --brand-2:#0b5fff;
  --muted:#f3f4f6;
}

/* Headings & banners in Lato (sans-serif) */
h1, h2, h3, h4, h5, h6,
.site-title,
.banner {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Global + body text in Merriweather (serif) */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Merriweather", Georgia, "Times New Roman", Times, serif;
  line-height: 1.6;
  color: var(--text);
}

.container { max-width: 1100px; margin: 0 auto; padding: 1rem; }

/* Header gradient: white → brand blue */
header {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: #111;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 0;
  padding: .5rem 0;
}

nav a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
}

.hero {
  background: var(--muted);
  padding: 2rem 0;
}

.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  padding: 1rem;
}

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

.cta {
  display: inline-block;
  background: var(--brand);
  color: #111;
  padding: .7rem 1rem;
  border-radius: .375rem;
  text-decoration: none;
  font-weight: 700;
}

footer {
  background: #0f172a;
  color: #e5e7eb;
  margin-top: 2rem;
}

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

.muted { color:#6b7280; }

.embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Banner */
.banner { padding: 1rem 0; }

/* Slideshow (safe to remove if you’ve gone static) */
.slideshow { position: relative; overflow: hidden; border-radius: .5rem; }
.slideshow img { width: 100%; height: 320px; object-fit: cover; display: block; }
@media (min-width:900px){ .slideshow img { height:420px; } }
