/* @import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */
/* linear-gradient(90deg, rgb(193 27 127) 0%, rgb(122 61 169) 50%, rgb(189 12 12) 100%) */
/* linear-gradient(90deg, rgb(209 44 143) 0%, rgb(122 61 169) 50%, rgb(189 14 221) 100%) */
:root {
    --primary-color: #3B8A1A;
    --secondary-color: #D95338;
    --background-color: #F1F7F1;
    --secondary-background-color: rgb(233, 240, 234);
    --heading-color: #181E4B;
    --section-heading-color: #14183E;
    --section-tagline-color: #5E6282;
    --hero-tagline-color: #E95606;
    --section-description-color: #5E6282;
    font-size: 62.5%;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0px;
    font-family: "Poppins";
    background-color: rgb(241, 246, 241);
    /* overflow-x: hidden; */

}

a {
    text-decoration: none;
    color: white;
}

a:hover {
    text-decoration: underline;
}

#navbarHamburger {
    border-radius: 5px;
    display: none;
    padding: 0.5rem 0;
    cursor: pointer;
    width: fit-content;
    height: auto;
}

#navbarHamburger:hover {
    background-color: var(--secondary-color);
    color: var(--background-color);
    transition-duration: 0.3s;
}

.section-container {
    opacity: 0;
    /* start hidden */
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.6s ease-out;
}

.special-section-container {
    opacity: 0;
    /* start hidden */
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.6s ease-out;
}

.section-container.is-inview {
    opacity: 1;
    transform: translateY(0);
}

.special-section-container.is-inview {
    opacity: 1;
    transform: translateY(0);
}



/* ============================== Contact Us Form Modal ============================== */
/* Overlay */
.contact-us-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal box */
.contact-us-modal {
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 60rem;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Close button */
.contact-us-close-modal {
    float: right;
    font-size: 20px;
    cursor: pointer;
}

/* Form */
.contact-us-modal form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.contact-us-modal label {
    font-weight: 500;
    font-size: 1.5rem;
    font-family: "Poppins";
}

.contact-us-modal input,
.contact-us-modal textarea {
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.contact-us-modal input:focus,
.contact-us-modal textarea:focus {
    outline: 1px solid #008000;
}

.contact-us-modal textarea {
    resize: vertical;
    height: 10rem;
}

.contact-us-modal button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 3rem;
    margin: auto;
    cursor: pointer;
    font-size: 2rem;
    width: 25%;
}

.contact-us-modal button:hover {
    background: rgb(43, 102, 17);
}

/* ============================== Navbar Stuff ============================== */

.navbar-logo-link {
    display: inline-block;
    text-decoration: none;
    height: 100%;
}

.navbar-container {
    margin: 0;
    position: fixed;
    z-index: 100 !important;
    top: 20px;
    border-radius: 50rem;
    margin: auto;
    width: 90%;
    left: 0px;
    right: 0px;
    padding: 0.5rem 0;
    background-color: #ffffff;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.151);
    /* background-color: #527339; */
}

.nav-link {
    color: black !important;
}

.navbar {
    display: flex;
    justify-content: space-between;
    margin: 0 2rem;
    padding: 1rem;
    height: 5rem;
    align-items: center;
    font-size: 1.3rem;
}

.nav-link {
    font-weight: normal;
    transition: font-weight 0.2s;
}

.nav-link.active {
    font-weight: bold !important;
    color: rgb(38, 102, 10) !important;
}

.navbar-logo-image-container {
    display: flex;
    align-items: center;
    height: 100%;
    width: auto;
    gap: 2rem;
}

.navbar-logo-image-1 {
    max-width: 70%;
    max-height: 70%;
}

.navbar-logo-image-2 {
    max-width: 70%;
    max-height: 100%;
}

.navbar-links {
    font-size: 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5rem;
}

.navbar-links .sign-up-button {
    margin-top: 2rem;
    margin-bottom: 2rem;
    border: 0;
    /* height: 5rem; */
    cursor: pointer;

    color: white;
    background-color: black;
    padding: 1.5rem 1.8rem;
    border-radius: 3rem;
    font-size: 1.8rem;
    width: fit-content;
    box-shadow: 0px 1px 1px 1px rgb(153, 153, 153);
}

.navbar-links a:hover {
    color: var(--hero-tagline-color) !important;
    text-decoration: none !important;
}


/* ============================== HealthVentor Footer Section ============================== */

.footer {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    gap: 4rem;
    padding: 2.5rem 8rem;
    font-size: 1.6rem;
}

.footer-top {
    display: flex;
    justify-content: flex-start;
    align-self: start;
    gap: 25rem;
    width: 100%;
}

.footer-logo-container {
    display: flex;
    gap: 1rem;
    width: 20rem;
    justify-content: space-between;
    align-items: center;

}

.footer-logo-motto {
    font-style: italic;
    font-weight: 200;
}

.footer-logo-container img {
    width: 100%;
}

.footer-logo-1 {
    width: 30%;
}

.footer-logo-2 {
    width: 70%;
    height: auto;
}

.footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 4rem;
}

.copyright {
    color: #b1b1b1;
    margin: 0;
}

.footer-right {
    display: flex;
    gap: 8rem;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    font-size: 1.6rem;
}

.quick-actions p {
    margin-bottom: 0;
}

.socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    position: relative;
    top: 0.4rem;
    align-self: flex-start;
}

.quick-actions span,
.socials span,
.support span {
    font-size: 1.7rem;
    margin-bottom: 0;
    color: #10ca10;
}

.quick-actions a,
.socials a,
.support a {
    color: #b1b1b1;
}

.support {
    display: flex;
    flex-direction: column;
}

