@charset "utf-8";
/* CSS Document */

html {font-size: 16px}

body
{
    font-size: 1rem;
    margin: 0;
}

header, main, footer, section, article {display: block;}

* {box-sizing: border-box;}

img, video {vertical-align: top;}

/* Utility Classes */
.site-bg {background-color: #4b4b4b;}

.display-block {display: block;}

.display-inline-block {display: inline-block;}

.display-none {display: none;}

/*.width-100 {width: 100%;}*/

.full-width {width: 100%;}

.clearfix::after
{
    clear: both;
    content: "";
    display: block;
}

.hidden
{
    position: absolute;
    left: -9999px;
    top: -9999px;
}

.overflow-hidden {overflow: hidden;}

.flex {display: flex;}

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

.flex-wrap {flex-wrap: wrap;}

.flex-no-wrap {flex-wrap: nowrap;}

/*This is a CSS trick used for flex box in order to right align a single or group of flex item(s) at the end
of the flex-order. This is needed because multiple flex items on the main axis are treated as a group.*/
.flex-item-right-align {margin-left: auto;}

.flex-justify-content-center {justify-content: center;}

.justify-content-flex-end {justify-content: flex-end;}

.justify-content-space-between {justify-content: space-between;}

.justify-content-space-around {justify-content: space-around;}

.align-itms-center {align-items: center;}

.align-self-center {align-self: center;}

.site-sec-width {width: 92%;}

.site-margin-bttm {margin-bottom: 3em;}

.no-margin {margin: 0;}

.no-margin-bttm {margin-bottom: 0;}

.no-margin-top {margin-top: 0;}

.margin-auto {margin: auto;}

.margin-lr-auto
{
    margin-left: auto;
    margin-right: auto;
}

.sec-margin-bttm {margin-bottom: 2rem;}

/*.site-padding
{
    padding-left: 1rem;
    padding-right: 1rem;
}*/

/*.primary-sec-width
{
    margin-left: auto;
    
}*/

.no-padding {padding: 0;}

.pos-absolute {position: absolute;}

.pos-relative {position: relative;}

.absolute-vert-center
{
    top: 50%;
    transform: translateY(-50%);
}

.absolute-horz-center
{
    left: 50%;
    transform: translateX(-50%);
}

.absolute-vert-horz-center
{
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.site-font {font-family: 'Libre Baskerville', serif;}

.font-style-normal {font-style: normal;}

.font-weight-base {font-weight: 400;}

.font-weight-bold {font-weight: 700;}

.text-justify {text-align: justify;}

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

.text-left {text-align: left;}

.text-right {text-align: right;}

.text-decoration-none {text-decoration: none;}

.bg-white {background-color: #ffffff;}

.bg-kl-brown {background-color: #cfc9bd;}

.bg-dark-grey {background-color: #424242;}

.bg-darker-grey {background-color: #383838;}

.color-white {color: #ffffff;}

.color-black {color: #000000;}

.list-width-250 {width: 250px;}

.no-list-style
{
    list-style: none;
    padding: 0;
    margin: 0;
}

.no-border {border: 0;}

.border-radius-circle {border-radius: 100%;}

.li-bttm-margin-1 {margin-bottom: 0.5em;}

.link-2, .link-2:active, .link-2:visited
{
    /*text-decoration: none;
    color: #ffffff;
    position: relative;*/
    transition: color 0.5s ease;
}

.link-2:after
{
    color: #ffffff;
    content: "";
    border-bottom: 1px solid #fff;
    position: absolute;
    width: 101%;
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
    transition: color 0.5s ease, width 0.5s ease;
}

.link-2:hover, .link-2:focus, .link-2:hover:after, .link-2:focus:after
{
    color: #CFC9BD;
    transition: color 0.5s ease, width 0.5s ease;
    width: 80%;
}

/***** Header Styles *****/
.site-logo-container
{
    align-items: center;
    justify-content: center;
    /*padding: 0.5vh 0;*/
    padding: 0.3rem 0;
    width: 36%;
}

.site-logo-picture {width: 35%;}

.hamberger
{
    align-self: center;
    margin-right: 1.5rem;
}

.hamberger-item {fill: #fff;}

.hamberger:hover + .site-nav
{
    max-height: 1500px;
    visibility: visible;
    transition: max-height 1s ease 0s, visibility 1s ease 0s;
}

.site-nav
{
    /*background-color: #606060;*/
    background-color: #3C3C3C;
    overflow: hidden;
    padding: 0.5em 0;
    position: absolute;
    top: 100%;
    transition: max-height 0.5s ease 0s, visibility 0.5s ease 0s;
    z-index: 10;
    max-height: 0px;
    visibility: hidden;
}

.site-nav-list
{
    justify-content: center;
}

.site-nav-item
{
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
    border-block-end-style: none;
    font-size: 1.1em;
    text-align: center;
    
    background-color: transparent;
    box-shadow: inset 0 0 0px 0px rgb(0 0 0 / 0%);
    /*outline: 0px solid rgba(255,255,255,0.05);*/
    transition: box-shadow 0.3s linear 0s, background-color 0.3s linear 0s, outline 0.3s linear 0s;
    width: 80%
}

.site-nav-item:hover, .site-nav-item:focus
{
    background-color: #cfc9bd;
    box-shadow: 0 0 5px 2px rgb(0 0 0 / 40%);
    /*box-shadow: inset 0 0 6px 2px rgb(0 0 0 / 40%);
    outline: 1px solid rgba(255,255,255,0.05);
    background-color: #424242;
    transition: box-shadow 0.3s linear 0s, background-color 0.3s linear 0s, outline 0.3s linear 0s;*/
}

.site-nav-link
{
    padding: 0.8rem 0;
    text-shadow: 0 0 0 rgb(0 0 0 / 0%);
    transition: text-shadow 0.1s ease 0s;
}

.site-nav-item:hover > .site-nav-link, .site-nav-item:focus > .site-nav-link
{
    text-shadow: 0 0 6px rgb(0 0 0 / 40%);
    transition: text-shadow 0.1s ease 0s;
}

.header-img
{
    margin: 0 auto;
    /*max-width: 600px;*/
}

/***** Main Styles *****/
.heading-margin-xsm {margin-bottom: 0.5em;}

.heading-margin-sm {margin-bottom: 0.8em;}

.heading-margin-base {margin-bottom: 1em;}

.heading-margin-lg {margin-bottom: 1.5em;}

/*.heading-indent {margin-left: 0.5em;}*/

.h1-primary {font-size: 1.8em;}

.h1-sm {font-size: 1.6em}

.h1-small-text
{
    font-size: 0.5em;
    padding-bottom: 0.5em;
}

.h2-primary {font-size: 1.5em;}

.h2-primary-margin-bttm {margin-bottom: 1.5em;}

.h3-primary {font-size: 1.2em;}

.primary-paragraph
{
    font-weight: normal;
    line-height: 1.7em;
}

.fine-print {font-size: 0.8em;}

.banner
{
    height: 60vh;
    min-height: 400px;
}

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

.overlap-container-base-1
{
    max-width: 500px;
    outline: 2px solid #fff;
    text-shadow: 0 0 4px rgb(0 0 0 / 50%);
    width: 90%;
}

.overlap-container-1
{
    height: 100%;
    padding: 1em;
}

.overlap-container-2
{
    background-color: rgba(0,0,0,0.7);
    height: 90%;
    max-height: 400px;
    /*min-height: 350px;*/
    padding: 0 0.5em;
    transition: background-color 0.5s linear;
}

.overlap-container-2:focus, .overlap-container-2:hover
{
    background-color: rgba(0,0,0,0.3);
    transition: background-color 0.5s linear;
}

.overlap-container-3
{
    background-color: rgba(0,0,0,0.4);
    /*max-height: 46vh;*/
    padding: 4em 2em;
}

.overlap-container-4
{
    background-color: rgba(0,0,0,0.7);
    height: 80%;
    /* max-height: 90%; */
    padding: 1em;
    transition: background-color 0.5s linear;
    width: 86%;
}

.overlap-container-4:focus, .overlap-container-4:hover
{
    background-color: rgba(0,0,0,0.3);
    transition: background-color 0.5s linear;
}

.ad-font-size-lrg {font-size: 1em;}

.header-tagline
{
    background-color: rgba(0,0,0,0.4);
    box-shadow: 0 0 15px 15px rgb(0 0 0 / 40%);
    font-size: 1.2em;
    /*left: 50%;*/
    min-width: 260px;
    max-width: 400px;
    padding: 0 0.5em;
    /*position: absolute;*/
    text-shadow: 0 0 10px rgb(0 0 0 / 50%);
    /*top: 5%;
    transform: translate(-50%, 0%);*/
}

.header-tagline-item {margin-bottom: 0.5rem;}

/******************** Widget Styles Start*********************/
.booking-widget
{
    background-color: rgba(255,255,255,0.2);
    /*background-color: rgba(0,0,0,0.3); */
    border: 1px solid rgba(0,0,0,0.4);
    box-shadow: 0 0 10px 5px rgb(0 0 0 / 30%);
    display: none;
    /*position: absolute;
    right: 3%;*/
    width: 300px;
}

.booking-widget-padding {padding: 0 1rem 1rem 1rem;}

.booking-widget-heading
{
    background-color: rgba(0,0,0,0.6);
    padding: 0.4em 0;
}

.form-section-margin-bttm-sm {margin-bottom: 1rem;}

.form-section-margin-bttm-base {margin-bottom: 1.5rem;}

.form-section-margin-bttm-xl {margin-bottom: 2.5rem;}

.booking-widget-label {text-shadow: 0 0 4px rgb(0 0 0 / 70%);}

.form-field-shadow-1 {box-shadow: 0 0 5px 6px rgb(0 0 0 / 30%);}

.form-field-error {box-shadow: 0 0 4px 3px red;}

.form-input-1
{
    font-size: 1em;
    padding: 0.3rem 0.5rem;
}

.form-input-1:focus {outline: none;}

.widget-submit
{
    font-size: 1.2em;
    padding: 0.5em 0
}
/******************** Widget Styles End*********************/

/******************** Form Styles Start*********************/
.kc-form
{
    box-shadow: 0 0 8px 8px rgba(0,0,0,0.4);
    max-width: 900px;
    padding: 1em;
    width: 100%;
}

.form-bttn-1
{
    cursor: pointer;
    font-size: 1.2em;
    padding: 1em 0;
    width: 100%;
}
/******************** Form Styles End*********************/

/***********Start Datepicker Style Overrides*********/
.ui-widget
{
    font-family: 'Libre Baskerville', serif;
    font-size: 1em;
    margin-top: 0.1em;
}

.ui-widget.ui-widget-content, .ui-datepicker-header {border-radius: unset;}

.ui-datepicker .ui-datepicker-title {line-height: 1.5em;}

.ui-datepicker table {font-size: 0.95em}

.ui-datepicker td a
{
    padding: 0.3em 0.1em;
    text-align: center;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {font-weight: 700;}
/**End Datepicker Style Overrides**/

.cta-container-1
{
    align-content: center;
    flex-grow: 1;
    flex-wrap: wrap;
    gap: 2em 1em;
    padding: 2em 1em;
}

.cta-container-1:before
{
    background-color: #cfc9bd;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -10;
}

.cta-container-2
{
    align-content: center;
    flex-grow: 1;
    flex-wrap: wrap;
    gap: 2em 1em;
}

.cta-container-2:before
{
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -10;
}

.cta-item-1
{
    box-shadow: 0 0 5px 3px rgb(0,0,0,0.3);
    max-width: 400px;
    padding: 1em;
}

.bttn-1
{
    /*background-color: rgba(255,255,255,0.2);*/
    background-color: rgba(0,0,0,0.4);
    cursor: pointer;
    /*bottom: 3em;*/
    /*font-size: 1.1em;*/
    /*left: 50%;*/
    max-width: 200px;
    padding: 0.5em;
    /* position: absolute;*/
    outline: 2px solid #fff;
    /*transform: translateX(-50%);*/
    width: 60%;
}

/*.bttn-1:before
{
    content: "";
    height: 100%;
    left: 0%;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}*/

.bttn-2
{
    box-shadow: 0 0 2px 2px #4b4b4b;
    cursor: pointer;
    /*border-radius: 4px;*/
    font-weight: 700;
    padding: 0.5em 0;
    width: 50%;
    z-index: 10;
}

.bttn-3
{
    background-color: rgba(0,0,0,0.5);
    cursor: pointer;
    font-size: 1.1em;
    max-width: 300px;
    padding: 0.5em;
    outline: 2px solid #fff;
    width: 50%;
}

.room-container
{
    padding-bottom: 2em;
    padding-left: 1em;
    padding-right: 1em;
    padding-top: 2em;
}

.room-content-wrap
{
    gap: 2em;
}

.room-img-container
{
    /*margin-bottom: 2em;*/
    max-width: 600px;
    box-shadow: 0 0 8px 2px rgb(0 0 0 / 40%);
}

.room-description-wrap {gap: 1.5em;}

.img-text-wrap
{
    box-shadow: 0 0 5px 5px rgba(0,0,0,0.3);
    float: none;
    margin: 0 auto 2em auto;
    width: 260px;
}

.img-text-wrap-2
{
    float: none;
    margin: 0 auto 2em auto;
    width: 260px;
}

.map-container
{
    height: 0;
    padding-bottom: 50%;
}

.map
{
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
}

/***** Fix the promo style class later! *****/
.promo-item
{
    max-width: 600px;
    outline: 2px solid #ffffff;
    outline-offset: -2px;
}

/***** Fix the li-item-1 style class to be more utility first, later! *****/
.li-item-1
{
    line-height: 1.7em;
    margin-bottom: 1em;
}

/***** Fix this later! *****/
.special-container-fix-later {gap: 2em 1em;}

/***** Fix this later! *****/
.special-item-fix-later
{
    width: 80%;
    padding: 0.5em 0.3em 0.5em 0.3em;
    outline: 1px solid rgba(255,255,255,1);
}

.club-list-item
{
    gap: 1em;
    margin-bottom: 1.5em;
}

/***** Footer Styles *****/
.site-footer
{
    gap: 2rem;
    padding: 3rem 1rem;
}

.footer-logo
{
    display: block;
    margin: auto;
    max-width: 420px;
    width: 80%;
}

.footer-nav-item
{
    border-left: 0px;
    border-right: 0px;
    padding: 0.5em;
    transition: border-left 0.9s linear 0s, border-right 0.9s linear 0s;
    width: 55%;
}

.footer-nav-item:focus, .footer-nav-item:hover
{
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    transition: border-left 0.9s linear 0s, border-right 0.9s linear 0s;
}

/***** Media Queries *****/
@media screen and (min-width: 500px)
{
    .ad-font-size-lrg {font-size: 1em;}
    
    /*.footer-logo {width: 60%;}*/
}

@media screen and (min-width: 600px)
{
    /*This is a media query hook used to hide elemnets at 1200px or more screen widths.
    It can be thought of as a utility class for media queries.*/
    .mq-600-dis-none {display: none;}
    
    /*This is a media query hook used to display elemnets at 1200px or more screen widths.
    It can be thought of as a utility class for media queries.*/
    .mq-600-dis-block {display: block;}
    
    .site-logo-container {width: 32%;}
    
    .site-logo-picture {width: 32%;}
    
    .overlap-container-1 {padding: 1.5em 1em;}
    
    .mq-ad-container {width: 80%;}
    
    .ad-font-size-lrg {font-size: 1.2em;}
    
    .cta-item-1 {max-width: 300px;}
    
    .bttn-1
    {
        padding: 0.75em 0.5em;
        width: 50%;
    }
    
    .special-item-fix-later {width: 45%;}
    
    .site-footer {justify-content: space-between;}
    
    /*.footer-logo {width: 50%;}*/
    
    .mq-footer-container {flex-direction: row;}
}

@media screen and (min-width: 700px)
{
    .overlap-container-4 {width: 70%;}
}

@media screen and (min-width: 900px)
{
    .sec-margin-bttm {margin-bottom: 2.5rem;}
    
    .site-logo-container {width: 27%;}
    
    .site-logo-picture {width: 30%;}
    
    .hamberger {margin-right: 2rem;}
    
    .h1-primary {font-size: 2.2em;}
    
    .h2-primary {font-size: 1.8em;}
    
    .overlap-container-1 {padding: 2.5em 1em;}
    
    .overlap-container-4 {width: 86%;}
    
    .mq-ad-container {width: 100%;}
    
    .ad-font-size-lrg {font-size: 1em;}
    
    .header-tagline {font-size: 1.4em;}
    
    .bttn-1 {font-size: 1.1em;}
    
    .room-container
    {
        padding-left: 2em;
        padding-right: 2em;
    }
    
    .img-text-wrap, .img-text-wrap-2
    {
        float: left;
        margin: 0 2em 1em 0;
    }
    
    .cta-container-2 {flex-wrap: nowrap;}
    
    .special-item-fix-later {width: 31%;}
    
    .kc-form
    {
        padding: 2em;
        width: 90%;
    }
    
    .form-bttn-1
    {
        padding: 0.5em 0;
        width: 50%;
    }
    
    .club-list-item {margin-bottom: 2em;}
    
    .site-footer
    {
        flex-direction: row;
        gap: 1.5rem;
        /*padding: 3rem 2rem;*/
    }
    
    .mq-900-mardin-bttm-none {margin-bottom: 0;}
    
    .footer-logo {width: 84%;}
}

@media screen and (min-width: 1200px)
{
    /*This is a media query hook used to hide elemnets at 1200px or more screen widths.
    It can be thought of as a utility class for media queries.*/
    .mq-1200-dis-none {display: none;}
    
    /*This is a media query hook used to display elemnets at 1200px or more screen widths.
    It can be thought of as a utility class for media queries.*/
    .mq-1200-dis-block {display: block;}
    
    .site-sec-width {width: 86%;}
    
    .mq-header-banner
    {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .mq-header-banner-container {padding: 0 1rem;}
    
    .site-logo-container
    {
        align-self: flex-start;
        background-color: transparent;
        padding: 0;
    }
    
    .site-logo-picture {width: 100%;}
    
    .hamberger {display: none;}
    
    .site-nav
    {
        bottom: 0;
        max-height: none;
        overflow: visible;
        padding: 0;
        position: relative;
        top: auto;
        visibility: visible;
    }
    
    /*.site-nav-list {justify-content: space-between;}*/
    
    .site-nav-item
    {
        border: 0;
        border-block-end-style: unset;
        font-size: 1em;
        width: 14%;
    }
    
    /*.mq-nav-item {display: none;}*/
    
    .site-nav-link {padding: 0.8rem 0.3rem;}
    
    .h1-primary {text-align: left;}
    
    .header-tagline
    {
        font-size: 1.8em;
        line-height: 2em;
    }
    
    .overlap-container-1
    {
        flex-direction: row;
        /*justify-content: space-between;*/
        padding: 2.5em 1.5em;
    }
    
    .overlap-container-2
    {
        left: 3%;
        transform: translate(0%, -50%);
    }
    
    .overlap-container-3
    {
        left: 3%;
        transform: translate(0%, -50%);
    }
    
    .ad-font-size-lrg {font-size: 1.2em;}
    
    .booking-widget {display: block;}
    
     .kc-form
    {
        padding: 2em;
        width: 70%;
    }
    
    .form-bttn-1
    {
        padding: 1em 0;
        width: 50%;
    }
    
    .room-container
    {
        padding-bottom: 3em;
        padding-top: 3em;
    }
    
    .club-list-item {padding-left: 2.5em;}
    
    .site-footer {padding: 3rem 3rem;}
}

@media screen and (min-width: 1500px)
{
    /*This is a media query hook used to hide elemnets at 1200px or more screen widths.
    It can be thought of as a utility class for media queries.*/
    .mq-1500-dis-none {display: none;}
    
    /*This is a media query hook used to display elemnets at 1200px or more screen widths.
    It can be thought of as a utility class for media queries.*/
    .mq-1500-dis-block {display: block;}
    
    .mq-header-banner-container {padding: 0 1.5rem;}
    
    .site-logo-container {width: 20%;}
    
    .overlap-container-1 {padding: 2.5em 2.5em;}
    
    .room-content-wrap
    {
        align-items: flex-start;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .room-img-container {width: 45%;}
    
    .room-description-wrap {width: 55%;}
    
    .special-item-fix-later {width: 30%;}
    
    .site-footer {padding: 3rem 5rem;}
    
    .footer-logo {width: 84%;}
}

@media screen and (min-width: 1800px)
{
    
}







