:root {
    --color-black: #222;
    --color-white: #fff;
    --color-ofwhite: #F8F8F8;
    --color-gray-low: #D9D9D9;
    --color-gray-mid: #817676;
    --color-cream: #FFFAE5;
    --color-yellow: #f1c40f;
    --color-yellow-light: #FFF6D0;
    --color-blue: #2fa1ca;
    --color-blue-dark: #34495e;
    --color-brown: #723535;
    --color-purple: #B931A8;
    --color-indianRed: #CD8A7B;

    --nav-height: clamp(4rem, 8.5vh, 120px);

}

:root {
    --bg-primary: var(--color-ofwhite);
    --bg-secondary: var(--color-gray-low);
    --bg-cream: var(--color-cream);
    --bg-button: var(--color-brown);

    --text-primary: var(--color-black);
    --text-secondary: var(--color-gray-mid);
    --text-purple: var(--color-purple);
    --text-white: var(--color-white);

    --blue-20: color-mix(in srgb, var(--color-blue), transparent 80%);
    --blue-25: color-mix(in srgb, var(--color-blue), transparent 75%);
    --blue-80: color-mix(in srgb, var(--color-blue), transparent 20%);

    --brown-80: color-mix(in srgb, var(--color-brown), transparent 20%);

    --black-30: color-mix(in srgb, #000, transparent 70%);

    --font_mochiyPop: 'Mochiy_Pop_P_One';
    --font_inter: 'inter';
    --font_belleza: 'Belleza_regular';

}


@font-face {
    font-family: 'Mochiy_Pop_P_One';
    src: url(/static/font/MochiyPopPOne-Regular.woff2) format('woff2');
}

@font-face {
    font-family: 'inter';
    src: url(/static/font/Inter-VariableFont_opsz\,wght.woff2) format('woff2');
}

@font-face {
    font-family: 'Belleza_regular';
    src: url(/static/font/Belleza-Regular.woff2) format('woff2');
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

html {
    font-size: clamp(16px, 0.8vw + 5px, 25px);
    background-color: var(--bg-primary);
    font-family: var(--font_inter), system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    color: var(--text-primary);
    min-height: 100vh;
    min-height: 100dvh;
    background-color: inherit;
    user-select: none;

    &::-webkit-scrollbar {
        display: none;
    }
}


li {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--text-primary);
}


.btn {
    white-space: nowrap;
    padding: 0.8em 1.8em;
    border-radius: 7px;
    background-color: var(--bg-button) !important;
    color: var(--color-white);
    font-weight: 500;
    text-align: center;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: clamp(1.1em, 1vw + 0.2rem, 5em);
    transition: all 300ms ease-in-out;

    &.btn_sm {
        font-size: clamp(0.95em, 0.9vw + 0.1rem, 2em);
        padding: 0.65em 1.5em;
    }

    &:hover {
        opacity: 0.9;
    }
}


.hovLinePass,
.hovLinePass_rev {
    position: relative;
    overflow: hidden;
    width: fit-content;
    padding-bottom: 1.5px;

    .line {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding-bottom: 1.2px;
        background-color: currentColor;
    }

    &.hovLinePass_rev .line {
        left: -100%;
    }
}

section {
    padding-top: 2em;
    padding-bottom: 2em;

    h1.secHeading {
        text-transform: capitalize;
        text-align: center;
        color: var(--color-black);
        font-size: clamp(1.6em, 1.8vw + 0.5rem, 4.5em);
        margin-bottom: 1.5rem;
    }

    p.secSubHead {
        color: var(--color-brown);
        font-weight: bold;
        text-transform: capitalize;
        text-align: center;
        font-size: clamp(1em, 0.8vw + 0.3rem, 2.5em);
        margin: 0.5em 0 1.5em;
    }
}

.p-1 {
    padding: 0.5em !important;
}

.p-2 {
    padding: 1em !important;
}

.p-3 {
    padding: 1.5em !important;
}

.p-4 {
    padding: 2em !important;
}

.px-3 {
    padding-left: 1.5em !important;
    padding-right: 1.5em !important;
}

.px-4 {
    padding-left: 2em !important;
    padding-right: 2em !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}



#loadingScreen {
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    background-color: transparent;
    transition: 400ms ease-in-out;
    height: 100%;
    width: 100%;

    .box {
        height: 100%;
        width: 20%;
        background-color: var(--bg-cream);
    }

    .content {
        position: absolute;
        inset: 0;
        margin: auto;
        align-content: center;
        text-align: center;
    }
}



