html {
  scroll-behavior: smooth;

}
@font-face {
    font-family: 'Roustel';
    src: url('../font/Roustel-Regular.woff2') format('woff2'),
         url('../font/Roustel-Regular.woff') format('woff');
    font-display: swap;
}
body{
    margin: 0;
    padding: 0;
    font-family: "Afacad", serif;    
    margin-top: 75px;
    background-color: #F3E9DC;
}

.hdr_mbc{
    height: 76px;
    padding: 0px 25px;
    background: #F3E9DC;
    display: flex;
    justify-content:end;
    align-items: center;
    position: fixed;
    width: calc(100vw - 50px);
    z-index: 100;
    margin-top: -75px;
box-shadow: 0px -4px 20px 0px rgba(0, 0, 0, 0.28);
    color: #5F7536;
}

.hdr_mbc a{
        color: #5F7536;
}



.hdr_mbl{
    background-color: #5F7536;
   align-items: center;
   justify-content: center;
   border-bottom-left-radius: 15px;
   border-bottom-right-radius: 15px;
   position: fixed;
   top: 0;
   left: 25px;
   padding: 15px;
}
.hmbl_li img{
    height: 80px;
    width: auto;
}

.hmbl_rhn{
    color: #FCD75E;
    display: flex;
    flex-direction: column;
}

.hmbl_rhn_t{
    font-family: "Cormorant Garamond";
    color: #5F7536;
    font-weight: 300;
    font-size: 35px;
    line-height: .7;
    margin-top: 5px;
}

.hmbl_rhn_b{
    font-family: "Jost";
    font-weight: 300;
    color: #5F7536;
    font-size: 12px;
    line-height: 1.2;
}

/* HEADER RIGHT PART */
.hdr_mbr{
    display: flex;
    align-items: center;
    column-gap: 10px;
    color: #5F7536;
    font-weight: 300;
    font-size: 14px;
    margin-bottom: -25px;
}

.hmbr_bwdl{
    display: flex; 
    column-gap: 10px; 
    align-items:center;
}

.hmbr_pbc{
    cursor: pointer;
    transition: .3s;
    padding: 15px;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.hmbr_pbc img{
    height: 15px;
    transform: rotate(-90deg);
}

.hmbr_pbc:hover{
    font-weight: 400;
}

button{
    font-family: "Afacad", serif;
}

a{
    text-decoration: none;
}

#spcl_ofr_btn{
    background-color: #FCD75E; 
    color: #001B04; 
    padding: 3px 10px; 
    border-radius: 5px; 
    font-weight:500;
}

#menu_btn{
    display: none;
}

#nsb_cnb{
   display: none;
}

.hmbr_pbc{
    position: relative;
}

.hmbr_pb_dl_mct{
    position: absolute;
    display: flex;
    flex-direction: column;
    background-color: white;
    width: 200px;
    margin-top: 10px;
    border: 1px solid #e4af00;
    top: 80%;
    left: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
}

.hmbr_pb_dl_mct a{
    color: #001B04;
    font-weight: 400;
    font-size: 16px;
    padding: 5px 10px;
    transition: .3s;
}

.hmbr_pb_dl_mct a:hover{
    background-color: #ffe58e;
}

.hmbr_pbc.show .hmbr_pb_dl_mct{
    visibility: visible;
    opacity: 1;
}

.hmbr_pbc.show img{
    transition: .3s;
    transform: rotate(-270deg);
}

.hdr_mbc::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px; 
    width: 100vw; 
    height: 20px; 
    background-image: url('../img/brown-pattern-strip1.png');
    background-repeat: repeat-x;
    background-position: bottom left;
    background-size: auto 100%;
    pointer-events: none;
    display: block;
}



/* SCROLL TO TOP BUTTON */

.stt_ab_mct{
    position: fixed;
    bottom: 35px;
    right: 35px;
    cursor: pointer;
    border: 2px solid #e4af00;
    display: flex;
    align-items: center;
    height: 40px;
    width: 40px;
    justify-content: center;
    transition: .3s;
    opacity: 0;
    z-index: 1;
    border-radius: 50%;
    background-color: #F3E9DC;
}

