﻿/* Lightweight theme to mirror Wix-like feel, keep existing admin styles intact. */
:root {
    --brand: #0b1320;
    --accent: #0a7cff;
    --accent-2: #10b981;
    --bg: #f8fafc;
    --text: #0b1320;
    --muted: #6b7280;
    --card: #ffffff;
    --br: #e5e7eb;
}

html, body {
    background: var(--bg);
    color: var(--text);
}

a {
    color: var(--accent);
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
.sitehead {
    background: #fff;
    border-bottom: 1px solid var(--br);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: inherit;
}

.brand-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.brand-name {
    display: inline-block;
}

.menu {
    display: flex;
    gap: 14px;
    align-items: center;
}

.btn, .btn-alt {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--br);
    font-weight: 600;
}

.btn {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

    .btn:hover {
        opacity: .92;
    }

.btn-alt {
    background: #fff;
    color: var(--brand);
}

.small {
    padding: 8px 12px;
    font-size: 14px;
}

.full {
    width: 100%;
}

/* Sections */
.section {
    padding: 48px 0;
}

    .section.alt {
        background: #fff;
    }

.card {
    border: 1px solid var(--br);
    background: var(--card);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
}

.hero {
    background: radial-gradient(900px 400px at 10% -10%, rgba(59,130,246,.08), transparent), radial-gradient(900px 400px at 100% 0%, rgba(16,185,129,.08), transparent);
    padding: 38px 0 18px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 28px;
    align-items: center;
}

.lead {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
    margin: 10px 0 14px;
}

.btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

    .btns.left {
        justify-content: flex-start;
    }

.pill-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

    .pill-list li {
        list-style: none;
        background: #fff;
        border: 1px solid var(--br);
        color: var(--muted);
        padding: 6px 10px;
        border-radius: 999px;
        font-size: 13px;
    }

.hero-media img {
    width: 100%;
    border-radius: 14px;
    border: 1px solid var(--br);
    object-fit: cover;
}

.two-col {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 24px;
}

.media-card img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid var(--br);
}

/* Form */
.form .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 820px) {
    .hero-grid, .two-col, .form .grid {
        grid-template-columns: 1fr;
    }
}

.form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 6px 0;
}

.form input, .form select, .form button {
    padding: 12px;
    border: 1px solid var(--br);
    border-radius: 8px;
    font-size: 14px;
}

.status {
    min-height: 1.2em;
    margin-top: 8px;
}

.hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Footer */
.footer {
    background: #fff;
    border-top: 1px solid var(--br);
    margin-top: 24px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    flex-wrap: wrap;
}

.foot-nav {
    display: flex;
    gap: 12px;
}

.brand-mark {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.center {
    text-align: center;
}

/* File: wwwroot/css/home.css  (append near the end) */
.btn--accent,
.menu .btn { /* scope to nav buttons */
    background: #000;
    border-color: var(--accent);
    color: #fff;
}

    .btn--accent:hover,
    .menu .btn:hover {
        filter: brightness(.95);
    }

    .btn--accent:visited,
    .menu .btn:visited {
        color: #fff;
    }

