/* Small page-specific overrides to mirror the original Blazor layout */

/* Hero image sizing (replaces server-side IsMobileScreen logic) */
.hero-img {
  width: 400px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 576px) {
  .hero-img {
    width: 300px;
  }
}

/* Slight spacing tweak for top content */
.fade-in-fwd { animation: fade-in-fwd .2s cubic-bezier(.39,.575,.565,1.000) both; }

/* Carousel responsive heights */
#homeCarousel .carousel-item { height: 60vh; }
@media (max-width: 576px) {
  #homeCarousel .carousel-item { height: 250px; }
}

/* Ensure cards and panels fit nicely */
.mw-95dvw { margin-left: auto; margin-right: auto; }

/* Buttons: ensure gradient button works on plain Bootstrap */
.btn-gradient { cursor: pointer; }

/* Keep the squircle visible behind images */
.squircle { opacity: 0.95; }

/* Minor utility to match original centered headings on small screens */
@media (max-width: 992px) {
  .text-lg-start { text-align: center !important; }
}

.squircle {
    --r: 60%;
    --_r: clamp(0%,var(--r)/2,25%);
    --_v: calc(var(--_r)*(1 - sqrt(2)/4));
    --_p: calc(var(--_v) - var(--_r)/2);
    clip-path: shape( from var(--_v) var(--_p), curve to 50% 0 with var(--_r) 0, curve to calc(100% - var(--_v)) var(--_p) with calc(100% - var(--_r)) 0, curve to calc(100% - var(--_p)) var(--_v) with calc(100% - 2*var(--_p)) calc(2*var(--_p)), curve to 100% 50% with 100% var(--_r), curve to calc(100% - var(--_p)) calc(100% - var(--_v)) with 100% calc(100% - var(--_r)), curve to calc(100% - var(--_v)) calc(100% - var(--_p)) with calc(100% - 2*var(--_p)) calc(100% - 2*var(--_p)), curve to 50% 100% with calc(100% - var(--_r)) 100%, curve to var(--_v) calc(100% - var(--_p)) with var(--_r) 100%, curve to var(--_p) calc(100% - var(--_v)) with calc(2*var(--_p)) calc(100% - 2*var(--_p)), curve to 0 50% with 0 calc(100% - var(--_r)), curve to var(--_p) var(--_v) with 0 var(--_r), curve to var(--_v) var(--_p) with calc(2*var(--_p)) calc(2*var(--_p)) );
    width: 400px;
    aspect-ratio: 1;
    background: #1A73E8;
    position: absolute;
}

.squircle-mobile {
    --r: 70%;
    --_r: clamp(0%,var(--r)/2,25%);
    --_v: calc(var(--_r)*(1 - sqrt(2)/4));
    --_p: calc(var(--_v) - var(--_r)/2);
    clip-path: shape( from var(--_v) var(--_p), curve to 50% 0 with var(--_r) 0, curve to calc(100% - var(--_v)) var(--_p) with calc(100% - var(--_r)) 0, curve to calc(100% - var(--_p)) var(--_v) with calc(100% - 2*var(--_p)) calc(2*var(--_p)), curve to 100% 50% with 100% var(--_r), curve to calc(100% - var(--_p)) calc(100% - var(--_v)) with 100% calc(100% - var(--_r)), curve to calc(100% - var(--_v)) calc(100% - var(--_p)) with calc(100% - 2*var(--_p)) calc(100% - 2*var(--_p)), curve to 50% 100% with calc(100% - var(--_r)) 100%, curve to var(--_v) calc(100% - var(--_p)) with var(--_r) 100%, curve to var(--_p) calc(100% - var(--_v)) with calc(2*var(--_p)) calc(100% - 2*var(--_p)), curve to 0 50% with 0 calc(100% - var(--_r)), curve to var(--_p) var(--_v) with 0 var(--_r), curve to var(--_v) var(--_p) with calc(2*var(--_p)) calc(2*var(--_p)) );
    width: 200px;
    aspect-ratio: 1;
    background: #1A73E8;
    position: absolute;
}


.rotate-center {
    animation: rotate-center 20s linear infinite;
    transform-origin: center;
}


