/*
Theme Name: Love Culture Assembly
Theme URI: https://loveculture.example.com/
Author: Love Culture Assembly
Author URI: https://loveculture.example.com/
Description: A modern block theme for Love Culture Assembly. Spreading the fire of his love. Includes sermons, events, projects, service times, giving, and livestream blocks out of the box.
Requires at least: 6.4
Tested up to: 6.5
Requires PHP: 7.4
Version: 0.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: love-culture-assembly
Tags: block-theme, full-site-editing, church, non-profit, blog, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, wide-blocks, block-patterns, rtl-language-support
*/

:root {
    --lca-radius-sm: 6px;
    --lca-radius-md: 12px;
    --lca-radius-lg: 20px;
    --lca-shadow-sm: 0 1px 2px rgba(17, 17, 17, 0.06), 0 1px 3px rgba(17, 17, 17, 0.08);
    --lca-shadow-md: 0 4px 12px rgba(17, 17, 17, 0.08), 0 2px 4px rgba(17, 17, 17, 0.06);
    --lca-shadow-lg: 0 20px 40px rgba(17, 17, 17, 0.12), 0 8px 16px rgba(17, 17, 17, 0.08);
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.wp-block-button__link {
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.wp-block-button__link:hover {
    transform: translateY(-1px);
    box-shadow: var(--lca-shadow-md);
}

.lca-card {
    border-radius: var(--lca-radius-md);
    overflow: hidden;
    background: var(--wp--preset--color--white);
    box-shadow: var(--lca-shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lca-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--lca-shadow-lg);
}

.lca-eyebrow {
    font-family: var(--wp--preset--font-family--inter);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--wp--preset--color--brand-red);
}

.lca-gradient-text {
    background: var(--wp--preset--gradient--brand-fire);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lca-sermon-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.lca-sermon-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lca-sermon-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0) 40%, rgba(17, 17, 17, 0.7) 100%);
    pointer-events: none;
}

.lca-play-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--wp--preset--gradient--brand-fire);
    color: #fff;
    font-family: var(--wp--preset--font-family--inter);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.lca-nav-cta .wp-block-button__link {
    padding-block: 0.55rem;
    padding-inline: 1.1rem;
    font-size: 0.9rem;
}

.lca-hero-gradient {
    position: relative;
    isolation: isolate;
}
.lca-hero-gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(255, 107, 53, 0.25), transparent 60%),
                radial-gradient(ellipse at 80% 80%, rgba(196, 30, 58, 0.35), transparent 55%);
    z-index: -1;
    pointer-events: none;
}

.lca-bank-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.9rem;
    border-bottom: 1px solid var(--wp--preset--color--gray-light);
    font-family: var(--wp--preset--font-family--inter);
}
.lca-bank-row:last-child { border-bottom: 0; }
.lca-bank-row strong {
    color: var(--wp--preset--color--gray);
    font-weight: 500;
}
.lca-bank-row span {
    font-weight: 600;
    color: var(--wp--preset--color--brand-black);
    font-variant-numeric: tabular-nums;
}
