/* ============================================================
   MIGHTY SHINE — Membership Page Styles
   Supplements css/style.css
   ============================================================ */


/* ============================================================
   MEM HERO
   ============================================================ */
.mem-hero {
  min-height: 80vh;
  align-items: center;
}

.mem-hero .hero__content {
  max-width: 760px;
  padding-left: 4%;
}

.mem-hero .hero__headline {
  margin-top: 3.5rem;
}


/* ============================================================
   PLANS SECTION
   ============================================================ */
.mem-plans {
  padding: var(--section-pad);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.mem-plans::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/wash-menu-bg.png') center center / cover no-repeat;
  z-index: 0;
}

.mem-plans::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(41, 171, 226, 0.70);
  z-index: 1;
}

.mem-plans > * {
  position: relative;
  z-index: 2;
}

.mem-plans .section-title { margin-bottom: 1rem; }

.mem-plans .section-subhead {
  color: var(--white);
  margin-bottom: 2.5rem;
}

.mem-plans .section-title .text--navy { color: var(--white); }


/* ============================================================
   BENEFITS SECTION
   ============================================================ */
.mem-benefits {
  padding: var(--section-pad);
  background: var(--white);
}

.mem-benefits .section-title { margin-bottom: 1rem; }
.mem-benefits .section-subhead { margin-bottom: 3rem; }

.mem-benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Benefit list */
.mem-benefits__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mem-benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.mem-benefit-item__check {
  color: var(--gold);
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.mem-benefit-item h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.4;
}

.mem-benefit-item p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.65;
}

/* Right-side image */
.mem-benefits__photo {
  width: 100%;
  height: auto;
  display: block;
  border: 4px solid var(--navy);
  box-shadow: 8px 8px 0 var(--navy);
}


/* Final CTA sign up button — transparent, white border */
.mem-cta__signup {
  color: var(--white);
  border-color: var(--white);
}
.mem-cta__signup:hover {
  background: var(--white);
  color: var(--navy);
}


/* ============================================================
   RESPONSIVE — 1100px
   ============================================================ */
@media (max-width: 1100px) {
  .mem-benefits__grid {
    gap: 40px;
  }
}


/* ============================================================
   RESPONSIVE — 900px
   ============================================================ */
@media (max-width: 900px) {
  .mem-benefits__grid {
    grid-template-columns: 1fr;
  }

  .mem-benefits__img {
    max-width: 480px;
    margin: 0 auto;
  }
}


/* ============================================================
   RESPONSIVE — 600px
   ============================================================ */
@media (max-width: 600px) {
  .mem-hero {
    min-height: 70vh;
  }

  .mem-hero .hero__content {
    padding-left: 0;
  }

  .mem-hero .hero__subhead br {
    display: none;
  }

  .mem-benefit-item {
    gap: 14px;
  }
}
