/* Force the browser background to be pure black */
html, body {
    background-color: #010101 !important;
    margin: 0;
    min-height: 100vh;
}

/* Unified Krunch Heading Style */
.krunch-heading-center,
.krunch-heading-left {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #C5A059 !important; /* Dark Gold */
    display: block;
    width: 100%;
}

/* Specific Alignment */
.krunch-heading-center {
    text-align: center !important;
}

.krunch-heading-left {
    text-align: left !important;
}

/* Optional: Subheadings to stay slightly white/faded */
.krunch-subheading {
    text-align: center !important;
    display: block;
    width: 100%;
    opacity: 0.7;
    color: white !important;
    font-weight: 400;
}

/* Ensure the MudBlazor layout fills the screen and stays black */
.mud-layout {
    background-color: #010101 !important;
}

/* Target the main content area specifically */
.mud-main-content {
    background-color: #010101 !important;
    min-height: 100vh;
}

h1:focus {
    outline: none;
}

a, .btn-link {
    color: #ffc107; /* Makes links a casino gold/yellow color */
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.appbar-banner-container {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 5px 0;
}

.appbar-banner-img {
    /* This keeps the banner small enough for the top bar */
    height: 48px;
    width: auto;
    object-fit: contain;
    /* Optional: Add that Krunch neon glow */
    filter: drop-shadow(0 0 5px rgba(0, 255, 0, 0.5));
    transition: transform 0.3s ease;
}

    .appbar-banner-img:hover {
        transform: scale(1.05); /* Slight pop when hovered */
    }

/* Krunch Contact Form Styling */
.krunch-form-label {
    color: white;
    opacity: 0.9;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
}

.krunch-form-control {
    background-color: #0a0a0a !important; /* Slightly lighter than pure black for depth */
    border: 1px solid #C5A059 !important; /* Dark Gold Border */
    color: white !important;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
}

    /* The neon glow effect when a user clicks into the box */
    .krunch-form-control:focus {
        background-color: #111111 !important;
        border-color: #ffc107 !important; /* Brighter gold on focus */
        box-shadow: 0 0 8px rgba(255, 193, 7, 0.4) !important;
        outline: none;
    }

/* Custom Submit Button */
.krunch-btn-submit {
    background-color: #ffc107 !important; /* Casino Gold */
    color: #010101 !important;
    border: none;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

    .krunch-btn-submit:hover {
        background-color: #C5A059 !important; /* Dark Gold hover */
        box-shadow: 0 0 12px rgba(197, 160, 89, 0.6);
        transform: translateY(-2px); /* Slight pop-up effect */
    }

/* Lighten the placeholder text so it pops against the dark inputs */
.krunch-form-control::placeholder {
    color: #b3b3b3 !important; /* Light silver/grey */
    opacity: 1 !important; /* Firefox lowers placeholder opacity by default, this forces it to stay visible */
}

/* Optional: Make it slightly brighter when the user clicks into the box */
.krunch-form-control:focus::placeholder {
    color: #d9d9d9 !important;
}