/* ===================================
   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: #000; /* black */
  color: #F2E8DE; /* warm light text */
  border: 2px solid #A28970; /* leather brown (gold-tinted border) */
  border-radius: 25px;

  /* outer gold glow */
  box-shadow:
  0 0 10px #A28970,                      /* core gold glow */
  0 0 22px rgba(199,178,156,0.65),       /* surface gold */
  0 0 35px rgba(230,204,170,0.55),       /* bright gold halo */
  inset 0 0 12px rgba(199,178,156,0.25); /* inner soft gold */

  width: 280px;
  min-height: 420px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.3s ease;

  /* subtle inner sheen for luxury effect */
  position: relative;
}

.aina-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    circle at top center,
    rgba(199, 178, 156, 0.15), /* soft skin beige = soft gold */
    transparent 60%
  );
}

.aina-card:hover {
  transform: translateY(-8px);

  /* stronger, brighter gold glow */
  box-shadow: 
    0 0 40px rgba(230, 204, 170, 0.65), /* bright gold */
    0 0 18px rgba(162, 137, 112, 0.55);  /* deeper gold core */
}


/* === Title === */
.aina-card h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #C7B29C; /* soft skin beige */
}


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

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

/* === Button === */
.aina-card .get-started-btn {
  display: inline-block;
  background: linear-gradient(90deg, #C7B29C, #A28970); /* beige → leather highlight */
  color: #2A2B2F; /* dark text for contrast on light gradient */
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(91, 98, 106, 0.45); /* steel gray glow */
}

.aina-card .get-started-btn:hover {
  background: linear-gradient(90deg, #E0C7B0, #A28970); /* brighter shiny beige tone */
  box-shadow: 0 0 25px rgba(199, 178, 156, 0.55); /* warm beige glow */
  transform: translateY(-2px);
}


/* === Responsive Fixes === */
@media (min-width: 1200px) {
  .aina-card {
    flex: 1 1 calc(25% - 30px); /* 4 per row */
    max-width: calc(25% - 30px);
  }
}

@media (max-width: 1199px) and (min-width: 768px) {
  .aina-card {
    flex: 1 1 calc(33.333% - 30px); /* 3 per row */
    max-width: calc(33.333% - 30px);
  }
}

@media (max-width: 767px) {
  .aina-membership-grid {
    flex-direction: column;
    align-items: center;
  }

  .aina-card {
    width: 90%;
  }
}
