@import url('https://fonts.googleapis.com/css2?family=Annie+Use+Your+Telescope&family=Luckiest+Guy&family=Mouse+Memoirs&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --theme-primary: #f2891f;
    --theme-danger: #c32b2c; /* Derived based on the primary */
    --theme-warning: #c3b32b; /* Derived based on the primary */
    --theme-success: #8aea22; /* Derived based on the primary */
    --theme-info: #2285ea; /* Derived based on the primary */
    --theme-light: #f9e3d1; /* Derived based on the primary */
    --theme-dark: #202021; /* Derived based on the primary */
}


.luckiest-guy-regular {
    font-family: "Luckiest Guy", cursive;
    font-weight: 400;
    font-style: normal;
}

.annie-use-your-telescope-regular {
    font-family: "Annie Use Your Telescope", cursive;
    font-weight: 400;
    font-style: normal;
}
.mouse-memoirs-regular {
    font-family: "Mouse Memoirs", sans-serif;
    font-weight: 400;
    font-style: normal;
}


.roboto-condensed-100 {
   font-family: "Roboto Condensed", sans-serif;
   font-optical-sizing: auto;
   font-weight: 100;
   font-style: normal;
}
.roboto-condensed-300 {
   font-family: "Roboto Condensed", sans-serif;
   font-optical-sizing: auto;
   font-weight: 300;
   font-style: normal;
}
.roboto-condensed-500 {
   font-family: "Roboto Condensed", sans-serif;
   font-optical-sizing: auto;
   font-weight: 500;
   font-style: normal;
}

body {
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    background-color: var(--bs-light);
}

#toasts {
    position: fixed;
    bottom:0;
    right:0;
    width:50%;
    z-index: 9999;
    background: transparent;
}


h1,h2,h3,h4,h6,
.h1,.h2,.h3,.h4,.h5,.h6 {
    font-family: "Mouse Memoirs", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.font-rem1 { font-size: 1rem; }
.font-rem2 { font-size: 2rem; }
.font-rem3 { font-size: 3rem; }
.font-rem4 { font-size: 4rem; }
.font-rem5 { font-size: 5rem; }
.font-rem6 { font-size: 6rem; }
.font-rem7 { font-size: 7rem; }
.font-rem8 { font-size: 8rem; }

/* Reusable drop shadow class for site elements */
.drop-shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn,.navbar-toggler { border-radius: 0 !important;}

.btn-primary {
    background-color: var(--theme-primary);
    border-color: var(--theme-primary);
    color: #000000 !important;
}


.alert-primary {
    background-color: var(--theme-primary);
    border-color: var(--theme-primary);
    color: #000000 !important;
}

.bg-primary {
    background-color: var(--theme-primary) !important;
    color: #000000 !important;
}

.text-primary {
    color: var(--theme-primary) !important;
}

.border-primary {
    border-color: var(--theme-primary) !important;
}

.text-bg-primary {
    color: #000000 !important;
    background-color: var(--theme-primary) !important;
}


.btn-outline-primary {
    color: var(--theme-primary);
    border-color: var(--theme-primary);
    background-color: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    color: #000000;
    background-color: var(--theme-primary);
    border-color: var(--theme-primary);
}


.nav-link.active {
    background-color: var(--theme-primary) !important;
    color: Black !important;
    font-weight: bold !important; /* Optional: Adds emphasis */
    text-decoration: underline !important; /* Optional: Adds better distinction */
}

a {
    color: var(--theme-primary);
    text-decoration: none;
}


.btn-primary:hover,
.btn-primary:focus {
    background-color: #d9731a; /* Darkened shade of var(--theme-primary) */
    border-color: #d06a17; /* Darkened shade of var(--theme-primary) */
}

a:hover,
a:focus {
    color: #793f0f; /* Darkened shade of var(--theme-primary) */
    text-decoration: underline;
}


.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 500px;
    min-height: 300px;
    padding: 20px;
    border-radius: 5px;
    z-index:8888;
    display:none;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: Black;
    cursor: pointer;
}

.form-floating label {
    color: #000000;
}

.bottom-image {
    background-size: 125%;
    padding-bottom: 100px;
    background-repeat: no-repeat;
}
.bottom-image-left {
    background-position: bottom left;
}
.bottom-image-right {
    background-position: bottom right;
}
@media(min-width:900px){
    .bottom-image {
        background-size: 100%;
        padding-bottom: 300px;
    }
}

ul.slick-dots {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.slick-dots li button {
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background-color: currentColor !important;
    border: none !important;
    transition: all 0.3s ease;
    opacity: 0.5;
    display: block;
    text-indent: -9999px;
    overflow: hidden;
}
ul.slick-dots li.slick-active button {
    opacity: 1;
    background-color: var(--theme-primary) !important;
    border-color: var(--theme-primary);
}

.page-heading {
    position: relative;
    height: 300px;
}
.page-heading .caption {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;
}
.page-heading .caption h1 {
    font-size: 3rem;
}
@media (min-width:768px) and (max-width:900px) {
    .page-heading .caption h1 {
        font-size: 6rem;
    }
}
@media (min-width:900px) {
    .page-heading .caption h1 {
        font-size: 8rem;
    }
}