 /*Stock w/ blazor*/
html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    margin: 0px;
}
a, .btn-link {
    color: #006bb7;
    margin: 0px;
}
.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}
.content {
    padding-top: 0rem;
}
h1:focus {
    outline: none;
}
.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}
.invalid {
    outline: 1px solid #e50000;
}
.validation-message {
    color: #e50000;
}
.darker-border-checkbox.form-check-input {
    border-color: #929292;
}
.layout-root {
    width: 100%;
    display: block;
}

/*Not Stock*/


/* Wrapper sits directly below the nav bar */
.background-wrapper {
    position: relative;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}


.background-landscape {
    position: absolute;
    top: 0; /* start at top of wrapper */
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: local;
    z-index: -2;
}

/* Background image inside wrapper */
.background-image {
    position: absolute;
    top: 0; /* start at top of wrapper */
    left: 0;
    width: 100%;
    height: 95%;
    margin-top: 25px;
    background-image: var(--bg-imageFront);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: local;
    z-index: -1;
}





/* Background image inside wrapper */
.background-image-form {
    position: absolute;
    top: 0; /* start at top of wrapper */
    left: 0;
    width: 100%;
    height: 95%;
    margin-top: 25px;
    background-image: url('images/MCLForm.PNG');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: local;
    z-index: 0;

    /*form specific*/
    display: flex;
    justify-content: center;
    align-items: flex-start; /* form sits below image */
}

/* Form container */
.form-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    margin-top: 84.5%;
    border-radius: 12px;
    width: 550px; /* smaller box */
    height:230px; /* fixed height */
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    overflow-y: auto; /* scroll INSIDE the box */
    overflow-x: hidden; /* no sideways overflow */
    font-size: 0.75rem; /* shrink text */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-data {
    display: flex;
    flex-direction: column; /* one vertical column */
    gap: 6px;
}

.form-box h2,
.form-box h3 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

input {
    padding: 4px 6px; /* smaller inputs */
    font-size: 0.75rem;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.form-grid {
    display: grid;
    gap: 6px;
}

.submit-btn {
    margin-top: 10px;
    padding: 8px;
    width: 100%;
    border-radius: 6px;
    border: none;
    background: #b30000;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.contact-grid {
    display: grid;
    gap: 10px 15px; /* vertical + horizontal spacing */
    width: 100%;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 2px; /* small space between label + input */
}

    .contact-item label {
        font-size: 0.75rem;
    }

    .contact-item input {
        padding: 4px 6px;
        font-size: 0.75rem;
        border-radius: 6px;
        border: 1px solid #ccc;
    }
    
.navbar-item2 {
    margin-left: 10px;
    padding: 0 12px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;

    background-color: #F6B7B5;
 
    border-radius: 30px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);

    position: relative;
    overflow: hidden; /* Prevent shine spill */
    cursor: pointer;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}





/* TEXT SHINE ONLY */
.navbar-item2 span {
    position: relative;
    z-index: 2;
}

.navbar-item2::after {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.7),
        transparent
    );

    transition: left 0.45s ease;
    pointer-events: none;
}

.navbar-item2:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.25);
}

.navbar-item2:hover::after {
    left: 140%;
}

.navbar-item {
    height: 57px;
    display: flex;
    align-items: center;
    padding: 0 22px;

    cursor: pointer;
    font-weight: 500;
    letter-spacing: 0.4px;
    border-radius: 6px;

    transition: all 0.25s ease;
}

.navbar-item:hover {
    background: rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.navbar-item:active {
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.15);
}

a {
    text-decoration: none;
    color: #222;
    display: block;
    height: 100%;
    display: flex;
    align-items: center;

    transition: color 0.2s ease;
}

.navbar-item:hover a {
    color: #000;
}

.MoveLinkLeft {
    display: flex; /* forces horizontal layout */
    flex-direction: row; /* ensures left → right */
    align-items: center; /* vertically centers them */
    gap: 1.5rem; /* spacing between links */
    margin-right: auto; /* pushes them to the LEFT side */
}