/* ============================================
   Baymonte Christian School — GateWay Bible Church
   ============================================ */

/* (Hero uses shared page-hero--photo component from components.css) */


/* --- Intro Layout --- */

.bay-intro-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: var(--space-16);
  align-items: start;
}

.bay-logo {
  margin-bottom: var(--space-6);
}

.bay-logo img {
  height: 56px;
  width: auto;
}

.bay-intro-text {
  font-size: var(--text-base);
  font-weight: var(--font-weight-light);
  color: var(--dark-blue-70);
  line-height: 1.7;
  margin-top: var(--space-4);
}


/* --- Facts Card --- */

.bay-facts-card {
  background: var(--dark-blue);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border-left: 3px solid var(--gold);
}

.bay-facts-title {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  color: var(--white);
  margin-bottom: var(--space-6);
}

.bay-facts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.bay-facts-list li {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--white-10);
}

.bay-facts-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.bay-fact-label {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--bright-blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bay-fact-value {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-book);
  color: var(--white-90);
  line-height: 1.5;
}


/* --- Scripture --- */

.bay-verse {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-8) 0;
}

.bay-verse-text {
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-light);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: var(--space-4);
}

.bay-verse-ref {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--white-50);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


/* --- Closing CTA --- */

.bay-closing {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.bay-closing-headline {
  font-size: clamp(2.5rem, 7vw, var(--text-5xl));
  font-weight: var(--font-weight-black);
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--space-4);
}

.bay-closing-sub {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-book);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto var(--space-8);
}

.bay-closing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}

.bay-closing-actions .btn {
  display: inline-flex;
  align-items: center;
}


/* ============================================
   Responsive
   ============================================ */

@media (max-width: 900px) {
  .bay-intro-layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 600px) {
  .bay-verse-text {
    font-size: var(--text-xl);
  }
}