@keyframes rotate-center {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.vibrate-1 {
    animation: vibrate-1 5s linear infinite
}

@keyframes vibrate-1 {
    0% {
        transform: translate(0)
    }

    20% {
        transform: translate(-2px,2px)
    }

    40% {
        transform: translate(-2px,-2px)
    }

    60% {
        transform: translate(2px,2px)
    }

    80% {
        transform: translate(2px,-2px)
    }

    100% {
        transform: translate(0)
    }
}

.Fade-In-Left {
    animation: Fade-In-Left 1s ease 0s 1 normal forwards;
}

@keyframes Fade-In-Left {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


.gradient-bg {
    background: linear-gradient(270deg, var(--mud-palette-primary), var(--mud-palette-secondary));
    background-size: 400% 400%;
    -webkit-animation: GradientAnimation 5s ease infinite;
    animation: GradientAnimation 5s ease infinite;
}

@-webkit-keyframes GradientAnimation {
    0% {
        background-position: 5% 0%
    }

    50% {
        background-position: 96% 100%
    }

    100% {
        background-position: 5% 0%
    }
}

@keyframes GradientAnimation {
    0% {
        background-position: 5% 0%
    }

    50% {
        background-position: 96% 100%
    }

    100% {
        background-position: 5% 0%
    }
}

.Gradient-Text {
    background-image: linear-gradient(270deg, #1a73e8, #2b4669);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    animation: GradientAnimation 4s ease infinite;
}

/* From Uiverse.io by SteveBloX */
.Login-button {
    width: 100px;
    height: 50px;
    font-size: 1.35em;
    border: 5px solid var(--mud-palette-primary);
    border-radius: 25px;
    transition: all 0.3s;
    cursor: pointer;
    background: white;
    font-weight: bold;
}

/* Gradient button styles - use by adding 'btn-gradient' to your button
   or this will override Bootstrap's .btn-primary appearance when this CSS is loaded after Bootstrap. */
.btn-gradient,
.btn.btn-primary {
    background: linear-gradient(270deg, #1a73e8, #2b4669);
    background-size: 400% 400%;
    color: #fff !important;
    border: none !important;
    animation: GradientAnimation 5s ease infinite;
    box-shadow: none !important;
    transform: scale(1);
    transition: transform 0.1s ease-in-out, filter 0.2s ease-in-out;
}

    .btn-gradient:hover,
    .btn.btn-primary:hover {
        filter: brightness(0.95);
        /* 2. Add the target hover transform effect */
        transform: scale(1.05);
    }

.btn-gradient:focus,
.btn.btn-primary:focus {
    box-shadow: 0 0 0 .25rem rgba(26,115,232,0.25) !important;
}

/* Helper: set element width to 99dvw on small (mobile) screens
   Usage: add class "mw-99dvw" to the MudGrid or container element */
/* Default for non-mobile sizes: use 85dvw */
.mw-95dvw {
    width: 85dvw !important;
    max-width: 85dvw !important;
    box-sizing: border-box !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
@media (max-width: 576px) {
    .mw-95dvw {
        width: 95dvw !important;
        max-width: 95dvw !important;
        box-sizing: border-box !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}


.fade-in-fwd {
    animation: fade-in-fwd .2s cubic-bezier(.39,.575,.565,1.000) both
}

.fade-in-fwd-delay1 {
    animation: fade-in-fwd 0.5s cubic-bezier(.39,.575,.565,1.000) 0.5s both
}

.fade-in-fwd-delay2 {
    animation: fade-in-fwd 0.75s cubic-bezier(.39,.575,.565,1.000) 0.75s both
}

/* ----------------------------------------------
 * Generated by Animista on 2026-7-8 19:43:48
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

@keyframes fade-in-fwd {
    0% {
        transform: translateZ(-80px);
        opacity: 0
    }

    100% {
        transform: translateZ(0);
        opacity: 1
    }
}


/* external css: flickity.css */

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
}

.gallery {
    background: #EEE;
}

.gallery-cell {
    width: 66%;
    height: 200px;
    margin-right: 10px;
    background: #8C8;
    counter-increment: gallery-cell;
}

    /* cell number */
    .gallery-cell:before {
        display: block;
        text-align: center;
        content: counter(gallery-cell);
        line-height: 200px;
        font-size: 80px;
        color: white;
    }





.momo-trust-display-regular {
    font-family: "Momo Trust Display", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.momo-trust-display-bold {
    font-family: "Momo Trust Display", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.alan-sans-regular {
    font-family: "Alan Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


.alan-sans-bold {
    font-family: "Alan Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}


h1, h2, h3, h4, h5 {
    font-family: "Momo Trust Display", sans-serif !important;
    font-weight: 700;
    font-style: normal;
}


h6 {
    font-family: "Momo Trust Display", sans-serif !important;
    font-weight: 400;
    font-style: normal;
}

p, span, a, li, div {
    font-family: "Alan Sans", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.Gradient-Text {
    font-family: "Momo Trust Display", sans-serif !important;
    font-weight: 700 !important;
    font-style: normal;
}

 .btn{
    font-family: "Momo Trust Display", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 400 !important;
    font-style: normal;
}