#sct_b.show{
    opacity: .5;
}

.stt_ab_mct:hover{
    transform: scale(105%);
    opacity: 1 !important;
}

.stt_ab_mct img{
    width: 20px;
    
}


/* HEADER AVP/IMG BG STYLES */
.bmct_avp_bg {
  position: relative;
  height: calc(100vh - 75px);
  width: 100%;
  overflow: hidden;
  background-color: black;
}

.bmct_avp_bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: avpfadeIn 1s ease-in-out forwards;
}

.avp_ovrly{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center; 
    justify-content: center;
    animation: avpfadeIn 1s ease-in-out forwards;
    opacity: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.3);
}

.avp_ovrly img{
    width: 85%;          
    max-width: 900px;    
    max-height: 80vh;    
    object-fit: contain;
}

.book_btn{
    position: absolute;
    bottom: 75px;
    width: 100%;
    display: flex;
    justify-content: center;
    animation: avpfadeIn 1s ease-in-out forwards;
    opacity: 0;
    font-family: "Afacad", serif;
    z-index: 2;
}

@keyframes avpfadeIn {
    to {
        opacity: 1;
    }
}

@keyframes avpfadeIn2 {
    to {
        opacity: .3;
    }
}

.img_bg_avp{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    background-color: black;
    animation: avpfadeIn2 1s ease-in-out forwards;
}

/* FOOTER STYLES */

.bmct_ftr_mc{
    display: flex;
    padding: 50px 50px 80px 50px;
    background: #5f7536;
    justify-content: space-between;
    color: white;
    font-weight: 300;
    position: relative;
    column-gap: 100px;
    font-family: "Afacad", serif;
}

.ftr_crdts{ 
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.3);
}

.ftr_ctc_l{
    text-align: center;
    display: flex;
}
.ftr_ctc_l img{
    height: 200px;
    object-fit: contain;
}

.bmct_ftr_mc a{
    color: rgb(255, 255, 255);
}

.ftr_loc_ab{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    border: 1px solid #ffffff;
    padding: 5px;
    margin-top: 10px;
    transition: .3s;
    cursor: pointer;
    max-width: 300px;
    color: #ffff !important;
}

.ftr_loc_ab img{
    transform: rotate(45deg);
    margin-top: -5px;
    height: 15px !important;
    transition: .3s;
}

#loc_i1{
    filter: brightness(0) invert(1);
}


.ftr_loc_ab:hover{
    transform: scale(105%);
    background-color: #ffe58e;
    color: #001B04 !important;
}

#loc_i2{
    display: none;
    opacity: 0;
}

.ftr_loc_ab:hover #loc_i1{
    transition: .3s;
    display: none;
    opacity: 0;
}

.ftr_loc_ab:hover #loc_i2{
    transition: .3s;
    display: flex;
    opacity: 1;
}

.ftr_ctc_m img{
    height: 20px;
}

/* .ftc_ctc_mc_cts{
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.ftc_ctc_mc_cts a:hover{
    transition: .3s;
    font-weight: 400;
} */
.ftc_ctc_mc_cts {
    display: flex;
    align-items: center;
    column-gap: 10px;
    row-gap: 5px; 
    width: 100%;
    max-width: 100%;
}

.ftc_ctc_ic{
    font-size: 26px;
    font-weight: 500;
}

.ftc_ctc_mc_cts a {
    color: inherit;
    text-decoration: none;
    word-break: break-word; 
    overflow-wrap: anywhere;
}

.ftc_ctc_mc_cts a:hover {
    transition: 0.3s ease;
    font-weight: 400;
}
.ftr_ctc_mb{
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-top: 20px;
}

.ftr_ctc_mb img{
    height: 25px;
    transition: .3s;
}

.ftr_ctc_mb img:hover{
    transform: scale(105%);
}

