/* ============================================================
   member-zone.css — styles ONLY for member-zone.php
   Loaded in addition to style.css. Zero overlap with style.css.
   ============================================================ */

/* ── PAGE BANNER ─────────────────────────────────────────── */
.mz-banner {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #1a2a3a;
}
.mz-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
  filter: brightness(0.62);
}

/* ── SECTION 1: TYPES OF MEMBERSHIPS ─────────────────────── */
.mz-types {
  background: #fff;
  padding: 40px 0 50px;
}

/* "About Us" pill tag */
.mz-tag {
  display: inline-block;
  background: #1A427E;
  color: #fff;
  padding: 7px 20px;
  border-radius: 25px;
  font-size: 15px; /* Increased from 13px */
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.mz-types-heading {
  font-size: 28px; /* Increased from 26px */
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
}

/* Two-column layout: sidebar tabs + description */
.mz-types-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

/* Left sidebar: stacked tab buttons */
.mz-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mz-sidebar-btn {
  width: 100%;
  padding: 16px 22px;
  border-radius: 10px;
  border: none;
  font-size: 17px; /* Increased from 15px */
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, color 0.2s;
  background: #e8edf5;
  color: #1a1a1a;
}
.mz-sidebar-btn.active {
  background: #1A427E;
  color: #fff;
}
.mz-sidebar-btn:hover:not(.active) {
  background: #d0d8ea;
}

/* Right: description text */
.mz-types-desc {
  font-size: 17px; /* Increased from 15px */
  color: #222;
  line-height: 1.8;
  padding-top: 4px;
}

/* ── SECTION 2: MEMBERSHIP CATEGORIES ────────────────────── */
.mz-categories {
  background: #edf2f8;
  padding: 46px 0 60px;
}

.mz-cat-heading {
  font-size: 26px; /* Increased from 24px */
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 22px;
  font-family: 'Inter', sans-serif;
}

/* ── PILL TOGGLE (3 buttons) ─────────────────────────────── */
.mz-toggle {
  display: flex;
  align-items: center;
  background: #1A427E;
  border-radius: 50px;
  overflow: hidden;
  width: 100%;
  border: 3px solid #1A427E;
  margin-bottom: 30px;
}

.mz-toggle-btn {
  flex: 1;
  padding: 14px 0;
  text-align: center;
  font-size: 17px; /* Increased from 15px */
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  outline: none;
}
.mz-toggle-btn.active {
  background: #fff;
  color: #1a1a1a;
}
.mz-toggle-btn:not(.active) {
  background: #1A427E;
  color: #fff;
}

/* ── 3-COLUMN CARDS GRID ─────────────────────────────────── */
.mz-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Individual membership card */
.mz-card {
  background: #e4eaf2;
  border-radius: 10px;
  padding: 24px 20px 26px;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}

.mz-card .mz-price {
  text-align: center;
  margin-top: 20px;
}

/* Pricing pill like Learn More button */
/* Pricing pill like Learn More button */
.mz-price-pill{
  background:#1a73c8;
  color:#fff;
  padding:10px 30px;
  border-radius:25px;
  font-size:15px;
  font-weight:600;
  text-align:center;
  display:inline-block;
  margin:20px auto 0;
  transition:background 0.2s ease, transform 0.2s ease;
  cursor:pointer;
}

/* Hover highlight */
.mz-price-pill:hover{
  background:#1558a0;
  transform:translateY(-2px);
}

/* Active/highlighted card (middle one by default) */
.mz-card.highlighted {
  background: #1A427E;
  color: #fff;
}

.mz-card h3 {
  font-size: 24px; /* Increased from 22px */
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  line-height: 1.25;
}
.mz-card.highlighted h3 { color: #fff; }

/* "Benefits" label */
.mz-card .mz-benefits-label {
  font-size: 16px; /* Increased from 14px */
  font-weight: 700;
  color: #1A427E;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}
.mz-card.highlighted .mz-benefits-label { color: #a8c4e8; }

/* Description text inside highlighted card */
.mz-card .mz-card-intro {
  font-size: 15px; /* Increased from 13px */
  color: #fff;
  line-height: 1.65;
  margin-bottom: 16px;
  background: #1A427E;
  padding: 0;
}

/* Benefits list */
.mz-card .mz-benefit-item {
  font-size: 15px; /* Increased from 13px */
  color: #333;
  line-height: 1.65;
  margin-bottom: 12px;
}
.mz-card.highlighted .mz-benefit-item { color: #e0ecff; }

/* Price row */
.mz-card .mz-price {
  margin-top: auto;
  padding-top: 18px;
  font-family: 'Inter', sans-serif;
}
.mz-card .mz-price .mz-amount {
  font-size: 20px; /* Increased from 18px */
  font-weight: 800;
  color: #1A427E;
}
.mz-card.highlighted .mz-price .mz-amount { color: #a8d4ff; }
.mz-card .mz-price .mz-period {
  font-size: 15px; /* Increased from 13px */
  color: #666;
  margin-left: 4px;
}
.mz-card.highlighted .mz-price .mz-period { color: #c0d8f0; }

/* ── TAB SECTION SHOW/HIDE ───────────────────────────────── */
.mz-tab-section        { display: none; }
.mz-tab-section.active { display: block; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .mz-cards-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .mz-banner          { height: 160px; }
  .mz-types-layout    { grid-template-columns: 1fr; gap: 24px; }
  .mz-cards-grid      { grid-template-columns: 1fr; }
  .mz-toggle-btn      { font-size: 14.5px; padding: 12px 0; } /* Increased from 12.5px */
  .mz-types-heading   { font-size: 24px; } /* Increased from 22px */
  .mz-cat-heading     { font-size: 22px; } /* Increased from 20px */
}