@charset "utf-8";
/* CSS Document */
/* source-sans-3-regular - latin */
/* source-sans-3-300 - latin */
.formcol { /*display:flex;
    flex: 0 0 auto;*/
    width: 100%;  position: relative; margin:auto;
}
.enquiry-form {
    border: 1px solid rgba(255, 255, 255, .99);
    padding:50px 45px; position: relative; 
}
.appointment-successa {
    position: absolute;
    width: 100%;
    /* height: 60px; */
    background: rgb(133, 87, 63);
    /* border: 10px solid #4a1a10; */
    color: #8d0000;
    font-size: 15px;
    letter-spacing: .5px;
    cursor: pointer;
    transition: .3s ease;
    /* transform: translateY(50%); */
    left: 0;
    padding: 10px;
    top: -50px;
}

.appointment-successa strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px; color: #fff !important;
}

.appointment-successa p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5; color: #fff !important;
}

/* =========================================================
   APPOINTMENT FORM
========================================================= */

.appt-group {
    position: relative;
    margin-bottom: 22px;
}

.appt-label {
    display: block;
    margin-bottom: 8px;
    color: #fffdf6;
    font-size: 18px;
  font-family:"Times New Roman", Times, serif;
}

.appt-input,
.appt-textarea {
    width: 100%;
   border: 1px solid rgb(215 206 197 / 54%);
    /*background: #fff;*/ background: transparent;
    color: #fffdf6;
    padding: 13px 15px;
    border-radius: 10px;
    outline: none;
    transition: .25s ease; font-size:18px;
}

.appt-input {
    height: 40px;
}

.appt-textarea {
    min-height: 70px;
    resize: vertical;
}

.appt-input:focus,
.appt-textarea:focus {
    border-color: #7a4936;
    box-shadow: 0 0 0 3px rgba(122,73,54,.08);
}

.appt-input.is-invalid,
.appt-textarea.is-invalid {
    border-color: #dc3545;
    background: #fffafa;
}




/* =========================================================
   APPOINTMENT PICKER
========================================================= */

.appt-picker-wrap {
    position: relative; z-index:99999;
}
 
 
 /*
.appt-picker {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 5000;
    display: none;
    background: #fff;
    border: 1px solid #ddd2c8;
    box-shadow: 0 15px 45px rgba(0,0,0,.15);
} */

.appt-picker {
    position: absolute;
    left: 0;
    right: 0;

    /* Always open ABOVE the field */
    bottom: calc(100% + 8px);
    top: auto;

    z-index: 5000;

    display: none;

    background: #fff;
    border: 1px solid #ddd2c8;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .15);

    max-height: calc(100vh - 30px);
    overflow-y: auto;
}

.appt-picker.show {
    display: block;
}

.appt-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #f7f1eb;
    color: #4b2b20;
}

.appt-calendar-header strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
}

.appt-cal-btn {
    width: 35px;
    height: 35px;
    border: 0;
    background: transparent;
    color: #4b2b20;
    cursor: pointer;
    font-size: 20px;
}

.appt-calendar {
    padding: 15px;
}

.appt-weekdays,
.appt-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.appt-weekdays div {
    text-align: center;
    font-size: 11px;
    color: #999;
    padding: 7px 0;
}

.appt-day {
    height: 40px;
    border: 0;
    background: #fff;
    cursor: pointer;
    border-radius: 2px;
    color: #444;
}

.appt-day:hover {
    background: #eee4db;
}

.appt-day.disabled {
    color: #ccc;
    cursor: not-allowed;
    background: #fafafa;
}

.appt-day.selected {
    background: #6b3828;
    color: #fff;
}

.appt-time-panel {
    display: none;
    padding: 18px;
}

.appt-time-panel.show {
    display: block;
}

.appt-time-title {
    margin-bottom: 14px;
    color: #4b2b20;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
}

.appt-time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.appt-time-btn {
    min-height: 40px;
    border: 1px solid #ddd2c8;
    background: #fff;
    color: #4b2b20;
    cursor: pointer;
    font-size: 13px;
}

.appt-time-btn:hover {
    background: #6b3828;
    color: #fff;
    border-color: #6b3828;
}

.appt-picker-close {
    width: 100%;
    border: 0;
    border-top: 1px solid #eee;
    padding: 10px;
    background: #faf7f4;
    color: #777;
    cursor: pointer;
}

/* =========================================================
   ERROR TOOLTIP
========================================================= */

.field-error {
    position: absolute;
    left: 0;
    top: calc(100% + 7px);
    z-index: 3000;
    display: none;
    max-width: 320px;
    padding: 9px 12px;
    background: #dc3545;
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.4;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

.field-error.show {
    display: block;
}

.field-error::before {
    content: "";
    position: absolute;
    left: 14px;
    top: -6px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #dc3545;
}


/* =========================================================
   SUCCESS POPUP
========================================================= */

.success-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.62);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 99999;
}

