/* Static landing page styles — mirrors the Blazor/MudBlazor look & feel */

:root {
    --primary: #0288d1;
    --text-color: rgba(0, 0, 0, 0.87);
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    color: var(--text-color);
    line-height: 1.5;
    background: #ffffff;
}

/* ----- Header (replicates PageBannerGradient) ----- */
.header-wrap {
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid lightgrey;
    min-height: 360px;
}

.header-bg {
    opacity: 0.5;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 360px;
    background: rgb(255, 255, 255);
    background: linear-gradient(160deg, rgba(255, 255, 255, 1) 60%, rgba(2, 136, 209, 0.2) 80%);
}

.header-content {
    position: relative;
    min-height: 360px;
}

/* MudContainer Fixed approximation */
.container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
}

.brand img {
    height: 64px;
    width: auto;
}

h1.title {
    font-size: 2em;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

h2.subtitle {
    font-size: 1.5em;
    font-weight: 400;
    margin: 8px 0 24px 0;
}

.lead {
    font-size: 1.5em;
    font-weight: 400;
    margin: 16px 0;
}

.lead .accent {
    color: var(--primary);
    font-weight: 500;
}

.body-text {
    font-size: 1rem;
    margin: 16px 0;
}

/* ----- Notice section ----- */
.notice {
    max-width: 1140px;
    margin: 32px auto;
    padding: 24px 32px;
    border: 1px solid #ffe0b2;
    border-left: 6px solid #ff9800;
    border-radius: 8px;
    background: #fff8e1;
}

.notice h3 {
    color: #e65100;
    font-size: 1.25em;
    margin-top: 0;
}

.notice p {
    margin: 12px 0;
}

.notice strong {
    color: var(--primary);
}

footer {
    text-align: center;
    color: #777;
    font-size: 0.85rem;
    padding: 24px 16px 40px;
}
