/* FONTS */
@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,200;0,300;0,400;0,700;0,900;1,100;1,700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Aerospace&display=swap');

/* CSS Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Segoe UI'; */
    font-family: Urbanist, sans-serif;
}

body {
    min-height: 100vh;
    background: var(--body-color);
}

:root {
    /* COLORS */
    --body-color: #F8FAFC;
    /*--sidebar-color: #0064b3;
    --primary-color: #fff;
    --primary-color-light: #f6f5ff;
    --toggle-color: #ddd;
    --text-color: #fff;
    --button-color: #0064b3; */

    --uap-primary: #212529;
    /* FONT WEIGHT */
    --regular: 400;
    --semi-bold: 600;
    --bold: 700;
    --extra-bold: 800;

    /* TRANSITIONS */
    --tran-02: all 0.2s ease;
    --tran-03: all 0.3s ease;
    --tran-04: all 0.4s ease;
    --tran-05: all 0.5s ease;
}

/* @font-face {
    font-family: "BentonSansCompBlack";
    src: url("fonts/FontsFree-Net-BentonSans-Comp-Black-Regular.ttf") format("truetype");
} */

/* @font-face {
    font-family: "AdihausDIN";
    src: url("fonts/AdihausDIN-regular.ttf") format("truetype");
} */

/* @font-face {
    font-family: "AdihausDIN-bold";
    src: url("fonts/AdihausDIN-Bold.ttf");
} */

@font-face {
    font-family: "Aerospace";
    src: url("../fonts/Aerospace.ttf") format("truetype");
}

html {
    scroll-behavior: smooth;
}

/* Set core body defaults */
body {
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    /* font-family: var(--ff-primary); */

    --ck-z-default: 100;
    --ck-z-modal: calc(var(--ck-z-default) + 999);
}


.form-control:focus {
    border-color: #0064b3;
    -webkit-box-shadow: 0px 0px 0px 1px #0064b3;
    box-shadow: 0px 0px 0px 1px #0064b3;
}

.list-style-none {
    list-style-type: none;
}

.cursor-pointer {
    cursor: pointer;
}

/* The container */
.check-box {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.check-box input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.check-box .checkmark {
    position: absolute;
    top: 2;
    left: 0;
    height: 21px;
    width: 21px;
    background-color: transparent;
    border: 2px #0064b3 solid;
    border-radius: 2px;
    transform: translateY(2px);
}


/* When the checkbox is checked, add a blue background */
.check-box input:checked~.checkmark {
    background-color: #0064b3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.check-box .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.check-box input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.check-box .checkmark:after {
    left: 5px;
    top: 1px;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cutom-file-input {
    display: none;
}

.custom-file-upload {
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: .375rem;
}

a {
    text-decoration: none;
}


.form-check-input:checked {
    background-color: #212529;
    border-color: #212529;
}


/* Custom styling for the range slider */
.custom-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
    transition: 0.3s;
}

/* Style for the slider thumb (WebKit browsers) */
.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #212529;
    /* Dark color */
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

/* Style for the slider thumb (Firefox) */
.custom-range::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #212529;
    /* Dark color */
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

/* Add hover and active states */
.custom-range::-webkit-slider-thumb:hover,
.custom-range::-moz-range-thumb:hover {
    background: #212529;
}

.custom-range::-webkit-slider-thumb:active,
.custom-range::-moz-range-thumb:active {
    background: #212529;
}

.gradient-text {
    background: linear-gradient(to bottom,
            #63b8b2 10%,
            /* Cyan */
            #59ac50 45%,
            /* Green (adjusted to reduce dominance) */
            #7b4da3 90%
            /* Purple (made more visible) */
        );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    display: inline-block;
}

.gradient-bg {
    /* background: linear-gradient(to bottom, #4e928d 10%, #468a3f 45%, #653c83 90%); */
    background: #5c8c5e;
}
