@import url("colors.css");
@import url("fonts.css");
@import url("agreements.css");
@import url("forms.css");
@import url("buttons.css");
@import url("landing.css");
@import url("messages.css");
@import url("partials.css");
@import url("users.css");


html {
    height: 100%;
}

body {
    min-height: 100%;
    background: var(--color-light-green);
}

.main-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Headings */
/* -----------------------------------------------------*/
h1,
h2 {
    font-family: Bai Jamjuree, Outfit, sans-serif;
    font-weight: bold;
}

h3 {
    font-family: Outfit, sans-serif;
    font-weight: bold;
}

h4 {
    font-family: Outfit, sans-serif;
}


@media (min-width: 992px) {
    h2 {
        font-size: 2.15rem;
    }

    h3 {
        font-size: 1.9rem;
    }
}

p {
    font-family: Outfit, sans-serif;
    margin: 0;
}

/* Hyperlinks */
/* -----------------------------------------------------*/
a {
    color: #00716c;
    text-decoration: none;
}
a:hover {
    text-decoration: underline rgba(0, 113, 108, 0.3);
}

a.light-link {
    color: #a5c4c3;
}

a.light-link:hover {
    color: #a5c4c3;
    text-decoration: underline rgba(242, 245, 245, 0.42);
}

/* Navbar */
/* -----------------------------------------------------*/
.header-container {
    background: white;
    z-index: 100;
    min-height: 55px;
}
.navbar {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    text-align: center;
}

.navbar a {
    color: var(--color-font-main);
    text-decoration: none;
}
.navbar a:hover {
    color: var(--bs-nav-link-hover-color);
}
.navbar-brand {
    font-family: Bai Jamjuree, Outfit, sans-serif;
    font-weight: bold;
    font-size: 1rem;
}

.nav-item {
    font-family: Outfit, sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.nav-link {
    padding-bottom: 0;
}

.navbar-toggler {
    border: none;
    color: black;
}

.navbar-toggler-icon {
    height: 1.4rem;
    width: 1.4rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    box-shadow: 0 0 0 0.1rem #f7f7f7;
}

.navbar-collapse .nav-item {
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
}

@media (min-width: 576px) {
    .navbar-collapse {

    }
    .navbar-toggler-icon {
        height: 1.8rem;
        width: 1.8rem;
    }
    .navbar-brand {
        font-size: 1.5rem;
    }
    .header-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (min-width: 992px) {
    .navbar-collapse {
        background: white;
    }
}

.content-wrapper {
    height: 100%;
    padding-top: 55px;
}

/* Footer */
/* -----------------------------------------------------*/
.footer-container {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: 0.8rem;
    background: white;
}
.footer-item-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.footer-item {
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-width: 768px) {
    .footer-item-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
}


/* utils */
/* -----------------------------------------------------*/

.mw-900 {
    max-width: 900px;
}
.mw-700 {
    max-width: 700px;
}
.mw-500 {
    max-width: 500px;
}
.border-bottom-black {
    border-bottom-color: black !important;
}

/* Honeypot class */
div:has(> input.signup-phone-number),
div:has(> input.signup-phone-number) > label,
div:has(> input.signup-phone-number) > div.invalid-feedback {
    margin: 0 !important;
    height: 0;
    opacity: 0;
}

.signup-phone-number {
    position: absolute;
    left: -9999px;
}