.success-popup-overlay.show {
    display: flex;
}

.success-popup {
    width: 100%;
    max-width: 430px;
    background: #fff;
    padding: 42px 30px 30px;
    text-align: center;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 25px 80px rgba(0,0,0,.35);
    animation: successPopupIn .3s ease;
}

@keyframes successPopupIn {

    from {
        opacity: 0;
        transform: translateY(20px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

.success-popup-close {
    position: absolute;
    top: 10px;
    right: 13px;
    width: 35px;
    height: 35px;
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    color: #777;
    cursor: pointer;
}

.success-popup-close:hover {
    color: #222;
}

.success-popup-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #eaf7ed;
    border: 2px solid #58a967;
    color: #329344;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: bold;
}

.success-popup h3 {
    margin: 0 0 12px;
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 400;
    color: #4b2b20;
}

.success-popup p {
    margin: 0 auto 25px;
    max-width: 330px;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.success-popup-button {
    min-width: 120px;
    height: 44px;
    border: 0;
    background: #6b3828;
    color: #fff;
    padding: 0 25px;
    cursor: pointer;
    border-radius: 3px;
}

.success-popup-button:hover {
    background: #4b281d;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    

    .appointment-section,
    .booking-section {
        padding: 60px 15px;
    }

    .appointment-card {
        padding: 25px 18px;
    }

    .appointment-card h2 {
        font-size: 30px;
    }

    .appt-time-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .field-error {
        max-width: 280px;
    }

}
/* =========================================================
   BANQUET SLIDER
   HALF LEFT + FULL CENTER + HALF RIGHT
========================================================= */

.borimg{position:relative; text-align:center; width:100%;  display: block;
  margin-left: auto;
  margin-right: auto; padding-bottom: 25px;}
  .borimg img{ text-align:center; margin-left: auto;
  margin-right: auto;}
.textcent{text-align:center; margin:auto;}
.pad20b{padding-bottom:20px;}
.linehrf {
  width: 100%; max-width:60%;
  height: 1px;
  background: #414141;
  position: relative;
  margin-bottom:40px;
   margin-top:40px;
}

.linehrf::before,
.linehrf::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid #414141;
  background: #414141;
  transform: rotate(45deg);
  top: -4px;
}

.linehrf::before {
  left: 0;
}

.linehrf::after {
  right: 0;
} 
.banquet-slider-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0 110px;
}

.banquetSwiper {
    width: 100%;
  /*  overflow: visible !important;*/
 
    overflow: visible !important;
 
}

.banquetSwiper .swiper-wrapper {
    align-items: center;
}


/* =========================================================
   SLIDE
========================================================= */

.banquet-slide {
    position: relative;
 width: auto !important;
    /* IMPORTANT */
     
height: auto;
   /* height: 420px;*/

    flex-shrink: 0;

    overflow: visible;

    transform: scale(.88);

    opacity: .55;

    z-index: 1;

    transition:
        transform .6s ease,
        opacity .6s ease;
}


/* CENTER SLIDE */

.banquetSwiper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    z-index: 10;
}


/* =========================================================
   IMAGE
========================================================= */

.banquet-slide img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    vertical-align: middle;
}


/* =========================================================
   OVERLAY
========================================================= */

.banquet-overlay {
    position: absolute;

    left: 50%;
    bottom: 0;

    width: 80%;
    max-width: 650px;

    padding: 28px 30px;

    background: #fffdf6;
    color: #414141;

    text-align: center;

    transform: translate(-50%, 50%);

    z-index: 20;

    box-sizing: border-box;
}

.banquet-overlay h3 {
    margin: 0 0 7px;

    font-family: 'Playfair Display SC', serif;

    font-size: 32px;
    font-weight: 400;

    line-height: 1.2;

    text-transform: uppercase;
}
.banquet-overlay h4 {
    margin: 0 0 7px;

    font-family: 'Playfair Display SC', serif;

    font-size: 28px;
    font-weight: 400;

    line-height: 1.2;

    text-transform: uppercase;
}
.banquet-overlay p {
    margin: 0;

    font-family: 'Source Sans 3', sans-serif;

    font-size: 22px;
    line-height: 1.4;

    letter-spacing: .2px;

    text-transform: uppercase;
}

.banquet-overlay a {
    display: inline-block;

    margin-top: 8px;

    font-family: 'Source Sans 3', sans-serif;

    font-size: 22px;

    text-transform: uppercase;

    text-decoration: none;

    cursor: pointer; color: #414141 !important; 
}


/* =========================================================
   ARROWS
========================================================= */

