/**
 * Kobi CMS — Ana Sayfa Hero modülü (tüm demolar)
 */

.kobi-img-placeholder {
    position: relative;
    border-radius: var(--kobi-radius-lg, 1.35rem);
    overflow: hidden;
    background:
        linear-gradient(145deg,
            color-mix(in srgb, var(--bs-primary) 18%, #e0f2fe) 0%,
            color-mix(in srgb, var(--bs-primary) 8%, #f0f9ff) 45%,
            #f8fafc 100%);
    border: 1px dashed color-mix(in srgb, var(--bs-primary) 35%, #cbd5e1);
    box-shadow: var(--kobi-shadow-sm, 0 4px 16px rgba(15, 23, 42, 0.06));
    min-height: 220px;
}

.kobi-img-placeholder--hero {
    min-height: clamp(260px, 42vw, 420px);
    aspect-ratio: 4 / 3;
}

.kobi-img-placeholder__inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 1.5rem;
    text-align: center;
}

.kobi-img-placeholder__inner > i {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: color-mix(in srgb, var(--bs-primary) 75%, #0f172a);
    opacity: 0.85;
    line-height: 1;
}

.kobi-img-placeholder__label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--kobi-ink, #0f172a);
    letter-spacing: -0.02em;
}

.kobi-img-placeholder__hint {
    font-size: 0.78rem;
    color: var(--kobi-ink-muted, #64748b);
    max-width: 16rem;
    line-height: 1.45;
}

.kobi-hero {
    padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
    background:
        radial-gradient(ellipse 90% 70% at 10% 0%, color-mix(in srgb, var(--bs-primary) 10%, transparent), transparent 55%),
        radial-gradient(ellipse 60% 50% at 95% 20%, color-mix(in srgb, var(--bs-primary) 8%, transparent), transparent 50%),
        var(--kobi-surface, #fff);
    border-bottom: 1px solid var(--kobi-border, #e2e8f0);
}

.kobi-hero__eyebrow {
    display: inline-block;
    margin-bottom: 0.85rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bs-primary);
    background: color-mix(in srgb, var(--bs-primary) 10%, #fff);
    border: 1px solid color-mix(in srgb, var(--bs-primary) 18%, transparent);
}

.kobi-hero__title {
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--kobi-ink, #0f172a);
}

.kobi-hero__lead {
    font-size: 1.08rem;
    line-height: 1.65;
    color: var(--kobi-ink-muted, #64748b);
    margin-bottom: 1.5rem;
    max-width: 34rem;
}

.kobi-hero__actions .btn {
    border-radius: 999px;
}

.kobi-hero__visual {
    box-shadow: var(--kobi-shadow-md, 0 8px 30px rgba(15, 23, 42, 0.08));
}

.kobi-hero-features {
    padding: clamp(1.75rem, 3vw, 2.5rem) 0;
    background: var(--kobi-surface-muted, #f8fafc);
    border-bottom: 1px solid var(--kobi-border-soft, #f1f5f9);
}

.kobi-hero-feature {
    background: var(--kobi-surface, #fff);
    border: 1px solid var(--kobi-border, #e2e8f0);
    border-radius: var(--kobi-radius, 1rem);
    padding: 1.25rem 1rem;
    text-align: center;
    box-shadow: var(--kobi-shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    height: 100%;
}

.kobi-hero-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--kobi-shadow-md);
    border-color: color-mix(in srgb, var(--bs-primary) 25%, var(--kobi-border));
}

.kobi-hero-feature__icon {
    width: 2.75rem;
    height: 2.75rem;
    margin: 0 auto 0.75rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--bs-primary) 12%, #fff);
    color: var(--bs-primary);
    font-size: 1.25rem;
}

.kobi-hero-feature__title {
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--kobi-ink, #0f172a);
}

.kobi-hero-feature__text {
    color: var(--kobi-ink-muted, #64748b);
    line-height: 1.5;
}

@media (max-width: 991.98px) {
    .kobi-hero__lead {
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .kobi-hero-feature {
        padding: 1rem 0.75rem;
    }

    .kobi-hero-feature__title {
        font-size: 0.85rem;
    }

    .kobi-hero-feature__text {
        font-size: 0.75rem;
    }
}
