/* assets/css/public.css — landing page & other public-facing pages */

.text-brand { color: var(--brand-primary, #4f46e5); }
.btn-brand {
    background-color: var(--brand-primary, #4f46e5);
    border-color: var(--brand-primary, #4f46e5);
    color: #fff;
}
.btn-brand:hover { background-color: #4338ca; border-color: #4338ca; color: #fff; }
.btn-outline-brand {
    color: var(--brand-primary, #4f46e5);
    border-color: var(--brand-primary, #4f46e5);
}
.btn-outline-brand:hover {
    background-color: var(--brand-primary, #4f46e5);
    color: #fff;
}

.public-navbar .nav-link { font-weight: 500; }

/* ---- Hero ---- */
.hero-section {
    background: linear-gradient(135deg, #eef2ff 0%, #f6f7fb 60%);
    padding: 5rem 0 4rem;
}
.hero-section h1 { font-weight: 800; font-size: 2.6rem; }
.hero-section p.lead { color: #4b5563; }

/* ---- Section spacing ---- */
.public-section { padding: 4rem 0; }
.public-section h2 { font-weight: 700; margin-bottom: 0.5rem; }
.section-subtitle { color: #6b7280; margin-bottom: 2.5rem; }

/* ---- Feature / step cards ---- */
.feature-card, .step-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 14px rgba(17, 24, 39, 0.05);
    height: 100%;
}
.feature-icon, .step-icon {
    width: 52px;
    height: 52px;
    border-radius: 0.85rem;
    background: rgba(79, 70, 229, 0.1);
    color: var(--brand-primary, #4f46e5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--brand-primary, #4f46e5);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    margin-right: 0.5rem;
}

/* ---- Event cards ---- */
.event-card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(17, 24, 39, 0.06);
    height: 100%;
    transition: transform 0.15s ease;
}
.event-card:hover { transform: translateY(-3px); }
.event-card-logo {
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    object-fit: cover;
    background: #f3f4f6;
}

/* ---- Pricing ---- */
.pricing-card {
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    height: 100%;
}
.pricing-card.featured {
    border-color: var(--brand-primary, #4f46e5);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.12);
}
.pricing-price { font-size: 2.2rem; font-weight: 800; }

/* ---- FAQ ---- */
.accordion-button:not(.collapsed) {
    color: var(--brand-primary, #4f46e5);
    background-color: rgba(79, 70, 229, 0.06);
}

/* ---- Footer ---- */
.public-footer {
    background: #111827;
}
.public-footer a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}
.public-footer a:hover { color: #fff; }
