:root {
    --primary-color: #fbc077;
    --icon-color: #9a724f; 
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'shabnam';
    src: url('/fonts/Shabnam-FD.woff2') format('opentype');
}

@font-face {
    font-family: 'azar';
    src: url('/fonts/Post-Regular.ttf') format('opentype');
}

@font-face {
    font-family: 'azar2';
    src: url('/fonts/PINAR-SEMIBOLD.TTF') format('opentype');
}

@font-face {
    font-family: 'cfnot';
    src: url('/fonts/cfnotchedemobold-5y1eb.otf') format('opentype');
}

body {
    overflow-x: hidden;
    font-family: 'shabnam', sans-serif;
    background-color: #ffffff;
    position: relative;
}

button{
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-family: 'shabnam';
}

a{
    text-decoration: none;
    color: #000000;
}

.shade{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 21;
    background-color: hsla(0, 0%, 0%, 0.5);
    transition: all 500ms ease-in-out;
    display: none;
}

.topHead{
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 0 8%;
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
}

.hotelAddr{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.hotelLoc{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 7px;
    font-size: 16px;
}

.hotelLoc i{
    color: var(--icon-color);
    font-size: 24px;
}

.hotelLogo{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotelLogo img{
    height: 90%;
}

.hotelRes{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
}

.ressep{
    width: 1px;
    height: 30px;
    background-color: #d4d4d4;
}

.hotelResLink{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: all 250ms ease-in-out;
    background-color: var(--icon-color);
    height: 40px;
    padding: 15px;
    color: #ffffff;
    border-radius: 10px;
}

.hotelResLink i{
    font-size: 18px;
}

.hotelResLink:hover{
    transform: translateX(7px);
}

.Header {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background-color: #000000;
}

.bgImgH {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1s linear, transform 7s ease-in-out;
}

.bgImgH.active {
    opacity: 1;
    transform: scale(1.1);
    z-index: 2;
}

.bgImgH.fade-out {
    opacity: 0;
    transform: scale(1);
    z-index: 1;
}

.headerDown{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: absolute;
    bottom: 4%;
    right: 0;
    z-index: 5;
}

.headCir{
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.headCir.active{
    background-color: #ffffff;
}

.navbar{
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    top: 120px;
    transition: all 250ms ease-in-out;
    background-color: #ffffff;
}

.navbarlogo{
    height: 80%;
    display: none;
}

.navBtn{
    width: 120px;
    height: 60%;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 10px;
    display: none;
}

.navLink{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.navLinkS{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    transition: all 250ms ease-in-out;
}

.linkCir{
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--icon-color);
    display: none;
}

.navLinkS.active{
    color: var(--icon-color);
    .linkCir{
        display: block;
    }
}

.navLinkS:hover{
    transform: translateY(-5px);
    color: var(--icon-color);
}

.navbar.active{
    width: 70%;
    border-radius: 20px;
    padding: 0 15px;
    top: 20px !important;
    justify-content: space-between;
    position: fixed;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    .navLink{
        gap: 25px;
    }
    .navbarlogo, .navBtn{
        display: block;
    }
}

.aboutSec{
    width: 100%;
    padding: 25px;
}

.topAbout{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    height: 75px;
}

.topAbout img{
    height: 100%;
}

.topAbout span{
    font-size: 24px;
    font-weight: bold;
    color: #74352c;
}

.topAboutTxt{
    width: 85%;
    text-align: center;
    margin-right: 50%;
    transform: translateX(50%);
    margin-top: 25px;
    color: #909294;
}

.topAboutTitle{
    width: 100%;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bannerSec{
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.bannerMain{
    height: 90%;
}

.banSideCol{
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 25%;
    gap: 60px;
}

.banSideRow{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.banSideRowTitle{
    font-size: 32px;
    font-weight: bold;
}

.banSep{
    width: 25%;
    height: 1px;
    background-color: #000000;
}

.banSideRowSub{
    text-align: center;
    width: 80%;
    color: #909294;
}

.roomTypes{
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 25px 0;
    position: relative;
    overflow: hidden;
}

.singRoom{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.roomDesc{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    position: absolute;
    right: 14.5%;
    transition: all 500ms ease-in-out;
    transform: translateX(20px);
}

.roomDesc span{
    width: 75%;
}

.roomDesc h3{
    font-size: 32px;
}

.roomDesc.active{
    opacity: 1;
    transform: translateX(0);
}

.roomImg{
    height: 100%;
    position: absolute;
    left: 14.5%;
    opacity: 0;
    transform: scale(0.5);
    transition: all 500ms ease-in-out;
}

.roomImg.active{
    opacity: 1;
    transform: scale(1);
}

.roomImg.zoom-out{
    opacity: 0;
    transform: scale(1.2);
}

.roomBtns{
    position: absolute;
    width: 120px;
    height: 60px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 14.5%;
    bottom: 15%;
}

.roomBtns button{
    width: 60px;
    height: 60px;
    border-radius: inherit;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid var(--icon-color);
    color: var(--icon-color);
    transition: all 250ms ease-in-out;
}

.roomBtns button:hover{
    background-color: var(--icon-color);
    color: #ffffff;
}

.places{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 25px;
    padding-top: 25px;
    position: relative;
}

.placesSec{
    width: 80%;
    height: 275px;
    background-color: #222222;
    position: relative;
    border-radius: 25px;
}

.placeSecMain{
    width: 60%;
    height: 75%;
    position: absolute;
    left: 4%;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 15px;
    z-index: 2;
    background-color: #222222;
    padding: 25px;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: start;
    gap: 12px;
}

.PSMTitle{
    font-size: 26px;
    color: #ffffff;
    font-weight: bold;
}

.PSMSub{
    text-align: justify;
    text-justify: inter-word;
    color: #a3a3a3;
}

.placesSec.even{
    .placeSecMain{
        left: inherit;
        right: 4%;
    }
}

.placesSecBg{
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    border-radius: inherit;
}

.resAd{
    width: 100%;
    height: 50vh;
    background-image: url("../img/pana.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.resAdTitle{
    font-size: 48px;
    color: #ffffff;
    font-weight: bold;
}

.resAdBtn{
    width: 200px;
    height: 50px;
    background-color: transparent;
    border: 1px solid #ffffff;
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    transition: all 250ms ease-in-out;
}

.resAdBtn:hover{
    background-color: #ffffff;
    color: #000000;
}

.whereTo{
    width: 100%;
    height: 90vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.whereToTitle{
    width: 100%;
    height: 10vh;
    margin-top: 50px;
    font-size: 32px;
    font-weight: bold;
    color: var(--icon-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.whereToSep{
    width: 60%;
    height: 1px;
    background-color: var(--icon-color);
}

.whereToSec{
    height: 50%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    position: relative;
}

.WBGTxt{
    font-size: 150px;
    position: absolute;
    z-index: 1;
    opacity: 0.1;
    bottom: 0;
    font-family: 'cfnot';
    left: 10%;
}

.WBGTxt.even{
    left: inherit;
    right: 10%;
}

.wheretoImg{
    height: 100%;
    filter: drop-shadow(0 0 10px #636363);
}

.wheretoTxt{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 50%;
    gap: 15px;
}

.wheretoTxtTitle{
    font-size: 32px;
    font-weight: bold;
    color: var(--icon-color);
}

.wheretoTxtSub{
    font-size: 16px;
    color: #909294;
}

.whereToSec.even{
    direction: ltr;
    .wheretoTxt{
        direction: rtl;
    }
}

.whereToBtn{
    width: 50px;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.whereToBtn button{
    width: 100%;
    height: 200px;
    font-size: 32px;
    border: 1px solid var(--icon-color);
    background-color: transparent;
    color: var(--icon-color);
    transition: all 250ms ease-in-out;
}

.WUpBtn{
    border-bottom: none !important;
    border-radius: 25px 25px 0px 0px;
}

.WDownBtn{
    border-radius: 0px 0px 25px 25px;
}

.WUpBtn:hover , .WDownBtn:hover{
    background-color: var(--icon-color);
    color: #ffffff;
}

.whereToDot{
    width: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: absolute;
    left: 4%;
    top: 50%;
    transform: translateY(-50%);
}

.WDot{
    width: 100px;
    height: 30px;
    border: 1px solid var(--icon-color);
    border-radius: 15px;
    transition: all 250ms ease-in-out;
    color: var(--icon-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}


.WDot.active{
    background-color: var(--icon-color);
    color: #ffffff;
}

.reserve{
    position: absolute;
    width: 80%;
    height: 120px;
    background-color: #ffffff;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    border-radius: 25px 25px 0 0;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 0 25px;
}

.dateInp{
    height: 100%;
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 7px;
}

.dateInpHead{
    color: #636363;
    margin-right: 15px;
}

.dateS{
    width: 100%;
    height: 45%;
    font-size: 16px;
    background-color: #ffffff;
    border: 1px solid #909294;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

.dateS i{
    font-size: 24px;
    color: #636363;
}

.seeRoom{
    width: 30%;
    height: 45%;
    margin-top: 28px;
    border-radius: 10px;
    background-color: var(--primary-color);
    font-size: 16px;
}

.datePickerCont{
    position: absolute;
    width: 60%;
    border-radius: 25px;
    z-index: 3;
    background-color: #ffffff;
    top: 50%;
    right: -100%;
    transform: translateY(-50%) translateX(50%);
    z-index: 22;
    padding: 25px;
    transition: all 500ms ease-in-out;
}

.DPCtop{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.DPCtop i{
    font-size: 24px;
}

.DPCclose , .NDPclose{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.datePickers{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
}

.singleDate{
    width: 48%;
    height: 100%;
}

.SDTitle{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.SDTMonth , .SDTMonthE{
    font-size: 20px;
}

.SDTYear , .SDTYearE{
    font-size: 16px;
    color: #909294;
}

.calendar{
    border-collapse: collapse;
    width: 100%;
    margin-top: 15px;
    margin-right: 2.5%;
}

.thead{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: normal;
}

th{
    font-weight: normal;
    font-size: 14px;
}

.SDTday{
    width: 55px;
    height: 55px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    cursor: pointer;
    border-radius: 7px;
    transition: all 250ms ease-in-out;
}

.SDTday.holiday{
    color: #ff0000;
}

.SDTday.today{
    border: 1px solid var(--icon-color);
    color: var(--icon-color);
}

.SDTday.disable{
    pointer-events: none;
    opacity: 0.25;
}

.SDTday:hover{
    background-color: var(--icon-color);
    color: #ffffff;
}

.numDayPicker{
    position: absolute;
    width: 60%;
    border-radius: 25px;
    z-index: 3;
    background-color: #ffffff;
    top: 50%;
    right: -100%;
    transform: translateY(-50%) translateX(50%);
    z-index: 22;
    padding: 25px;
    transition: all 500ms ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.numDayPickerMain{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 15px;
    margin-top: 25px;
}

.NDPsingleDay{
    width: 19%;
    border: 1px solid var(--icon-color);
    border-radius: 15px;
    padding: 15px 0;
    cursor: pointer;
}

.NDPHead{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #909294;
    font-size: 14px;
}

.NDPTitle{
    color: var(--icon-color);
    font-size: 32px;
    font-weight: bold;
}

.NDPDate{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    color: var(--icon-color);
}

.numafrad{
    position: absolute;
    width: 50%;
    border-radius: 25px;
    z-index: 3;
    background-color: #ffffff;
    top: 50%;
    right: -100%;
    transform: translateY(-50%) translateX(50%);
    z-index: 22;
    padding: 25px;
    transition: all 500ms ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pickNumAf{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.singleNumAf{
    width: 30%;
    height: 250px;
    border: 1px solid var(--icon-color);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}

.numAfSub{
    width: 100%;
    height: 40px;
    margin-top: 25px;
    background-color: var(--icon-color);
    color: #ffffff;
    border-radius: 10px;
}

.SNAFImg{
    width: 100px;
}

.SNAFNum{
    font-size: 32px;
}

.SNAFTitle{
    color: #636363;
}

.SNAFBtn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.SNAFBtn button{
    width: 40px;
    height: 40px;
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--icon-color);
    border: 1px solid var(--icon-color);
}

.footer{
    width: 100%;
    height: 45vh;
    margin-top: 25px;
    background-color: #222222;
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 25px;
}

.aboutHotelFo{
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 12px;
}

.AHFTitle , .bakhshFoot{
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
}

.AHFSub{
    color: #a3a3a3;
    text-align: justify;
    text-justify: inter-word;
}

.footSep{
    width: 1px;
    height: 100%;
    background-color: #a3a3a3;
}

.bakhshFootL{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 15px;
}

.bakhshFootL a{
    color: #a3a3a3;
    transition: all 250ms ease-in-out;
}

.bakhshFootL a:hover{
    color: #ffffff;
}

.aboutHotelImg{
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutHotelImg img{
    width: 90%;
}

.MobNav{
    width: 100%;
    height: 100px;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

.mobnavbarlogo{
    height: 90%;
}

.munuBtn{
    width: 40px;
    height: 40px;
    background-color: transparent;
    font-size: 24px;
}

.MobNavMenu{
    width: 100%;
    height: 40vh;
    z-index: 9;
    position: fixed;
    top: -40%;
    right: 0;
    background-color: #ffffff;
    border-radius: 0 0 25px 25px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    padding: 0 25px;
    transition: all 250ms ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.MobNavMenu.active{
    top: 100px;
}

.mobnavLinkS{
    width: 100%;
    font-size: 18px;
}

.mobnavLinkS.active{
    color: var(--icon-color);
}

.DateBtn{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    margin-top: -30px;
}

.DateBtn button{
    height: 30px;
    width: 30px;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.mobBannerSec{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 50px;
}

.MBSSingle{
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.MBSSingleT{
    font-size: 24px;
}

.MBSbanSep{
    width: 60%;
    height: 1px;
    background-color: #000000;
}

.mobPlaces{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    margin-top: 50px;
    gap: 25px;
}

.mobPlacesSingle{
    width: 90%;
    height: 250px;
    position: relative;
    border-radius: 25px;
}

.MPSImg{
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1;
    border-radius: inherit;
}

@media (min-width: 768px) {
    .MobNav,.MobNavMenu,.DateBtn,.mobBannerSec,.mobPlaces{
        display: none;
    }
}

@media (max-width: 768px) {
    .topHead,.topAbout,.bannerSec,.navbar,.places,.resAd,.whereTo{
        display: none;
    }

    .MobNav{
        display: flex;
    }

    .reserve{
        height: 350px;
        flex-direction: column;
        gap: 0;
        padding: 15px;
    }

    .dateInp{
        width: 90%;
        justify-content: start;
    }

    .seeRoom{
        width: 90%;
        margin-top: 0;
    }

    .datePickerCont{
        width: 100%;
        top: inherit;
        bottom: 0;
        right: -100%;
        transform: translateX(50%);
        border-radius: 25px 25px 0 0;
        padding: 25px 0;
    }

    .noMob{
        display: none;
    }

    .singleDate{
        width: 100%;
    }

    .calendar{
        margin-right: 0;
    }

    .DPCtop{
        padding: 0 25px;
    }

    .numDayPicker{
        width: 100%;
        top: inherit;
        bottom: 0;
        right: -100%;
        transform: translateX(50%);
        border-radius: 25px 25px 0 0;
        padding: 25px 0;
    }

    .NDPsingleDay{
        width: 30%;
        height: 80px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
        gap: 15px;
    }

    .NDPTitle{
        font-size: 20px;
    }

    .NDPDate{
        margin-top: 0;
    }

    .footer{
        flex-direction: column;
        height: 100vh;
    }

    .aboutHotelFo{
        width: 100%;
    }

    .numafrad{
        width: 100%;
        top: inherit;
        bottom: 0;
        right: -100%;
        transform: translateX(50%);
        border-radius: 25px 25px 0 0;
        padding: 15px;
    }

    .pickNumAf{
        flex-direction: column;
        gap: 25px;
    }

    .singleNumAf{
        flex-direction: row;
        width: 100%;
        height: 100px;
    }

    .SNAFImg{
        width: 60px;
    }

    .SNAFTitle{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .footSep{
        display: none;
    }

}