.support p {
    margin-bottom: 0;
}

.socials-svg-container {
    gap: 2rem;
}

.footer-svg {
    width: 25px;
    height: 25px;
}

/* ============================== Copyright Statement ============================== */
.copyright-container {
    position: relative;
    background-color: #c1c4be;
    padding: 1rem;
}

.copyright-container a:hover {
    text-decoration: underline;
    color: black;
}

.copyright-container p {
    color: black;
    text-align: center;
    font-size: 1.5rem;
}

/* ====================================================================================== */
/* ============================== RESPONSIVE MEDIA QUERIES ============================== */
/* ====================================================================================== */

@media (max-width: 1440px) {

    :root {
        font-size: 12px;
    }

    #navbarHamburger {
        display: block;
        outline: none;
        border: 0;
        width: 5rem;
        background-color: var(--secondary-color);
        color: white;
    }

    .navbar {
        position: relative;
        margin: 0;
        padding: 0rem 2rem;
        /* background-color: var(--primary-color); */
    }

    .toggle-btn {
        display: block;
    }

    .navbar-links {
        display: none;
        flex-direction: column;
        position: absolute;
        right: 0;
        top: 5rem;
        left: -1rem;
        z-index: 11;
        gap: 10px;
        width: 100%;
        background: var(--background-color);
        padding: 10px;
        margin-top: 10px;
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        box-shadow: 0px 25px 25px rgba(0, 0, 0, 0.151);
        border-radius: 0px 0px 20px 20px;
    }

    .navbar-links.show {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 2rem;
        gap: 2rem;
        width: 100%;
        right: 0;
        transform: scaleY(1);
        opacity: 1;
    }

    .navbar-links.show button {
        margin: 0;
    }

    .navbar-links a {
        color: black;
    }

    .navbar-links.active {
        position: absolute;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px;
        z-index: 21;
        top: 5rem;
        right: 0;
        width: 100%;
        /* border: 1px solid black; */
        box-shadow: 0px 25px 25px rgba(0, 0, 0, 0.151);
        background-color: var(--background-color);
        margin-top: 10px;
        padding: 10px 0;
        /* show when active */
    }

    .footer {
        padding: 4rem 2rem;
    }

    .footer-top {
        gap: 3rem;
        justify-content: space-between;
        align-self: stretch;
    }
}

@media (max-width: 1300px) {
    :root {
        font-size: 11px;
    }
}

@media (max-width: 1024px) {

    :root {
        font-size: 10px;
    }

    .navbar {
        font-size: 1rem;
    }

    .navbar-links {
        font-size: 1.6rem;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

}

@media (max-width: 800px) {
    .footer-right {
        gap: 2rem;
    }
}

@media (max-width: 740px) {
    .socials.socials-svg-container {
        flex-direction: column;
    }

    .footer-right {
        gap: 4rem;
    }
}

@media (max-width: 600px) {

    :root {
        font-size: 8px;
    }

    /* body { */
    /* overflow-x: hidden; */
    /* } */

    #navbarHamburger {
        display: block;
        outline: none;
        border: 0;
        width: 5rem;
        /* background-color: var(--background-color); */
    }

    .navbar {
        position: relative;
        margin: 0;
        padding: 0 2rem;
        /* background-color: var(--primary-color); */
    }

    .toggle-btn {
        display: block;
    }

    .navbar-links {
        display: none;
        flex-direction: column;
        position: absolute;
        right: 0;
        z-index: 11;
        gap: 10px;
        width: 100%;
        background: var(--background-color);
        padding: 10px;
        margin-top: 10px;
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        box-shadow: 0px 25px 25px rgba(0, 0, 0, 0.151);
        /* hide by default */
    }

    .navbar-links.show {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 2rem;
        gap: 2rem;
        width: 100%;
        right: 0;
        transform: scaleY(1);
        opacity: 1;
    }

    .navbar-links a {
        color: black;
    }

    .navbar-links.active {
        position: absolute;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px;
        z-index: 21;
        top: -5rem;
        right: 0;
        width: 100%;
        /* border: 1px solid black; */
        box-shadow: 0px 25px 25px rgba(0, 0, 0, 0.151);
        background-color: var(--background-color);
        margin-top: 10px;
        padding: 10px 0;
        /* show when active */
    }

    .about-us {
        margin-top: 14rem;
    }

    .footer {
        padding: 3rem 2rem;
        justify-content: center;
    }

    .footer-logo {
        width: 15rem;
    }

    .footer-logo-container {
        width: 16rem;
        justify-content: flex-start;
    }

    .footer-logo-1 {
        width: 50%;
        height: auto;
        max-height: 100%;
    }

    .footer-logo-2 {
        display: none;
    }

    .footer-top {
        align-self: center;
        justify-content: space-between;
        gap: 5rem;
    }

    .footer-right {
        gap: 2rem;
    }

    .footer-right {
        gap: 4rem;
    }

    .socials.socials-svg-container {
        flex-direction: column;
    }

    .socials.socials-svg-container svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 500px) {
    /* body { */
    /* overflow-x: hidden; */
    /* } */

    .socials.socials-svg-container {
        flex-direction: column;
    }

    .socials.socials-svg-container svg {
        width: 12px;
        height: 12px;
    }

    .footer-top {
        align-self: center;
        justify-content: space-between;
        gap: 2rem;
    }

    .footer-right {
        gap: 2rem;
    }
}

@media (max-width: 390px) {

    /* .caption { */
    /* bottom: 25%; */
    /* } */

    .footer-top p,
    .footer-top a {
        font-size: 1.5rem;
        text-align: left;
    }

    .footer-left {
        width: 10rem;
    }

    .footer-logo-container {
        width: 10rem;
    }
}