/*
 * Strle.net inspired theme overrides for Shutty MudBlazor app.
 * Supplements the MudBlazor palette/typography defined in StrleTheme.cs.
 */

/* Link color matching strle.net brand */
a:not(.mud-button-root):not(.mud-nav-link) {
    color: var(--mud-palette-primary);
}

a:not(.mud-button-root):not(.mud-nav-link):hover {
    color: #97001D;
}

/* AppBar – white with subtle bottom border (light mode) */
.mud-appbar {
    border-bottom: 1px solid var(--mud-palette-lines-default);
}

/* Drawer active nav link accent */
.mud-nav-link.active {
    border-left: 3px solid var(--mud-palette-primary);
}

/* Strle.net rounded button style */
.mud-button-root.mud-button-filled {
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* ===== Landing page styles ===== */

.landing-hero {
    background: linear-gradient(135deg, var(--mud-palette-background) 0%, var(--mud-palette-background-gray) 100%);
}

.landing-logo {
    max-height: 120px;
    width: auto;
    object-fit: contain;
}

.landing-title {
    font-weight: 700;
}

.landing-subtitle {
    font-weight: 400;
}

.landing-description {
    line-height: 1.8;
    color: var(--mud-palette-text-secondary);
}

.landing-cta {
    min-width: 160px;
}

.landing-features {
    background: var(--mud-palette-background-gray);
}

.landing-card {
    background: var(--mud-palette-surface);
    border: 1px solid var(--mud-palette-divider);
    border-radius: 12px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    height: 100%;
}

.landing-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Footer */
.landing-footer {
    border-top: 1px solid var(--mud-palette-divider);
    background: var(--mud-palette-surface);
    text-align: center;
}