.banquet-prev,
.banquet-next {
    position: absolute;

    top: 50%;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #4a1a10;

    background: #fff;

    color: #4a1a10;

    cursor: pointer;

    z-index: 50;

    transform: translateY(-50%);

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.banquet-prev {
    left: 25px;
}

.banquet-next {
    right: 25px;
}

.banquet-prev:hover,
.banquet-next:hover {
    background: #40120d;
    color: #fff;

    transform:
        translateY(-50%)
        scale(1.08);
}


/* =========================================================
   DESKTOP
   1201px+
========================================================= */

@media (min-width:1201px) {

    .banquet-slide {
        width: 58% !important;
        height: 440px;
    }

    .banquet-overlay {
        width: 78%;
    }
}


/* =========================================================
   992px - 1200px

   HALF LEFT
   FULL CENTER
   HALF RIGHT
========================================================= */

@media (min-width:992px) and (max-width:1200.98px) {

    .banquet-slider-wrap {
        padding-top: 20px;
        padding-bottom: 105px;
    }

    .banquet-slide {
        width: 58% !important;
        height: 400px;

        transform: scale(.88);
        opacity: .55;
    }

    .banquetSwiper .swiper-slide-active {
        transform: scale(1);
        opacity: 1;
    }

    .banquet-overlay {
        width: 80%;
        padding: 24px 25px;
    }

    .banquet-overlay h3 {
        font-size: 28px;
    }
.banquet-overlay h4 {
 

    font-size: 22px;
  
}
    .banquet-overlay p {
        font-size: 20px;
    }

    .banquet-overlay a {
        font-size: 20px;
    }

    .banquet-prev,
    .banquet-next {
        width: 45px;
        height: 45px;
    }

    .banquet-prev {
        left: 15px;
    }

    .banquet-next {
        right: 15px;
    }
}


/* =========================================================
   576px - 991px
========================================================= */

@media (min-width:576px) and (max-width:991.98px) {

    .banquet-slider-wrap {
        padding-bottom: 100px;
    }

    .banquet-slide {
        width: 58% !important;
        height: 390px;

        transform: scale(.88);
        opacity: .55;
    }

    .banquetSwiper .swiper-slide-active {
        transform: scale(1);
        opacity: 1;
    }

    .banquet-overlay {
        width: 82%;
        padding: 22px 20px;
    }

    .banquet-overlay h3 {
        font-size: 25px;
    }
.banquet-overlay h4 {
 

    font-size: 20px;
  
}
    .banquet-overlay p {
        font-size: 18px;
    }

    .banquet-overlay a {
        font-size: 18px;
    }

    .banquet-prev,
    .banquet-next {
        width: 42px;
        height: 42px;
    }

    .banquet-prev {
        left: 12px;
    }

    .banquet-next {
        right: 12px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:575.98px) {

    .banquet-slider-wrap {
        padding:
            15px 0 100px;
    }

    .banquet-slide {
        width: 100% !important;
        height: 360px;

        transform: scale(.90);
        opacity: .55;
    }

    .banquetSwiper .swiper-slide-active {
        transform: scale(1);
        opacity: 1;
    }

    .banquet-overlay {
        width: 84%;

        padding:
            20px 16px;
    }

    .banquet-overlay h3 {
        font-size: 23px;
    }
.banquet-overlay h4 {
 

    font-size: 20px;
  
}
    .banquet-overlay p {
        font-size: 17px;
    }

    .banquet-overlay a {
        font-size: 17px;
    }

    .banquet-prev,
    .banquet-next {
        width: 40px;
        height: 40px;
    }

    .banquet-prev {
        left: 8px;
    }

    .banquet-next {
        right: 8px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width:380px) {

    .banquet-slide {
        width: 100% !important;
        height: 330px;
    }

    .banquet-overlay {
        width: 88%;
    }

    .banquet-overlay h3 {
        font-size: 21px;
    }
.banquet-overlay h4 {

 

    font-size: 28px;
  
}
    .banquet-overlay p {
        font-size: 15px;
    }

    .banquet-overlay a {
        font-size: 15px;
    }
}
 
.banquet-prev:hover .arrow-leftdf {
    border-right: 12px solid #fff !important;
}
.banquet-next:hover .arrow-rightdf {
    border-left: 12px solid #fff !important;
}
.arrow-rightdf {
  width: 0; 
  height: 0; 
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  
  border-left: 12px solid #4a1a10;
}
.arrow-leftdf {
  width: 0; 
  height: 0; 
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  
  border-right: 12px solid #4a1a10;
}
.home-section1 .rest-btn.style2 {
    background-color: transparent;
    border: solid 1px #000;
}
.rest-btn:hover{  color: #fff;
    box-shadow: rgb(17 17 26 / 5%) 0  4px 16px, rgb(17 17 26 / 5%) 0 8px 32px;
} 
.rest-home-content .rest-btn:hover.style2 {
 
    border: solid 1px #000;
}
.rest-btn:hover:after {
    opacity: 1;
    height: 100%;
    width: 100%;
}
.rest-btn:hover:before {
    opacity: 1;
    height: 100%;
    width: 30%;
}
.rest-btn::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 0;
    width: 0;
    opacity: 0;
    transition: .5s;
    z-index: -1;
    background-color: #4a1a10;}
	.rest-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    height: 0;
    width: 0;
    transition: .5s;
    z-index: -1;
    background-color: #4a1a10;
}
/* .rest-home-content .rest-btn {
   margin-bottom: 85px;
}
*/
.rest-btn {
    padding: 14px 35px;
    display: inline-block;
  color: #4a1a10;
     
    font-size: 18px;
    font-weight: 400;
    border: none;
     margin-bottom: 50px;
    background:#4a1a10;
    position: relative;
    z-index: 1;
    transition: .5s;
    text-decoration: none;
}
.rest-btn.style2 {
    background-color: transparent;
    border: solid 1px #990000;
}/*buttoin2*/

.col-fullhfr .rest-btn2.style22 {
    background-color: transparent;
    border: solid 1px #000;
}
.rest-btn2:hover{  color: #fff;
    box-shadow: rgb(17 17 26 / 5%) 0  4px 16px, rgb(17 17 26 / 5%) 0  8px 32px;
} 
.col-fullhfr .rest-btn2:hover.style2 {
 
    border: solid 1px #000;
}
.rest-btn2:hover:after {
    opacity: 1;
    height: 100%;
    width: 100%;
}
.rest-btn2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    height: 100%;
    width: 0;
    transition: .5s;
    z-index: -1;
    background-color: #4a1a10;
}
.rest-btn2:hover:before {
    opacity: 1;
    height: 100%;
    width: 100%;
}
.rest-btn2::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    opacity: 0;
    transition: .5s;
    z-index: -1;
    background-color: #4a1a10;}
	 
 

.rest-btn2 {
    padding: 14px 35px;
    display: inline-block;
  color: #4a1a10;
     
    font-size: 18px;
    font-weight: 400;
    border: none;
     margin-bottom: 50px;
    background:#4a1a10;
    position: relative;
    z-index: 1;
    transition: .5s;
    text-decoration: none;
}
.rest-btn2.style22 {
    background-color: transparent;
    border: solid 1px #990000;
}


/*buttoin2*/
/*buttoin3*/

.col-fullhfr .rest-btn3.style3 {
    background-color: #4a1a10;
    border: solid 1px #4a1a10;
}
.rest-btn3:hover{  color: #4a1a10;
    box-shadow: rgb(17 17 26 / 5%) 0  4px 16px, rgb(17 17 26 / 5%) 0  8px 32px;
} 
.col-fullhfr .rest-btn3:hover.style3 {
 
    border: solid 1px #000;
}
.rest-btn3:hover:after {
    opacity: 1;
    height: 100%;
    width: 100%;
}
.rest-btn3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    height: 100%;
    width: 0;
    transition: .5s;
    z-index: -1;
    background-color:  #ece7dd;
}
.rest-btn3:hover:before {
    opacity: 1;
    height: 100%;
    width: 100%;
}
.rest-btn3::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    opacity: 0;
    transition: .5s;
    z-index: -1;
    background-color: #ece7dd;}
	 
 

