/* ===================================
   Aina Saga — Membership Section (Updated)
   =================================== */

.aina-membership-section {
  padding: 80px 0;
  display: flex;
  justify-content: center;
  background: transparent;
}

.aina-membership-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

/* === Card Style === */
.aina-card {
  background: #2B2E3A;          /* Ink-100 — deep dark slate */
  color: #EFE9E2;               /* Ivory Floral — readable on dark */  
  border: 2px solid #D6CEC4;    /* Muted Beige border, light contrast */
  border-radius: 25px;
  /* Glow adjusted for dark surface */
  box-shadow:
    0 0 22px rgba(217, 221, 245, 0.25),  /* soft star-glow */
    0 0 32px rgba(123, 129, 199, 0.30);  /* aurora tint */
  width: 300px;
  min-height: 420px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.aina-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 28px rgba(217, 221, 245, 0.35), 
    0 0 45px rgba(123, 129, 199, 0.45);
}


/* === Title === */
.aina-card h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* === Price === */
.aina-card .price {
  font-size: 18px;
  color: #EFE9E2;
  margin-bottom: 25px;
  font-weight: 600;
}

/* === Description === */
.aina-card .desc {
  text-align: left;
  font-size: 15px;
  color: #D6CEC4;
  line-height: 1.6;
  margin-bottom: 30px;
  min-height: 100px;
}

/* === Button === */
.aina-card .get-started-btn {
  display: inline-block;
  background: linear-gradient(90deg, #EFE9E2, #D6CEC4);
  color: #2B2E3A;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 6px 18px rgba(47, 60, 89, 0.18);
}

.aina-card .get-started-btn:hover {
  background: linear-gradient(90deg, #D6CEC4, #EFE9E2);
  box-shadow: 0 8px 24px rgba(47, 60, 89, 0.25);
}

/* ===================================
   Aina Saga — Membership Slider Extension
   (Matched with existing style)
   =================================== */

/* Enable slider on tablet & mobile */
@media (max-width: 1024px) {
  .aina-membership-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 10px 20px 30px;
    gap: 22px;
  }

  .aina-membership-grid::-webkit-scrollbar {
    display: none;
  }

  .aina-card {
    flex: 0 0 auto;
    scroll-snap-align: center;
    min-width: 78%;
    max-width: 78%;
  }
}

/* Mobile fine-tuning */
@media (max-width: 600px) {
  .aina-card {
    min-width: 88%;
    max-width: 88%;
    padding: 36px 22px;
  }

  .aina-card h2 {
    font-size: 26px;
    letter-spacing: 2px;
  }
}

