body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fafafa;
  color: #222;
}

.site-header {
  padding: 1rem;
  text-align: center;
}

.header-logo {
  height: 80px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.site-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.hero {
  text-align: center;
  padding: 3rem 1rem;
}

.hero-logo {
  height: 160px;
}

.tagline {
  font-size: 1.3rem;
  margin-top: 0.5rem;
  color: #444;
}

.home-sections {
  display: grid;
  gap: 2rem;
  padding: 2rem;
  max-width: 900px;
  margin: auto;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #d64521;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

.page {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
}

.site-footer {
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
  background: #fff;
  border-top: 1px solid #eee;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  width: 28px;
  height: 28px;
}

.icon {
  width: 100%;
  height: 100%;
  fill: #333;
  transition: fill 0.2s ease;
}

.social-link:hover .icon {
  fill: #d64521; /* matches your Pentecostal fire palette */
}
