:root {
    /* purples from darkest to lightest */
    --color-one: #121723;
    --color-two: #5a5c80;
    --color-three: #686993;
    --color-four: #6e6f99;
    --color-five: #76769d;
    --color-six: #9394b2;
    --color-seven: #e5e6f1;
    --color-eight: #d3d4e0;
    --color-nine: #f8f9fa;
    --color-ten: #f6f4fc;
    --color-eleven: #FFCC66;
    --color-twelve: #f8edc2;


    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

* {
    font-family: Saira,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,sans-serif;
}
html {
    scroll-padding-top: 90px; /* height of navbar */
}
.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    color: var(--dark-color) !important;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
}
.nav-link:hover {
    color: var(--primary-color) !important;
}

.image-placeholder {
    background-color: rgba(255, 255, 255, 0.1);
    /*background-image: url('../../../img/laptop.gif');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 300px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.0rem;
    border-radius: 10px;
}
.hero_stat {
    color: #FFCC66;
    font-weight: bold;
    font-size: 1.6rem;
}
.hero_highlight {
    color: white;
    font-weight: bold;
    font-size: 1.6rem;
}
.hero-link {
    text-decoration: none;
    color: #FFCC66;
}
.hero-section {
    /*background-image: url('../img/home_hero.jpg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    width: 100%;*/
    height:auto;
    background-image: linear-gradient(var(--color-six), var(--color-four));
    color: white;
    padding: 120px 0 80px;
}
.circled-number {
    display: inline-flex; /* Use flexbox for easy centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    width: 2em; /* Set a fixed width (adjust as needed) */
    height: 2em; /* Set a fixed height equal to the width for a perfect circle */
    border-radius: 50%; /* Make it a circle */
    background-color: var(--color-four); /* Example background color */
    color: white; /* Text color */
    font-size: 1rem; /* Adjust font size as needed */
    font-weight: bold; /* Make the number bold */
}
.card {
    transition: box-shadow 0.3s;
    font-size: small;
}
.card-time {
    color: var(--color-five);
    font-weight: bold;
}
.card-icon {
    background-color: var(--color-six);
    color: var(--color-eight);
}
.step-card {
    border: solid 1px var(--color-five);
    background-image: linear-gradient(white, var(--color-nine));
}
.step-card:hover {
    box-shadow: 0 5px 8px 0 var(--color-six);
}
.step-card:hover .hidden-content {
    display: block;
    visibility: visible;
}
.hidden-content {
    visibility: hidden;
    display: none;
    transition: visibility 0s, opacity 0.3s ease-in-out; /* Optional: for smooth transition */
}
.frame-card {
    border: solid 1px var(--color-five);
    background-image: linear-gradient(var(--color-nine), var(--color-ten));
}
.frame-card:hover {
    box-shadow: 0 5px 8px 0 var(--color-six);
}
.frame-card:hover .hidden-content {
    display: block;
    visibility: visible;
}
.benefit-list li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.8rem;
}

.benefit-list li:before {
    content: "\F633"; /* Bootstrap icon check circle */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: var(--color-six);
}
.btn-primary {
    background-color: var(--color-four);
    border-color: var(--color-four);
    padding: 0.5rem 1.5rem;
}

.btn-primary:focus, .btn-primary:hover, .btn-primary:active, .btn-primary:target {
    background-color: var(--color-six);
    border-color: var(--color-six);
    padding: 0.5rem 1.5rem;
}
.btn-outline-light {
    background-color: var(--color-four);
    opacity: 1.0;
    border-color: var(--color-eight);
    padding: 0.5rem 1.5rem;
}

.btn-outline-light:focus, .btn-outline-light:hover, .btn-outline-light:active, .btn-outline-light:target {
    background-color: var(--color-seven);
    color: var(--color-two);
    border-color: var(--color-one);
    padding: 0.5rem 1.5rem;
}
