/* Flash Tarot brand palette, pulled from the logo (purple + gold) instead
   of the old bright lavender/green SaaS scheme. Scoped to the landing
   page for now -- the nav and other pages are unchanged. */
:root {
    --tarot-purple-600: #6b3fa0;
    --tarot-purple-700: #4a2d6b;
    --tarot-gold-500: #d4af37;
    --tarot-gold-300: #e8cd7a;
    --tarot-cream-50: #fffdf8;
    --tarot-lavender-50: #f5f2fa;
    --tarot-ink: #3a2f4d;
    --tarot-ink-light: #6b5e78;
}

.home-content {
    margin-top: 32px;
}

/* Reusable centered "eyebrow" label with flanking rule lines -- used as
   the title for every section on the page, hero included. */
.eyebrow-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

    .eyebrow-row .eyebrow-line {
        flex: 0 0 40px;
        height: 1px;
        background: rgba(107, 63, 160, 0.3);
    }

    .eyebrow-row .eyebrow-text {
        flex: 0 0 auto;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--tarot-purple-600);
        white-space: nowrap;
    }

.section-block {
    margin-bottom: 8px;
    padding: 40px 0;
}

/* Alternating light band behind every other section, for visual rhythm
   without needing to break out of the page's fixed-width container. */
.section-band {
    padding: 40px 28px;
    border-radius: 20px;
    background: var(--tarot-lavender-50);
}

.section-view-all {
    text-align: center;
    margin-top: 20px;
}

    .section-view-all a {
        color: var(--tarot-purple-600);
        font-weight: 600;
        text-decoration: none;
    }

        .section-view-all a:hover {
            color: var(--tarot-purple-700);
            text-decoration: underline;
        }

/* Hero */
.hero-banner {
    padding: 56px 32px 44px;
    border-radius: 24px;
    text-align: center;
    background: radial-gradient(ellipse at 25% 15%, rgba(107, 63, 160, 0.08), transparent 60%), radial-gradient(ellipse at 80% 85%, rgba(212, 175, 55, 0.08), transparent 55%), #fbf9fd;
    border: 1px solid rgba(107, 63, 160, 0.12);
}

.hero-logo-frame {
    width: 228px;
    height: 228px;
    margin: 0 auto 24px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--tarot-gold-500);
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(107, 63, 160, 0.12);
}

    .hero-logo-frame img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.hero-banner h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.1rem;
    color: var(--tarot-purple-700);
    margin-bottom: 12px;
}

.hero-banner p {
    max-width: 560px;
    margin: 0 auto 26px;
    color: var(--tarot-ink-light);
    line-height: 1.6;
    font-size: 1.05rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-hero-primary {
    background: var(--tarot-purple-600);
    color: #fff;
}

    .btn-hero-primary:hover {
        background: var(--tarot-purple-700);
        color: #fff;
        text-decoration: none;
    }

.btn-hero-secondary {
    background: #fff;
    color: var(--tarot-purple-600);
    border: 1px solid rgba(107, 63, 160, 0.3);
}

    .btn-hero-secondary:hover {
        background: var(--tarot-lavender-50);
        color: var(--tarot-purple-700);
        text-decoration: none;
    }

.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(107, 63, 160, 0.15);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--tarot-purple-600);
}

.hero-stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--tarot-ink-light);
}

@media (max-width: 576px) {
    .hero-banner {
        padding: 40px 20px;
    }

    .hero-logo-frame {
        width: 196px;
        height: 196px;
    }

    .hero-banner h1 {
        font-size: 1.6rem;
    }

    .hero-stats {
        gap: 24px;
    }
}

/* Quick-links row */
.quick-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.quick-link-card {
    flex: 1 1 21%;
    min-width: 200px;
    text-align: center;
    padding: 26px 18px;
    background: var(--tarot-cream-50);
    border: 1px solid rgba(107, 63, 160, 0.15);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

    .quick-link-card:hover {
        box-shadow: 0 8px 20px rgba(107, 63, 160, 0.15);
        transform: translateY(-2px);
        color: inherit;
        text-decoration: none;
    }

    .quick-link-card h5 {
        margin: 14px 0 6px;
        font-size: 0.98rem;
        color: var(--tarot-ink);
        font-weight: 600;
    }

    .quick-link-card p {
        margin-bottom: 0;
        font-size: 0.82rem;
        color: var(--tarot-ink-light);
    }

.quick-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(107, 63, 160, 0.1);
    color: var(--tarot-purple-600);
}

    .quick-link-icon svg {
        width: 22px;
        height: 22px;
    }

/* Shared card component for News / Articles / Videos */
.content-card-grid-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

    .content-card-grid-3 .content-card {
        flex: 1 1 30%;
        min-width: 220px;
    }

.content-card {
    display: flex;
    flex-direction: column;
    background: var(--tarot-cream-50);
    border: 1px solid rgba(107, 63, 160, 0.15);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

    .content-card:hover {
        box-shadow: 0 8px 20px rgba(107, 63, 160, 0.18);
        transform: translateY(-2px);
        color: inherit;
        text-decoration: none;
    }

    .content-card img {
        width: 100%;
        height: 130px;
        object-fit: cover;
    }

.content-card-body {
    padding: 14px 16px;
}

    .content-card-body h5 {
        margin-bottom: 4px;
        font-size: 0.95rem;
        color: var(--tarot-ink);
    }

    .content-card-body p {
        margin-bottom: 0;
        font-size: 0.82rem;
        color: var(--tarot-ink-light);
    }

/* News cards have no image -- a top accent bar carries the card-family
   look instead of a photo. */
.content-card-text {
    border-top: 3px solid var(--tarot-gold-500);
    border-radius: 0 0 12px 12px;
}

.news-date {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--tarot-purple-600);
    margin-bottom: 6px;
}

.video-thumb-wrap {
    position: relative;
}

.video-play-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(107, 63, 160, 0.85);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    padding-left: 3px;
}

/* Membership teaser */
.plans-heading {
    text-align: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    color: var(--tarot-purple-700);
    margin-bottom: 8px;
}

.plans-subheading {
    text-align: center;
    color: var(--tarot-ink-light);
    margin-bottom: 28px;
}

.plans-teaser-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.plan-teaser-card {
    position: relative;
    flex: 1 1 28%;
    min-width: 220px;
    padding: 26px 22px;
    background: var(--tarot-cream-50);
    border: 1px solid rgba(107, 63, 160, 0.15);
    border-radius: 14px;
}

    .plan-teaser-card h5 {
        font-weight: 600;
        color: var(--tarot-ink);
        margin-bottom: 8px;
    }

    .plan-teaser-card p {
        color: var(--tarot-ink-light);
        font-size: 0.85rem;
        margin-bottom: 0;
    }

.plan-teaser-price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--tarot-purple-600);
    margin-bottom: 10px;
}

    .plan-teaser-price span {
        font-family: 'Figtree', sans-serif;
        font-size: 0.8rem;
        font-weight: 400;
        color: var(--tarot-ink-light);
    }

.plan-teaser-featured {
    background: var(--tarot-purple-600);
    border-color: var(--tarot-purple-600);
}

    .plan-teaser-featured h5,
    .plan-teaser-featured p {
        color: #f0e9f7;
    }

    .plan-teaser-featured .plan-teaser-price {
        color: #fff;
    }

        .plan-teaser-featured .plan-teaser-price span {
            color: #d8c6e8;
        }

.plan-teaser-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--tarot-gold-500);
    color: var(--tarot-purple-700);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 12px;
}
