/* Harvest Church shared styles */

:root {
  --color-bg: #ffffff;
  --color-text: #1f1f1f;
  --color-muted: #666666;
  --color-soft: #f5f2ec;
  --color-dark: #171717;
  --color-gold: #c69a4a;
  --color-gold-dark: #9f7834;
  --container: 1180px;
  --radius: 22px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--color-dark);
  color: #fff;
  padding: 10px 14px;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand img {
  width: 145px;
  height: auto;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.main-nav a {
  color: #333;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-gold-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid var(--color-dark);
  background: var(--color-dark);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: #333;
  border-color: #333;
}

.btn-outline {
  background: var(--color-dark);
  color: #fff;
  border-color: var(--color-dark);
}

.btn-outline:hover {
  background: #333;
  border-color: #333;
}

.btn-small {
  min-height: 40px;
  padding: 9px 18px;
  font-size: 12px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #111;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)),
    url("/assets/home-hero.jpg") center / cover no-repeat;
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 96px 0;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--color-gold);
  font-size: 13px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-times {
  margin: 28px 0 8px;
  font-size: clamp(20px, 3vw, 32px);
  text-transform: uppercase;
}

.hero-stream {
  margin: 0 0 34px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero .btn,
.hero .btn-outline {
  background: #fff;
  color: var(--color-dark);
  border-color: #fff;
}

.hero .btn:hover,
.hero .btn-outline:hover {
  background: var(--color-soft);
  color: var(--color-dark);
  border-color: var(--color-soft);
}

.section {
  padding: 88px 0;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

h2 {
  margin: 0 0 22px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
}

p {
  margin: 0 0 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 8px;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid var(--color-dark);
  background: var(--color-dark);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.text-link:hover {
  transform: translateY(-1px);
  background: #333;
  border-color: #333;
}

.image-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ddd;
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.muted-section {
  background: var(--color-soft);
}

.centered {
  text-align: center;
}

.narrow {
  max-width: 900px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.feature-card {
  display: grid;
  gap: 8px;
  min-height: 150px;
  align-content: center;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--color-soft);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.feature-card span {
  color: var(--color-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
}

.feature-card strong {
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1.1;
}

.contact-section {
  padding-top: 0;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  align-items: center;
  background: var(--color-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 56px);
}

.contact-list p {
  margin-bottom: 10px;
}

.contact-list a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  background: #111;
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}

.footer-logo {
  width: 145px;
  margin-bottom: 18px;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
}

.site-footer a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 82px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    padding: 12px 24px 24px;
    box-shadow: 0 24px 35px rgba(0, 0, 0, 0.12);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .nav-wrap > .btn-small {
    display: none;
  }

  .two-column,
  .contact-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .reverse-mobile .image-card {
    order: 2;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand img {
    width: 120px;
  }

  .main-nav {
    inset-top: 72px;
  }

  .hero {
    min-height: calc(100vh - 72px);
  }

  .hero-content {
    padding: 72px 0;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: min(100%, 320px);
    margin-inline: auto;
  }
}
