﻿:root {
    /* Text */
    --cp-text: #2a2a1f; /* warm dark neutral */
    --cp-muted: #7b7466; /* warm muted text */
    /* Accent (keep Care Park green) */
    --cp-teal: #2bb7a8;
    --cp-teal-dark: #1fa193;
    /* Warm background (yellow → soft orange) */
    --cp-warm: #f19817;
    --cp-warm-2: #edc07a;
    /* soft golden beige / light orange */

    --cp-white: #ffffff;
    /* Shadow tuned for warm background */
    --cp-shadow: 0 18px 44px rgba(0,0,0,.22);
}


/* PAGE BACKGROUND */
body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    color: var(--cp-text);
    background: radial-gradient(900px 500px at 20% 10%, rgba(255,215,130,.35), transparent 55%), radial-gradient(800px 420px at 85% 15%, rgba(43,183,168,.18), transparent 60%), linear-gradient(180deg, var(--cp-warm), var(--cp-warm-2));
    min-height: 100vh;
}

/* BRAND BAR */
.brandbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 26px;
    background: rgba(255,255,255,.65);
    border-bottom: 1px solid rgba(0,0,0,.06);
    backdrop-filter: blur(6px);
}

.brand-left {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 85%;
}

.brand-logo {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

    .brand-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.brand-title {
    font-weight: 800;
    font-size: 14px;
    line-height: 1.25;
    letter-spacing: .2px;
}

.brand-sub {
    font-size: 12px;
    color: var(--cp-muted);
    margin-top: 2px;
}

/* LANDING */
.tenant-landing {
    max-width: 1000px;
    margin: 0 auto;
    padding: 56px 20px 32px;
    text-align: center;
}

.hero h1 {
    margin: 0;
    font-size: 34px;
    font-weight: 800;
}

.hero p {
    margin-top: 10px;
    font-size: 14px;
    color: var(--cp-muted);
}

/* MENU GRID */
.tenant-landing ul {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.tenant-landing li {
    margin: 0;
}

/* TENANT CARD (button-style) */
.tenant-landing a {
    background: linear-gradient( 135deg, #ffffff 0%, #fff7e6 100% );
    color: var(--cp-text);
    text-decoration: none;
    border-radius: 18px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 800;
    letter-spacing: .2px;
    box-shadow: 0 12px 28px rgba(0,0,0,.16);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
    position: relative;
    overflow: hidden;
}

    /* soft warm glow */
    .tenant-landing a::before {
        content: "";
        position: absolute;
        inset: -1px;
        background: radial-gradient( 400px 120px at 0% 0%, rgba(255,180,80,.35), transparent 60% );
        opacity: .9;
        pointer-events: none;
    }

    /* bottom accent strip */
    .tenant-landing a::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 3px;
        background: linear-gradient( 90deg, #f0b44c, #ffd58a, rgba(255,213,138,.4) );
    }

    /* HOVER */
    .tenant-landing a:hover {
        transform: translateY(-3px);
        box-shadow: 0 22px 48px rgba(0,0,0,.22);
        background: linear-gradient( 135deg, #ffffff 0%, #fff1cf 100% );
    }

    /* ACTIVE / CLICK */
    .tenant-landing a:active {
        transform: translateY(-1px);
        box-shadow: 0 14px 30px rgba(0,0,0,.18);
    }

    /* KEYBOARD FOCUS */
    .tenant-landing a:focus {
        outline: 3px solid rgba(240,180,76,.55);
        outline-offset: 4px;
    }


/* FOOTER */
footer {
    max-width: 1000px;
    margin: 30px auto 18px;
    padding: 0 20px 18px;
    color: var(--cp-muted);
    font-size: 12px;
    text-align: center;
}
