/* Shared by static shell in index.html and Blazor / route — keep in sync with Pages/Home.razor + Layout/LandingLayout.razor */

.landing-root {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 1.5rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #002c86;
    color: #ffffff;
    text-align: center;
}

.landing-root *,
.landing-root *::before,
.landing-root *::after {
    box-sizing: border-box;
}

.landing-root .logo {
    display: block;
    width: min(280px, 85vw);
    height: auto;
    margin: 0 auto 2rem;
}

.landing-root h1 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.125rem, 3vw, 1.35rem);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.landing-root p {
    margin: 0 0 1.75rem;
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    opacity: 0.95;
}

.landing-root .stores {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    justify-content: center;
    align-items: center;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    background-color: #f0f0ed;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.landing-root .stores a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.5rem;
    border-radius: 8px;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.landing-root .stores a:hover {
    opacity: 0.92;
    transform: scale(1.04);
}

.landing-root .stores a:focus-visible {
    outline: 2px solid #002c86;
    outline-offset: 3px;
}

.landing-root .stores a img {
    display: block;
    height: auto;
    width: auto;
    max-height: 56px;
    max-width: min(220px, 42vw);
}
