@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
    --gold: #cbab6a;
    --darkgold: #886427;
    --lightgrey: #9b9994;
    --darkgrey: #16140C;
    --black: #000;
    --white: #fff;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--darkgrey);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    margin-top: .5rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
}

h1 {
    font-weight: 800;
}

.Normal {
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    color: var(--white);
    font-weight: 300;
}

.jumbo {
    font-size: 6rem;
}

.large {
    font-size: 4rem;
}

.gold {
    color: var(--gold) !important;
}

.w-90 {
    width: 90%;
}

p {
    font-size: 15px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--gold);
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

a:hover {
    text-decoration: none;
    color: var(--white);
}

a:visited {
    color: var(--gold);
}

a:visited:hover {
    text-decoration: none;
    color: var(--white);
}

.bi {
    font-size: 1.25em;
    padding: 0 10px;
    vertical-align: middle;
}

hr.goldhr {
    border-top: 1px solid var(--gold);
    width: 100px;
    margin-left: 10px;
}

hr.goldhr-center {
    border-top: 1px solid var(--gold);
    width: 150px;
    margin-left: auto;
    margin-right: auto;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.container-fluid .row {
    margin-right: 0;
    margin-left: 0;
}

.grecaptcha-badge {
    opacity: 0;
}

.PageType_Home #navbarmain,
.PageType_Home #HeroContainer {
    display: none;
}

/*------------------------------------------------*/
/* HEADER */
/*------------------------------------------------*/
#TopBanner {
    background-color: var(--gold);
    position: relative;
    z-index: 500;
    padding-top: 5px;
    padding-bottom: 5px;
    text-transform: uppercase;
}

#TopBanner p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--white);
    font-weight: 700;
}

#TopBanner p a {
    color: var(--white);
}

#TopBanner p a:hover {
    color: var(--white);
}

#TopBanner p a:visited {
    color: var(--white);
}

#TopBanner p a:visited:hover {
    color: var(--white);
}

#TopBanner .bi {
    font-size: 18px;
}

#TopBanner .white-button {
    padding: 0px 10px;
    margin-top: 0;
    margin-bottom: 0;
}

/*------------------------------------------------*/
/* NAVBAR */
/*------------------------------------------------*/

.navbar {
    padding: 0;
    letter-spacing: 1px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.bg-dark {
/*    padding-top: 1.5rem;
    padding-bottom: 1.5rem; until full site */
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: var(--darkgrey) !important;
}

.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

#dnn_dnnLOGO_imgLogo {
    max-height: 130px;
    margin-left: 0;
    position: absolute;
    top: 0;
    z-index: 100;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.nav-minimize #dnn_dnnLOGO_imgLogo {
    max-height: 100px;
}

/* until full site */
#navbarNav,
.navbar-toggler {
    display: none !important;
}

.nav-item {
    text-align: center;
}

.nav-link {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--white) !important;
    display: inline-block;
    text-decoration: none;
    line-height: 20px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.nav-link:hover {
    text-decoration: none;
    color: var(--gold) !important;
}

.nav-link:visited {
    color: var(--white);
}

.nav-link:visited:hover {
    text-decoration: none;
    color: var(--gold) !important;
}

.dropdown-menu {
    background-color: var(--lightgrey);
    margin: 0;
    min-width: 10rem;
}

.dropdown-menu .active {
    border-radius: 0px;
}

/*------------------------------------------------*/
/* HERO */
/*------------------------------------------------*/

#HeroDivider {
    max-width: 100px;
}

.hero-bg {
    object-fit: cover;
    width: 100%;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
}

.hero-bg {
    background-size: cover;
    background-position: center;
    height: 500px;
}


/* home */


.PageType_Home .hero-bg {
    background-image: url('/Portals/154/golf-vault-brandmark.png');
    background-size: 400px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #000;
    height: 600px;
}

/*  */

.PageType_Normal .hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .75) 100%), url('/portals/154/AdobeStock_160443822-2000.jpg');
    height: 600px;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.hero-text h1,
