@charset "utf-8";
/* CSS Document */

/* ================================
   FAMILY FIRST LANDING PAGE
================================ */

:root {
  --ff-aqua: #7AC8C8;
  --ff-teal: #2C8484;
  --ff-deep-teal: #2C6E6E;
  --ff-green: #6E9A6E;
  --ff-coral: #F2846E;
  --ff-terracotta: #C68458;
  --ff-gold: #F2C658;
  --ff-sand: #DCC6B0;
  --ff-cream: #F2F2E8;
  --ff-charcoal: #373737;
  --ff-white: #FFFFFF;
}


.ff-page {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ff-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}


.ff-page * {
  box-sizing: border-box;
}


.ff-container {
  width: min(1180px, 92%);
  margin: 0 auto;
}


/* HERO */

.ff-hero {
  background:
    linear-gradient(
      135deg,
      var(--ff-cream),
      #ffffff
    );

  padding: 55px 0;
}


.ff-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}


.ff-logo {
  width: 400px;
  max-width: 70%;
  margin-bottom: 22px;
}


.ff-eyebrow {
  color: var(--ff-terracotta);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: 8px;
}


.ff-hero h1 {
  color: var(--ff-deep-teal);
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.05;
  margin: 5px 0 20px;
}


.ff-intro {
  font-size: 1.08rem;
  max-width: 590px;
}


/* VIDEO */

.ff-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,.13);
}


.ff-video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}


/* BUTTONS */

.ff-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}


.ff-btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: .2s ease;
}


.ff-btn:hover {
  transform: translateY(-2px);
}


.ff-btn-primary {
  background: var(--ff-coral);
  color: white;
}


.ff-btn-secondary {
  border: 2px solid var(--ff-deep-teal);
  color: var(--ff-deep-teal);
}


.ff-btn-light {
  background: white;
  color: var(--ff-deep-teal);
}


.ff-btn-outline-light {
  border: 2px solid white;
  color: white;
}


/* GENERAL SECTIONS */

.ff-section {
  padding: 65px 0;
}


.ff-light {
  background: var(--ff-cream);
}


.ff-section-heading {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 40px;
}


.ff-section h2,
.ff-final h2 {
  color: var(--ff-deep-teal);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 5px 0 15px;
}


/* CARDS */

.ff-card-grid {
  display: grid;
  gap: 22px;
}


.ff-three {
  grid-template-columns: repeat(3, 1fr);
}


.ff-six {
  grid-template-columns: repeat(3, 1fr);
}


.ff-card,
.ff-mini-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 5px 20px rgba(0,0,0,.07);
}


.ff-card {
  color: var(--ff-charcoal);
  text-decoration: none;
  transition: .2s ease;
}


.ff-card:hover {
  transform: translateY(-4px);
}


.ff-card h3,
.ff-mini-card h3 {
  color: var(--ff-deep-teal);
  margin-top: 5px;
}


.ff-card-icon {
  font-size: 1.8rem;
  color: var(--ff-coral);
}


/* SERIES */

.ff-series {
  background: rgba(122, 200, 200, .18);
}


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


.ff-checklist {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,.07);
}


.ff-checklist div {
  padding: 9px 0;
  border-bottom: 1px solid #eeeeee;
}


.ff-checklist div:last-child {
  border-bottom: none;
}


/* QUOTE */

.ff-quote {
  background: var(--ff-cream);
  border-left: 7px solid var(--ff-gold);
  border-radius: 12px;
  padding: 35px;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ff-deep-teal);
}


/* FINAL CALL TO ACTION */

.ff-final {
  background: var(--ff-deep-teal);
  color: white;
  text-align: center;
  padding: 65px 0;
}


.ff-final h2 {
  color: white;
}


.ff-final p {
  max-width: 700px;
  margin: 0 auto;
}


.ff-center {
  justify-content: center;
}


/* TABLET */

@media (max-width: 900px) {

  .ff-hero-grid,
  .ff-two-column {
    grid-template-columns: 1fr;
  }

  .ff-three,
  .ff-six {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* MOBILE */

@media (max-width: 600px) {

  .ff-container {
    width: 92%;
  }

  .ff-hero {
    padding: 35px 0;
  }

  .ff-section {
    padding: 45px 0;
  }

  .ff-three,
  .ff-six {
    grid-template-columns: 1fr;
  }

  .ff-buttons {
    flex-direction: column;
  }

  .ff-btn {
    width: 100%;
    text-align: center;
  }

  .ff-logo {
    width: 190px;
  }

}