.rest-btn3{ /*margin-left:30px;*/
    padding: 14px 35px;
    display: inline-block;
  color: #fffdf6;
     
    font-size: 18px;
    font-weight: 400;
    border: none;
     margin-bottom: 50px;
    background:#4a1a10;
    position: relative;
    z-index: 1;
    transition: .5s;
    text-decoration: none;
}
 


/*buttoin3*/


@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/source-sans-3-v19-latin-300.eot'); /* IE9 Compat Modes */
  src: url('../fonts/source-sans-3-v19-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/source-sans-3-v19-latin-300.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/source-sans-3-v19-latin-300.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/source-sans-3-v19-latin-300.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/source-sans-3-v19-latin-300.svg#SourceSans3') format('svg'); /* Legacy iOS */
}
/* source-sans-3-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/source-sans-3-v19-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/source-sans-3-v19-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/source-sans-3-v19-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/source-sans-3-v19-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/source-sans-3-v19-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/source-sans-3-v19-latin-regular.svg#SourceSans3') format('svg'); /* Legacy iOS */
}
/* source-sans-3-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/source-sans-3-v19-latin-500.eot'); /* IE9 Compat Modes */
  src: url('../fonts/source-sans-3-v19-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/source-sans-3-v19-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/source-sans-3-v19-latin-500.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/source-sans-3-v19-latin-500.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/source-sans-3-v19-latin-500.svg#SourceSans3') format('svg'); /* Legacy iOS */
}
/* source-sans-3-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/source-sans-3-v19-latin-600.eot'); /* IE9 Compat Modes */
  src: url('../fonts/source-sans-3-v19-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/source-sans-3-v19-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/source-sans-3-v19-latin-600.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/source-sans-3-v19-latin-600.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/source-sans-3-v19-latin-600.svg#SourceSans3') format('svg'); /* Legacy iOS */
}
/* source-sans-3-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/source-sans-3-v19-latin-700.eot'); /* IE9 Compat Modes */
  src: url('../fonts/source-sans-3-v19-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/source-sans-3-v19-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/source-sans-3-v19-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/source-sans-3-v19-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/source-sans-3-v19-latin-700.svg#SourceSans3') format('svg'); /* Legacy iOS */
}

