/* Wild Apricot Integrator – Frontend Styles */

/* ── Notices ──────────────────────────────────────────────────────────── */
.wai-notice { padding: 12px 16px; border-radius: 6px; margin: 16px 0; font-size: 14px; }
.wai-notice--error { background: #fff3cd; border: 1px solid #ffc107; color: #856404; }
.wai-notice--info  { background: #e8f4f8; border: 1px solid #bee5eb; color: #0c5460; }

/* ── Buttons ──────────────────────────────────────────────────────────── */
.wai-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: opacity .2s, transform .15s;
}
.wai-btn:hover { opacity: .88; transform: translateY(-1px); text-decoration: none; }
.wai-btn--primary   { background: #6b3a9e; color: #fff !important; }
.wai-btn--secondary { background: #e8702a; color: #fff !important; }

/* ── Events Grid ──────────────────────────────────────────────────────── */
.wai-events--grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}
.wai-events--list { display: flex; flex-direction: column; gap: 16px; margin: 20px 0; }

.wai-event-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
}
.wai-event-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); transform: translateY(-2px); }
.wai-event-card__body { padding: 20px; }
.wai-event-card__title { margin: 0 0 8px; font-size: 17px; line-height: 1.4; }
.wai-event-card__title a { color: #1a202c; text-decoration: none; }
.wai-event-card__title a:hover { color: #6b3a9e; }
.wai-event-card__date, .wai-event-card__location { margin: 4px 0; font-size: 13px; color: #555; }
.wai-event-card__excerpt { font-size: 14px; color: #666; margin: 10px 0 16px; line-height: 1.6; }
.wai-event-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.wai-tag { background: #ede9fe; color: #5b21b6; padding: 2px 10px; border-radius: 20px; font-size: 12px; }

/* ── Single Event ─────────────────────────────────────────────────────── */
.wai-single-event { background: #fff; border: 1px solid #e2e8f0; border-radius: 10px; padding: 28px; }
.wai-single-event h2 { margin-top: 0; }
.wai-single-event__desc { margin: 16px 0 24px; line-height: 1.7; }

/* ── Members Grid ─────────────────────────────────────────────────────── */
.wai-members--grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin: 20px 0;
}
.wai-members--list { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }

.wai-member-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: box-shadow .2s;
}
.wai-member-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.wai-member-card__avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6b3a9e, #e8702a);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.wai-member-card__info { display: flex; flex-direction: column; gap: 2px; }
.wai-member-card__name  { font-size: 15px; color: #1a202c; }
.wai-member-card__org   { font-size: 13px; color: #666; }
.wai-member-card__since { font-size: 12px; color: #999; }

/* ── Membership Levels ────────────────────────────────────────────────── */
.wai-membership-levels {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin: 20px 0;
}
.wai-level-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow .2s;
}
.wai-level-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.wai-level-card__header {
    background: linear-gradient(135deg, #6b3a9e 0%, #e8702a 100%);
    padding: 20px;
    color: #fff;
}
.wai-level-card__header h3 { margin: 0 0 6px; color: #fff; }
.wai-level-card__price { font-size: 24px; font-weight: 700; }
.wai-level-card__desc { padding: 16px 20px; font-size: 14px; color: #555; line-height: 1.6; min-height: 60px; }
.wai-level-card .wai-btn { margin: 0 20px 20px; display: block; text-align: center; }

/* ── iFrame Wrapper ───────────────────────────────────────────────────── */
.wai-iframe-wrapper { position: relative; width: 100%; }
.wai-iframe-wrapper iframe { width: 100%; border: none; border-radius: 8px; }

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .wai-events--grid,
    .wai-members--grid,
    .wai-membership-levels { grid-template-columns: 1fr; }
}