#overlay {
    position: fixed;
    background-color: rgba(22, 22, 21, 0.4);
    inset: 0;
    z-index: 100;
    height: 100vh;
    height: 100dvh;
    right: 100%;
    transition: right 400ms ease-in-out;

    &.show {
        right: 0;
    }
}




header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    background-color: var(--bg-secondary);
    padding: 0 min(3rem, 4%);
    height: var(--nav-height);

    .logo {
        height: 90%;

        img {
            height: 100%;
            object-fit: cover;
        }
    }


    .navBtn {
        text-transform: uppercase;
        margin-left: 2rem;
    }

    .menuControlBtn {
        border: none;
        outline: none;
        background: transparent;
        font-size: 1.75em;
        font-weight: 600;

        &.closeMenu {
            border: 1.5px solid black;
            border-radius: 50%;
            align-self: end;
            height: 2.7rem;
            width: 2.7rem;
            display: grid;
            place-items: center;
        }
    }
}

header nav#navmenu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: -webkit-fill-available;
    width: -moz-available;
    background-color: inherit;


    ul {
        display: flex;
        gap: 2rem;
        width: -webkit-fill-available;
        width: -moz-available;

        li a {
            font-weight: 500;
            font-size: 1.04em;
        }
    }


}


footer {
    position: relative;
}

footer .footerMain {
    background-color: var(--color-black);
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--text-white);
    padding: min(8vw, 3rem);

    a {
        color: inherit;
    }

    h4.headText {
        font-size: 1.4em;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .map {
        height: 15rem;
        background-color: var(--color-cream);
        width: min(95%, 25rem);
    }

    .footerInfo {
        display: flex;
        flex-wrap: wrap;
        flex-grow: 1;
        gap: 1.5rem;
        justify-content: space-around;

        ul {
            margin-top: 1rem;

            li {
                margin: 10px 0;
            }
        }

        p {
            margin-bottom: 5px;

            .hovLinePass_rev {
                display: inline-flex;
            }
        }

        .socials .social-icons {
            display: flex;
            gap: 1.5rem;
            margin-top: 1rem;

            a {
                font-size: 1.5rem;
                color: var(--text-white);
                display: inline-block;
            }
        }

    }
}

footer .footerBottom {

    margin: 0 auto;
    background: var(--color-blue);
    text-align: center;
    padding: 0.7em 1.5em;
    padding-top: 1.3em;
    width: 100%;
    box-shadow: 0px 0px 7px 1px var(--color-gray-mid);
    color: var(--text-white);
    font-weight: 500;

    nav.linkCont {
        display: flex;
        flex-wrap: wrap;
        gap: 0 1rem;
        justify-content: center;
        align-items: center;

        a:not(.btn) {
            color: inherit;
            font-size: 1.08em;
            margin: 0.8rem;
            text-wrap: nowrap;
            display: inline-flex;
        }
    }

    .brand {
        font-size: min(14vw, 6em);
        line-height: 1.05em;
        margin: 1.7rem 0;
        font-weight: 800;
    }

    .credit {
        font-size: 1.1em;
        padding: 1rem 0.5rem;

        a {
            color: var(--color-brown);
            font-weight: 700;
            text-decoration: underline;
        }
    }
}





@media (max-width: 768px) {
    header {
        .navBtn {
            width: 100%;
            margin: 2rem;
        }

        nav#navmenu {
            flex-direction: column;
            width: min(22rem, 80%);
            position: absolute;
            right: -100%;
            height: 100vh;
            z-index: 999;
            justify-content: start;
            top: 0;
            padding: 1rem 2rem;
            transition: 400ms ease-in-out;

            ul {
                flex-direction: column;
                margin-top: 1rem;

                li a {
                    font-size: 1.1em;
                    font-weight: 700;
                }
            }

            &.show {
                right: 0;
            }
        }
    }
}

@media (max-width: 600px) {
    .hideMobile {
        display: none !important;
    }

    footer .footerMain {
        .footerInfo {
            justify-content: normal;
        }
    }

    .footerInfo .socials {
        text-align: center;
    }
}


@media (min-width: 768px) {
    header .below_md_show {
        display: none !important;
    }

    .mra {
        margin-right: auto;
    }



}