/* playfair-display-sc-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display SC';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/playfair-display-sc-v18-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/playfair-display-sc-v18-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/playfair-display-sc-v18-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/playfair-display-sc-v18-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/playfair-display-sc-v18-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/playfair-display-sc-v18-latin-regular.svg#PlayfairDisplaySC') format('svg'); /* Legacy iOS */
}

/* playfair-display-sc-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display SC';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/playfair-display-sc-v18-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/playfair-display-sc-v18-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/playfair-display-sc-v18-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/playfair-display-sc-v18-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/playfair-display-sc-v18-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/playfair-display-sc-v18-latin-regular.svg#PlayfairDisplaySC') format('svg'); /* Legacy iOS */
}
/* playfair-display-sc-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display SC';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/playfair-display-sc-v18-latin-700.eot'); /* IE9 Compat Modes */
  src: url('../fonts/playfair-display-sc-v18-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/playfair-display-sc-v18-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/playfair-display-sc-v18-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/playfair-display-sc-v18-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/playfair-display-sc-v18-latin-700.svg#PlayfairDisplaySC') format('svg'); /* Legacy iOS */
}
/* =========================================================
   ROOT
========================================================= */

:root{
    --cream:#f5f1e8;
    --cream2:#eee9dc;
    --brown:#551b12;
    --brown-dark:#40140d;
    --green:#092d12;
    --gold:#a9805c;
    --text:#28231f;
}


/* =========================================================
   GENERAL
========================================================= */
 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
  font-family: 'Source Sans 3';
    color:  #414141;
    background: #fffdf6;
}

img {
   /* max-width: 100%;
    display: block;*/
	    max-width: 100%;
    height: auto; display: block;
}

a {
    text-decoration: none;
}


h1,
h2,
h3,
h4,
h5{
     font-family: 'Source Sans 3';
    font-weight:500;
}





/* =========================================================
   HEADER OUTER
========================================================= */

.header-outer {

    position: sticky;
    top: 0;
height: 120px;
    width: 100%;
   /* height: 143px;*/

    z-index: 9999;

   /* background: #fffef9;*/
}


/* =========================================================
   MAIN HEADER
========================================================= */

.resort-header {

    position: relative;

    top: 0;
    left: 0;

    width: 100%;padding:10px 0 ;
   /* height: 143px;*/

    background: #fffef9;

    box-shadow:
        0 1px 0 rgba(0,0,0,.04);

    transition:
        height .35s ease,
        box-shadow .35s ease;
}


/* =========================================================
   SHRINK HEADER
========================================================= */

.resort-header.scrolled {

    height: 100px;

    box-shadow:
        0 4px 20px rgba(0,0,0,.10);
}


/* =========================================================
   NAVBAR
========================================================= */

.resort-navbar {

    position: relative;

    width: 100%;
    height: 100%;

    display: grid;

    grid-template-columns:
        150px
        minmax(0,1fr)
        150px;

    align-items: center;
}


/* =========================================================
   LOGO
========================================================= */

.resort-logo {

    display: flex;
    align-items: center;

    position: relative;
    z-index: 1005;
}

.resort-logo img {

    width: 105px;

    transition:
        width .35s ease,
        transform .35s ease;
}

.resort-logo:hover img {

    transform: scale(1.04);
}

.resort-header.scrolled
.resort-logo img {

    width: 70px;
}


/* =========================================================
   DESKTOP MENU
========================================================= */

.resort-collapse {

    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;
}


.resort-menu {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 42px;

    margin: 0;
    padding: 0;

    list-style: none;
}


.resort-menu li {

    position: relative;
}


/* =========================================================
   DESKTOP MENU LINKS
========================================================= */