.ftr_ctc_r {
    display: flex;
    flex-direction: column;
}

.ftr_ctc_r a:hover{
    transition: .3s;
    font-weight: 400;
}
.bmct_ftr_mc::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px; 
    width: 100%; 
    height: 25px; 
    background-image: url('../img/brown-pattern-strip1.png');
    background-repeat: repeat-x;
    background-position: bottom left;
    background-size: auto 100%;
    pointer-events: none;
    display: block;
}
 


@media (max-width: 1000px) {
    /* header styles */
    #menu_btn{
        display: flex;
        border: 1px solid #5F7536;
        padding: 7px;
        cursor: pointer;
        z-index: 101;
        background-color: #F3E9DC;
        
    }

    #menu_btn img{
        height: 10px;
    }

    #hdr_nav{
        position: fixed;
        left: -100vw;
        height:100%;
        z-index: 100;
        flex-direction: column;
        background-color: #5F7536;
        top: 0;
        width: 80vw;
        align-items: start;
        padding: 50px 0px 0px 0px;
        overflow-y: auto;
        scroll-behavior: smooth;
        transition: .5s;
        opacity: 0;
        color: white;
    }

    #hdr_nav a{
        color: white;
    }

    #hdr_nav.open{
        left: 0;
        opacity: 1;
    }

    #hdr_nav::-webkit-scrollbar{
        display: none;
    }

    #nsb_cnb{
        display: block;
        opacity: 0;
        position: fixed;
        height:100%;
        width: 26vw;
        background-color: rgba(0, 0, 0, 0.5);
        bottom: 0;
        right: -100vw;
        cursor: pointer;
        transition: right 0.1s ease, opacity 0.5s ease .25s;
    }

    #nsb_cnb.show{
        right: 0;
        opacity: 1;
        backdrop-filter: blur(6px);
    }

    .hmbr_pbc{
        margin-left: 25px !important;
        flex-direction: column;
        justify-content: start;
        font-weight: 400;
    }

    #spcl_ofr_btn{
        margin-top: 20px;
        margin-left: 40px !important;
    }

    .hmbr_bwdl{
        width: 100%;
    }

    .hmbr_bwdl img{
        filter: brightness(100);
    }

    .hmbr_pb_dl_mct{
        position: static;
        display: flex;
        flex-direction: column;
        background-color: transparent;
        width: 100%;
        border: none;
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
        transition: .3s;
        margin-top: 10px;
        padding-left: 20px;
        height: 0;
    }

    .hmbr_pb_dl_mct a{
        color: white;
        font-weight: 300 !important;
        font-size: 16px;
        padding: 5px 10px;
        transition: .3s;
    }

    .hmbr_pbc.show .hmbr_pb_dl_mct{
        visibility: visible;
        opacity: 1;
        height: 100%;
    }


    /* footer styles */

    .bmct_ftr_mc{
        flex-direction: column;
        padding: 50px 200px;
    }

    .ftr_ctc_m{
        margin-top: 40px;
    }

    .ftr_ctc_mt div{
        text-align: center;
    }

    .ftr_ctc_mt a{
       margin: 10px auto 0;
    }

    .ftr_ctc_mc div{
        display: flex;
        justify-content: center;
    }
    .ftr_ctc_mb{
        justify-content: center;
    }

    .ftr_ctc_r{
        margin-top: 40px;
        text-align: center;
    }


}

@media (max-width: 700px) {

    /* footer styles */
    .bmct_ftr_mc{
        flex-direction: column;
        padding: 45px;
    }

    .ftr_ctc_m{
        margin-top: 40px;
    }

    .ftr_ctc_mt div{
        text-align: left;
    }

    .ftr_ctc_mt a{
       margin: 0;
       margin-top: 10px;
    }

    .ftr_ctc_mc div{
        display: flex;
        justify-content: left;
    }
    .ftr_ctc_mb{
        justify-content: left;
    }

    .ftr_ctc_r{
        margin-top: 40px;
        text-align: left;
    }

    
}