.hero-text h2,
.hero-text h3,
.hero-text h4,
.hero-text h5,
.hero-text h6 {
    color: var(--white);
    font-weight: 400;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
}

.hero-text p {
    margin-top: 0;
    margin-bottom: 0;
}

.hero-text h1 {
    font-weight: 800;
}

.hero-text h1 {
    font-size: 4rem;
    text-transform: uppercase;
}

.header-logo {
    max-width: 200px;
    width: 100%;
}

/*------------------------------------------------*/
/* MAIN CONTENT */
/*------------------------------------------------*/

#MainContent {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
#MainContent li {
    list-style-type: disc;
}

.white-button {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 30px;
    border: 2px solid var(--white);
    border-radius: 0px;
    font-weight: 300;
    background-color: rgba(0,0,0,.05);
    color: var(--white) !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.white-button:hover {
    background-color: var(--white);
    color: var(--black) !important;
    text-decoration: none;
}

.gold-button {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 30px;
    border-radius: 0px;
    font-weight: 300;
    background-color: var(--gold);
    border: none;
    color: var(--white) !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.gold-button:hover {
    background-color: var(--darkgold);
    color: var(--white) !important;
    text-decoration: none;
}

#MainContentBottom p {
    margin-top: 0;
    margin-bottom: 0;
}

/* home */

.PageType_Home #TopContent {
    padding-bottom: 1rem;
}

.PageType_Home #dnn_FullContentPaneNarrowTwo {
    border: 1px solid var(--gold);
    padding: 2rem .5rem;
    background: #0E0C03;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* form overrides */

.sub-widget .form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: .85rem;
    font-weight: 300;
    line-height: 1.5;
    color: var(--white);
    background-color: transparent;
    background-clip: padding-box;
    margin-top: 10px;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.sub-widget .form-control:focus {
    color: var(--white);
    background-color: transparent;
    border-color: var(--white);
    outline: 0;
    box-shadow: none;
}

.sub-widget .form-control::placeholder {
    color: #ececec;
    font-weight: 300;
}

.sub-widget #signup_button {
    font-weight: 800;
}

/*------------------------------------------------*/
/* FOOTER */
/*------------------------------------------------*/

footer {
    background-color: var(--darkgrey);
    border-top: var(--lightgrey);
    padding-top: 2rem;
    padding-bottom: 2rem;
}

#FooterRowBottom p {
    font-size: .85rem;
}

/*------------------------------------------------*/
/* MEDIA QUERIES */
/*------------------------------------------------*/

@media screen and (min-width: 996px) {

    .dropdown-menu {
        border-radius: 0;
    }

    .hero-text h1 {
        font-size: 4.5rem;
    }

    .mainContentRow {
        padding-right: 5% !important;
        padding-left: 5% !important;
    }
}

@media screen and (max-width: 997px) {

    #dnn_dnnLOGO_imgLogo {
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    .nav-minimize #dnn_dnnLOGO_imgLogo {
        max-height: 40px;
    }

    .navbar-toggler {
        margin: 10px;
    }

    .nav-item {
        margin: 0;
        text-align: center;
    }

    .header-logo {
        max-width: 150px;
    }

    .jumbo {
        font-size: 4rem;
    }

    .large {
        font-size: 2rem;
    }

    .PageType_Home #dnn_FullContentPaneNarrowOne {
        margin-left: .5rem !important;
        margin-right: .5rem !important;
    }
}

@media screen and (max-width: 768px) {
    .h1, h1 {
        font-size: 2rem;
    }

    .h2, h2 {
        font-size: 1.5rem
    }

    .h3, h3 {
        font-size: 1.5rem;
    }

    .h4, h4 {
        font-size: 1.25rem
    }

    .h5, h5 {
        font-size: 1.15rem
    }

    .h6, h6 {
        font-size: 1.1rem
    }

    #HeroDivider {
        max-width: 10px;
    }

    .PageType_Home .hero-bg {
        height: 350px;
    }

    .hero-text h1 {
        font-size: 2.25rem;
    }

    .hero-text h3 {
        font-size: 1.25rem;
    }

    .header {
        font-size: 1.75rem;
    }

}