.resort-menu li > a {

    position: relative;

    display: inline-flex;

    align-items: center;

    padding: 10px 0;

    color: #414141;

    font-size: 18px;
    font-weight: 500;

    white-space: nowrap;

    transition:
        color .3s ease,
        transform .3s ease;
}


/* underline */

.resort-menu li > a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 3px;

    width: 0;
    height: 2px;

    background: #5a1b12;

    transition:
        width .35s ease;
}


/* hover */

.resort-menu li > a:hover {

    color: #5a1b12;

    transform:
        translateY(-2px);
}


.resort-menu li > a:hover::after {

    width: 100%;
}


/* =========================================================
   DESKTOP BOOK NOW
========================================================= */

.desktop-book-now {

    justify-self: end;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 186px;
    height: 46px;

    background: #5a1b12;
    color: #fff;
    text-transform: uppercase;
    border-radius: 15px;

    font-size: 20px;
    font-weight: 600;

    transition:
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}


.desktop-book-now:hover {

    background: #40120d;

    color: #fff;

    transform:
        translateY(-3px);

    box-shadow:
        0 8px 20px rgba(90,27,18,.22);
}


.resort-header.scrolled
.desktop-book-now {
  width: 186px;
    height: 46px;
   /* width: 105px;
    height: 38px;*/
}


/* =========================================================
   MOBILE TOGGLE
========================================================= */

.mobile-toggle {

    display: none;

    position: relative;

    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 0;
    outline: 0;

    background: transparent;

    color: #5a1b12;

    cursor: pointer;

    z-index: 1006;
}


.mobile-toggle:focus {
    outline: none;
    box-shadow: none;
}


/* =========================================================
   ANIMATED HAMBURGER
========================================================= */

.menu-icon {

    position: relative;

    width: 25px;
    height: 20px;

    display: block;
}


.menu-icon span {

    position: absolute;

    left: 0;

    width: 25px;
    height: 2px;

    border-radius: 5px;

    background: #5a1b12;

    transition:
        top .3s ease,
        transform .3s ease,
        opacity .2s ease,
        width .3s ease;
}


.menu-icon span:nth-child(1) {
    top: 0;
}

.menu-icon span:nth-child(2) {
    top: 9px;
}

.menu-icon span:nth-child(3) {
    top: 18px;
}


/* =========================================================
   HAMBURGER -> X
========================================================= */

.mobile-toggle.active
.menu-icon span:nth-child(1) {

    top: 9px;

    transform:
        rotate(45deg);
}


.mobile-toggle.active
.menu-icon span:nth-child(2) {

    opacity: 0;

    transform:
        translateX(10px);
}


.mobile-toggle.active
.menu-icon span:nth-child(3) {

    top: 9px;

    transform:
        rotate(-45deg);
}


/* =========================================================
   MOBILE BOOK ITEM
========================================================= */

