@import 'BusyKeys.Website.Client.5sy07ooi1t.bundle.scp.css';

/* _content/BusyKeys.Website/Components/Buttons/BkButton.razor.rz.scp.css */
.bk-button[b-1nik7gxpjg] {
    display: flex;
    align-items: center;
    gap: 6px; /* spacing between icon and text */
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 6px; /* constant radius for all buttons */
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.bk-button-bold[b-1nik7gxpjg] {
    font-weight: bold;
}

/* Gradient style */
.bk-button-gradient[b-1nik7gxpjg] {
    background: linear-gradient(to top right, #604ab6, #9a3590, #ec6047);
    color: white;
}

/* Solid style */
.bk-button-solid[b-1nik7gxpjg] {
    background-color: #604ab6; /* primary color */
    color: white;
}

/* Outline style */
.bk-button-outline[b-1nik7gxpjg] {
    background-color: transparent;
    color: #dbd7e8;
    border: 2px solid #8b7bc5;
}

/* General hover effect */
.hover-effect:hover[b-1nik7gxpjg] {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Scale up on hover */
.scale-up:hover[b-1nik7gxpjg] {
    transform: scale(1.03);
}

.bk-button-outline.hover-effect:hover[b-1nik7gxpjg] {
    background-color: #8b7bc5;
    color: white;
    border-color: #8b7bc5;
}

.bk-button .icon[b-1nik7gxpjg] {
    height: 20px;
    filter: brightness(0) invert(1); /* ensures icon is white if needed */
}
/* _content/BusyKeys.Website/Components/Containers/ContentContainer.razor.rz.scp.css */
.content-container[b-hd164tnxm8] {
    background-color: #13112e;
}
/* _content/BusyKeys.Website/Components/Heros/HomePageHero1.razor.rz.scp.css */
/* Home.razor.css */

/* Hero Section: background SVG with two overlays */
.hero[b-x61azyjvec] {
    position: relative;
    min-height: 750px;
    /* --- CHANGE HERE --- */
    /* Use the SVG background */
    background: url('/images/hero-background.svg') no-repeat center center;
    background-size: cover; /* Ensure it covers the area */
    /* Add a fallback solid color in case the SVG fails */
    background-color: #13112e;
    /* --- End Change --- */
    color: white;
    overflow: hidden;
}

.hero[b-x61azyjvec],
.hero *[b-x61azyjvec] {
    user-select: none;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none;     /* IE/Edge */
}

/* Uniform dark overlay to mute the busy background */
/* Keep this rule as is */
.hero[b-x61azyjvec]::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(11, 12, 42, 0.5); /* Adjust opacity as needed */
    z-index: 0;
}

/* Gradient fade overlay: from transparent to solid #13112e */
/* Keep this rule as is */
.hero[b-x61azyjvec]::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(19,17,46,0) 60%, #13112e 100%);
    z-index: 1;
}

/* Ensure hero content sits above overlays */
/* Keep this rule as is */
.hero > *[b-x61azyjvec] {
    position: relative;
    z-index: 2;
}

/* Button styles - Keep as is */
.btn-gradient[b-x61azyjvec] {
    background: linear-gradient(90deg, #f87171, #a855f7);
    border: none;
    color: white;
    transition: opacity 0.3s;
}

.btn-gradient:hover[b-x61azyjvec] {
    opacity: 0.9;
}

.btn-outline-light[b-x61azyjvec] {
    border: 2px solid #fff;
    color: #fff;
    transition: background-color 0.3s, color 0.3s;
}

.btn-outline-light:hover[b-x61azyjvec] {
    background-color: #fff;
    color: #13112e;
}

/* Optional gradient text effect - Keep as is */
.text-gradient[b-x61azyjvec] {
    background: linear-gradient(111.1deg, rgb(251, 140, 0) 3.2%, rgb(157 101 234) 90.3%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.lead-lg[b-x61azyjvec] {
    font-size: 1.5rem;
    line-height: 2.1rem;
}
/* _content/BusyKeys.Website/Components/Layout/BusyKeysFooter.razor.rz.scp.css */
.footer[b-p4vluqczko] {
    background-color: #171235;
    color: white;
    padding: 3rem 0 1.5rem 0;
    box-sizing: border-box;
}

.footer[b-p4vluqczko],
.footer *[b-p4vluqczko] {
    user-select: none;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none;     /* IE/Edge */
}

/* Apply box-sizing to all elements */
.footer *[b-p4vluqczko],
.footer *[b-p4vluqczko]::before,
.footer *[b-p4vluqczko]::after {
    box-sizing: border-box;
}

.footer .container[b-p4vluqczko] {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 10px;
}

/* Ensure the footer top always stacks vertically */
.footer-top[b-p4vluqczko] {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    width: 100%;
}

/* Give the logo proper sizing and spacing */
/*.footer-logo {*/
/*    margin-bottom: 2rem;*/
/*}*/

.footer-logo img[b-p4vluqczko] {
    height: 60px;
    width: auto;
}

/* Links container layout */
.footer-links-container[b-p4vluqczko] {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
    margin-right: -2rem; /* Compensate for the gap */
}

.footer-column[b-p4vluqczko] {
    flex: 1;
    min-width: 160px;
    margin-right: 0; /* Remove any default margin */
}

.footer-column h3[b-p4vluqczko] {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ededed;
}

.footer-column ul[b-p4vluqczko] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li[b-p4vluqczko] {
    margin-bottom: 0.75rem;
}

.footer-column ul li a[b-p4vluqczko] {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover[b-p4vluqczko] {
    color: white;
    text-decoration: underline;
}

.footer-bottom[b-p4vluqczko] {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

.copyright[b-p4vluqczko] {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.3rem;
    font-size: 12pt;
    font-weight: 500;
}

.legal-links[b-p4vluqczko] {
    display: flex;
    gap: 1rem;
}

.legal-links a[b-p4vluqczko] {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover[b-p4vluqczko] {
    color: white;
    text-decoration: underline;
}

.footer-social[b-p4vluqczko] {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a[b-p4vluqczko] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover[b-p4vluqczko] {
    color: white;
}

/* Responsive styles */
@media (max-width: 992px) {
    .footer-links-container[b-p4vluqczko] {
        gap: 1.5rem;
        margin-right: -1.5rem; /* Match the gap */
    }

    .footer-column[b-p4vluqczko] {
        min-width: 140px;
        flex-basis: calc(33.333% - 1.5rem);
    }
}

@media (max-width: 768px) {
    .footer-column[b-p4vluqczko] {
        flex-basis: calc(50% - 1.5rem);
    }

    .legal-links[b-p4vluqczko] {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-column[b-p4vluqczko] {
        flex-basis: 100%;
    }
}
/* _content/BusyKeys.Website/Components/Layout/MainLayout.razor.rz.scp.css */





#blazor-error-ui[b-t1dr4m56tj] {
    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[b-t1dr4m56tj] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/BusyKeys.Website/Components/Layout/NavBar.razor.rz.scp.css */
.navbar[b-vbc2yir6z0] {
    width: 100%;
    z-index: 1000;
    background-color: #171235;
}

.navbar[b-vbc2yir6z0],
.navbar *[b-vbc2yir6z0] {
    user-select: none;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none;     /* IE/Edge */
}

.navbar-logo img[b-vbc2yir6z0] {
    height: 50px;
    width: auto;
    display: block;
    max-width: 100%;
}


.navbar .container[b-vbc2yir6z0] {
    display: flex;
    align-items: center;
    padding: 10px;
    flex-wrap: wrap;
}

/* New right container holding links and sign in button */
.navbar-right[b-vbc2yir6z0] {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 2rem;
}

.navbar-links[b-vbc2yir6z0] {
    list-style: none;
    display: flex;
    font-size: 12pt;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.navbar-links li a[b-vbc2yir6z0] {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar-links li a:hover[b-vbc2yir6z0] {
    color: #f88b08;
}

.navbar-signin[b-vbc2yir6z0] {
    display: flex;
    align-items: center;
}

.btn-wrapper[b-vbc2yir6z0] {
    margin-left: 2px;
}

/* Hamburger Menu (Mobile) */
.menu-toggle[b-vbc2yir6z0] {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 10px;
}

.hamburger[b-vbc2yir6z0],
.hamburger[b-vbc2yir6z0]::before,
.hamburger[b-vbc2yir6z0]::after {
    display: block;
    background-color: white;
    height: 3px;
    width: 25px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger[b-vbc2yir6z0]::before,
.hamburger[b-vbc2yir6z0]::after {
    content: "";
}

.hamburger[b-vbc2yir6z0]::before {
    transform: translateY(-8px);
}

.hamburger[b-vbc2yir6z0]::after {
    transform: translateY(5px);
}

/* Responsive Styles for Mobile */
@media (max-width: 1200px) {
    
    .menu-toggle[b-vbc2yir6z0] {
        display: block;
    }

    .navbar-right[b-vbc2yir6z0] {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding-top: 0;
        padding-bottom: 0;
    }

    .navbar-right.active[b-vbc2yir6z0] {
        max-height: 300px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .navbar-links li:first-child[b-vbc2yir6z0] {
        margin-top: 1.5rem; /* or whatever spacing you prefer */
    }
    
    .navbar-links[b-vbc2yir6z0] {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 1rem;
    }

    .navbar-signin[b-vbc2yir6z0] {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 1rem;
    }
}
/* _content/BusyKeys.Website/Components/Pages/Corporate/About.razor.rz.scp.css */
.lead[b-e9f4gliyzd] {
    color: white;
    font-size: 1.4rem;
    line-height: 2.1rem;
}
/* _content/BusyKeys.Website/Components/Pages/Corporate/Privacy.razor.rz.scp.css */
.lead[b-5959i32ahn] {
    color: white;
    font-size: 1.4rem;
    line-height: 2.1rem;
}
/* _content/BusyKeys.Website/Components/Pages/Corporate/Terms.razor.rz.scp.css */
/* _content/BusyKeys.Website/Components/Pages/EmployeeBeta.razor.rz.scp.css */

/* Additional sections use the same solid background - Keep as is */
.bg-section[b-ikbf58s5lx] {
    background-color: #13112e;
    color: white;
    padding: 120px 0;
}
/* _content/BusyKeys.Website/Components/Pages/Engagement/Waitlist.razor.rz.scp.css */
.wait-list-form-wrapper[b-71cfljhdsc] {
    max-width: 525px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.wait-list-wrapper[b-71cfljhdsc] {
    position: relative;
    min-height: 675px;
    background: url('/images/hero-background.svg') no-repeat center center;
    background-size: cover;
    background-color: #13112e;
    overflow: hidden;
}

.wait-list-wrapper[b-71cfljhdsc],
.wait-list-wrapper *[b-71cfljhdsc] {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.wait-list-wrapper[b-71cfljhdsc]::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(11, 12, 42, 0.5); /* Adjust opacity as needed */
    z-index: 0;
}

.wait-list-wrapper[b-71cfljhdsc]::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(19,17,46,0) 60%, #13112e 100%);
    z-index: 1;
}

.wait-list-wrapper > *[b-71cfljhdsc] {
    position: relative;
    z-index: 2;
}
/* _content/BusyKeys.Website/Components/Pages/Home.razor.rz.scp.css */

/* Additional sections use the same solid background - Keep as is */
.bg-section[b-bzsofj2wbu] {
    background-color: #13112e;
    color: white;
    padding: 120px 0;
}
