/* Page chrome — content rail, hero overlays, empty states */

/* White page + subtle logo green/pink blurred circles */
.hamilku-brand-atmosphere,
.abstract {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hamilku-brand-atmosphere::before,
.hamilku-brand-atmosphere::after,
.abstract::before,
.abstract::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
    pointer-events: none;
}

.hamilku-brand-atmosphere::before,
.abstract::before {
    top: -6rem;
    right: -4rem;
    width: 18rem;
    height: 18rem;
    background: color-mix(in srgb, var(--brand-primary, #16AB51) 28%, transparent);
    opacity: 0.9;
}

.hamilku-brand-atmosphere::after,
.abstract::after {
    top: 2rem;
    left: -5rem;
    width: 16rem;
    height: 16rem;
    background: color-mix(in srgb, var(--brand-accent, #E45799) 22%, transparent);
    opacity: 0.85;
}

.hamilku-brand-atmosphere--hero {
    position: absolute;
    inset: 0;
    min-height: 100%;
}

@media (prefers-reduced-motion: reduce) {
    .hamilku-brand-atmosphere::before,
    .hamilku-brand-atmosphere::after,
    .abstract::before,
    .abstract::after {
        filter: blur(48px);
        opacity: 0.55;
    }
}

.hamilku-hero-overlay {
    position: relative;
}

.hamilku-hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 60%,
        transparent 100%
    );
    z-index: 0;
    pointer-events: none;
}

/* Compact sidebar heroes — keep faces visible; text still readable */
.hamilku-hero-overlay--compact::before {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.62) 0%,
        rgba(0, 0, 0, 0.22) 42%,
        rgba(0, 0, 0, 0.06) 72%,
        transparent 100%
    );
}

.hamilku-hero-overlay > * {
    position: relative;
    z-index: 1;
}

.hamilku-empty-state,
.dataNotFound {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 12rem;
    padding: var(--space-6, 24px) var(--space-4, 16px);
    background-color: var(--color-surface-variant, #f5f5f5);
    border: 2px dashed var(--color-outline, #cfcfcf);
    border-radius: var(--shape-md, 12px);
    box-sizing: border-box;
}

.hamilku-empty-state img,
.dataNotFound img {
    width: 45px;
    height: auto;
    margin-bottom: var(--space-3, 12px);
}

.hamilku-empty-state span,
.dataNotFound span {
    color: var(--color-on-surface-variant, #656565);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.45;
    text-align: center;
}