.mobile-book-item {
    display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {

    position: relative;

    width: 100%;

    height: calc(100vh - 0px);

    min-height: 620px;

    overflow: hidden;
}


.heroSwiper {

    width: 100%;
    height: 100%;
}


.hero-slide {

    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;
}


.hero-slide img {

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-slide::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(

            90deg,
            rgba(0,0,0,.55),
            rgba(0,0,0,.18),
            rgba(0,0,0,.04)
        );
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {

    position: absolute;

    z-index: 10;

    left: 8%;

    top: 50%;

    transform:
        translateY(-50%);

    max-width: 650px;

    color: #fff;
}


.hero-subtitle {

    margin-bottom: 15px;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.hero-content h1 {

    margin: 0 0 20px;

    font-size:
        clamp(42px,5vw,76px);

    line-height: 1.05;

    font-weight: 700;
}


.hero-content p {

    max-width: 570px;

    margin-bottom: 30px;

    font-size: 17px;

    line-height: 1.7;
}


.hero-button {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 150px;

    height: 50px;

    padding: 0 25px;

    background: #5a1b12;

    color: #fff;

    border-radius: 4px;

    font-size: 14px;
    font-weight: 600;

    transition:
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}


.hero-button:hover {

    background: #40120d;

    color: #fff;

    transform:
        translateY(-3px);

    box-shadow:
        0 8px 20px rgba(0,0,0,.20);
}


/* =========================================================
   HERO ARROWS
========================================================= */

.hero-prev,
.hero-next {

    position: absolute;

    top: 50%;

    transform:
        translateY(-50%);

    z-index: 20;

    width: 50px;
    height: 50px;

    border: 1px solid
        rgba(255,255,255,.65);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #fff;

    background:
        rgba(0,0,0,.20);

    cursor: pointer;

    transition:
        background .3s ease,
        transform .3s ease;
}


.hero-prev {
    left: 25px;
}


.hero-next {
    right: 25px;
}


.hero-prev:hover,
.hero-next:hover {

    background: #5a1b12;

    transform:
        translateY(-50%) scale(1.08);
}


/* =========================================================
   HERO PAGINATION
========================================================= */

.heroSwiper .swiper-pagination {
    bottom: 30px;
}


.heroSwiper
.swiper-pagination-bullet {

    width: 9px;
    height: 9px;

    background: #fff;

    opacity: .6;
}


.heroSwiper
.swiper-pagination-bullet-active {
    opacity: 1;
}


/* =========================================================
   SECTION
========================================================= */

.section {

    padding: 100px 0;
}


.section-light {
    background: #f6f1e8;
}


.section-heading {

    max-width: 750px;

    margin:
        0 auto 55px;

    text-align: center;
}


.section-subtitle {

    margin-bottom: 10px;

    color: #5a1b12;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.section-heading h2 {

    margin: 0 0 15px;

    color: #3c302c;

    font-size:
        clamp(32px,4vw,50px);

    line-height: 1.15;

    font-weight: 700;
}


.section-heading p {

    margin: 0;

    color: #716660;

    font-size: 16px;

    line-height: 1.7;
}

 

/* =========================================================
   CONTENT
========================================================= */

.content-box {

    max-width: 850px;

    margin: auto;

    text-align: center;
}


.content-box h2 {

    margin-bottom: 20px;

    font-size: 42px;

    color: #3c302c;
}


.content-box p {

    margin: 0;

    color: #716660;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   FOOTER
========================================================= */

footer {

    padding: 35px 0;

    background: #3c302c;

    color: #fff;

    text-align: center;

    font-size: 14px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:1199.98px) {

    .resort-menu {
        gap: 28px;
    }

    .resort-navbar {

        grid-template-columns:
            130px
            minmax(0,1fr)
            130px;
    }

  /*
  
  
  .resort-navbar {
    grid-template-columns: 150px minmax(0,1fr) 150px;
}

.resort-menu {
    display: grid;
    grid-template-columns: repeat(5, max-content);
    justify-content: center;
    column-gap: 30px;
    row-gap: 0;
}*/
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:991.98px) {


    /* =====================================================
       HEADER
    ====================================================== */

    /* .header-outer {
       height: 82px;
    }*/

    .header-outer {
        height: 100px;
    }

    .resort-header {
        height: 100px;
    }

    .resort-header.scrolled {
        height: 100px;
    }


    .resort-logo img {
        width: 80px;
    }


    .resort-navbar {

        display: flex;

        align-items: center;

        justify-content: space-between;
    }


    .resort-logo {
        flex: 1;
    }


    .resort-logo img {
        width: 85px;
    }


    .resort-header.scrolled
    .resort-logo img {
        width: 65px;
    }


    /* =====================================================
       DESKTOP BOOK HIDDEN
    ====================================================== */

    .desktop-book-now {
        display: none !important;
    }


    /* =====================================================
       MOBILE TOGGLE
    ====================================================== */

    .mobile-toggle {

        display: flex;

        flex-shrink: 0;
    }


    /* =====================================================
       MOBILE MENU — 3D CONTAINER
    ====================================================== */

    .resort-collapse {

        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        height: auto;

        display: block;

        padding:
            10px 20px 20px;

        background: #fffef9;

        box-shadow:
            0 18px 40px
            rgba(0,0,0,.16);

        z-index: 1001;


        /* =============================================
           3D PERSPECTIVE
        ============================================= */

        perspective: 1000px;

        transform-origin:
            top center;


        /* =============================================
           CLOSED
        ============================================= */

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transform:
            perspective(1000px)
            rotateX(-18deg)
            translateY(-20px)
            scale(.96);


        transition:
            opacity .3s ease,
            transform .5s
            cubic-bezier(.22,1,.36,1),
            visibility .5s ease;
    }


    /* =================================================
       OPEN
    ================================================= */

    .resort-collapse.show {

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform:
            perspective(1000px)
            rotateX(0deg)
            translateY(0)
            scale(1);
    }


    /* =================================================
       MOBILE MENU LIST
    ================================================= */

    .resort-menu {

        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        margin: 0;
        padding: 0;

        list-style: none;

        transform-style: preserve-3d;
    }


    /* =================================================
       MENU ITEMS — 3D CASCADE
    ================================================= */

    .resort-menu li {

        width: 100%;

        opacity: 0;

        transform:
            perspective(800px)
            rotateX(-25deg)
            translateY(-15px)
            translateZ(-20px);

        transform-origin:
            top center;

        transition:
            opacity .35s ease,
            transform .5s
            cubic-bezier(.22,1,.36,1);
    }


    /* =================================================
       OPEN MENU ITEMS
    ================================================= */

    .resort-collapse.show
    .resort-menu li {

        opacity: 1;

        transform:
            perspective(800px)
            rotateX(0deg)
            translateY(0)
            translateZ(0);
    }


    /* =================================================
       CASCADE DELAYS
    ================================================= */

    .resort-collapse.show
    .resort-menu li:nth-child(1) {
        transition-delay: .06s;
    }

    .resort-collapse.show
    .resort-menu li:nth-child(2) {
        transition-delay: .11s;
    }

    .resort-collapse.show
    .resort-menu li:nth-child(3) {
        transition-delay: .16s;
    }

    .resort-collapse.show
    .resort-menu li:nth-child(4) {
        transition-delay: .21s;
    }

    .resort-collapse.show
    .resort-menu li:nth-child(5) {
        transition-delay: .26s;
    }

    .resort-collapse.show
    .resort-menu li:nth-child(6) {
        transition-delay: .31s;
    }


    /* =================================================
       MOBILE LINKS
    ================================================= */

    .resort-menu li > a {

        display: flex;

        align-items: center;

        width: 100%;

        min-height: 50px;

        padding:
            10px 8px;

        border-bottom:
            1px solid
            rgba(90,27,18,.10);


        color: #3c302c;

        font-size: 15px;

        transition:
            color .25s ease,
            background .25s ease,
            padding-left .25s ease,
            transform .25s ease;
    }


    /* remove desktop underline */

    .resort-menu li > a::after {
        display: none;
    }


    /* =================================================
       MOBILE LINK HOVER
    ================================================= */

    .resort-menu li > a:hover {

        color: #5a1b12;

        background:
            rgba(90,27,18,.055);

        padding-left: 15px;

        transform:
            translateZ(8px);
    }


    /* =================================================
       MOBILE BOOK NOW
    ================================================= */

    .mobile-book-item {

        display: block;

        width: 100%;

        margin-top: 10px;
    }


    .mobile-book-now {

        display: flex !important;

        align-items: center;
        justify-content: center;

        width: 100%;

        height: 48px;

        padding: 0 !important;

        border: 0 !important;

        border-radius: 4px;

        background: #5a1b12;

        color: #fff !important;

        box-shadow:
            0 8px 20px
            rgba(90,27,18,.15);

        transition:
            background .3s ease,
            transform .3s ease,
            box-shadow .3s ease !important;
    }


    .mobile-book-now:hover {

        background: #40120d !important;

        color: #fff !important;

        transform:
            translateY(-3px)
            translateZ(8px) !important;

        box-shadow:
            0 12px 25px
            rgba(90,27,18,.25);
    }


    /* =====================================================
       HERO
    ====================================================== */

    .hero-section {
        /*min-height: 560px;*/
		min-height: 400px;
		height: calc(100vh - 50px)!important;
    }


    .hero-content {

        left: 7%;
        right: 7%;

        max-width: 700px;
    }


    .hero-content h1 {

        font-size:
            clamp(38px,8vw,62px);
    }

 

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width:575.98px) {


    .header-outer {
        height: 100px;
    }

    .resort-header {
        height: 100px;
    }

    .resort-header.scrolled {
        height: 100px;
    }


    .resort-logo img {
        width: 80px;
    }


    .resort-header.scrolled
    .resort-logo img {
        width: 80px;
    }


    .mobile-toggle {

        width: 42px;
        height: 42px;
    }


    /* =====================================================
       HERO
    ====================================================== */

    .hero-section {
       /* min-height: 520px;*/
	   min-height: 300px;
		height: calc(100vh - 150px);
    }


    .hero-content {

        left: 25px;
        right: 25px;
    }


    .hero-subtitle {

        font-size: 11px;

        letter-spacing: 2px;
    }


    .hero-content h1 {
        font-size: 38px;
    }


    .hero-content p {
        font-size: 14px;
    }


    .hero-prev,
    .hero-next {

        width: 40px;
        height: 40px;
    }


    .hero-prev {
        left: 12px;
    }


    .hero-next {
        right: 12px;
    }


    /* =====================================================
       SECTION
    ====================================================== */

    .section {
        padding: 70px 0;
    }


    .section-heading {
        margin-bottom: 35px;
        padding: 0 20px;
    }


    .section-heading h2 {
        font-size: 32px;
    }

 

}


/* =========================================================
   VERY SMALL
========================================================= */

@media (max-width:380px) {
 

    .hero-content h1 {
        font-size: 34px;
    }
}


/* =========================================================
   REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {
    html,
    body,
    body *,
    body *::before,
    body *::after {
        scroll-behavior: auto;
        transition-duration: 0.01ms;
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
    }
}

 