
/* https://themeforest.net/item/sharan-hotel-resort-booking-template/24074381 */


:root {
    --primaryColor: #a87373;
    --darkColor: black;
}

/* ==============common-css-styling-start==============*/

*, *:after, *:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: "Poppins", serif;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}


/* ===============common-css-styling-end===============*/

/* ==================header-area-start================= */

#header-area {
    background: rgb(193, 185, 112);
    display: flex;
    height: 120px;
    animation-name: background-c;
    animation-duration: 5s;
}

@keyframes background-c {
    from {
        background:#ff9001;
    }
    to {
        background: rgb(193, 185, 112);
    }
}

#header-area .logo-area {
    flex-basis: 40%;
    margin-top: 5px;
}


#header-area .logo-area img {
    width: 237px;
    margin-left: 10px;
}

#header-area .contact-area {
    flex-basis: 60%;
    display: flex;
    justify-content: space-evenly;
    padding-left: 20px;
    margin-top: 25px;
}


#header-area .contact-area .child-contact {
    padding-left: 20px;
    position: relative;
}

#header-area .fa-solid {
	position: absolute;
	top: 1px;
	left: -2px;
	color: #fff;
	background: #ff9001;
	padding: 12px 12px;
	border-radius: 50%;
    font-size: 1.25rem;
}
#header-area .fa-location-dot {
	padding: 12px 14px;

}


#header-area .fa-regular {
    position: absolute;
	top: 1px;
	left: -2px;
    color: #fff;
    background: #ff9001;
    padding: 15px;
    border-radius: 50%;
    padding: 12px 12px;
    font-size: 1.25rem;
}


#header-area .contact-area .child-contact p {
    display: inline-block;
    color: #090808;
    font-weight: 500;
    padding-left: 30px;
}


#header-area .color-grey {
    color: #575252;
}



/* ==================header-area-end================= */


/* ==================main-area-start================= */

#menu-body {
    position: sticky;
    top: 26px;
    left: 0;
    z-index: 5;
}



#main-menu {
	width: 95%;
	margin: auto;
	background: #ff9001;
    padding: 15px 0;
	padding-left: 38px;
	border-radius: 5px;
	display: flex;
	justify-content: space-between;
	position: absolute;
	top: -26px;
	left: 33px;
    animation-name: menu-ani;
    animation-duration: 2s;
    animation-timing-function: linear;
}

@keyframes menu-ani {
    from {
        /* visibility: hidden; */
        transform: translate(0px, 30px)
    }

    to {
        transform: translate(0px, 0px)
    }
}


#main-menu ul {
    list-style: none;
}


#main-menu ul li {
   display: inline-block;
}


#main-menu ul li a {
   display: inline-block;
   color: #fff;
   margin-right: 35px;
   font-size: 1.125rem;
   transition: 0.5s;
}


#main-menu ul li a:hover {
    transform: scale(1.2);
    color: green;
}


#main-menu .menu {
   flex-basis: 70%;
}


#main-menu .search-area {
   flex-basis: 30%;
}


#main-menu .search-area input {
	width: 261px;
	height: 22px;
    padding: 10px;
    border-radius: 10px;
    border: none;
}


#main-menu .search-area {
    text-align: right;
}

#main-menu .fa-magnifying-glass {
	color: #fff;
	margin-right: 20px;
	position: relative;
	top: 0;
	left: -29px;
	color: grey;
	font-size: 14px;
}

#main-menu .fa-envelope {
    color: #fff;
    margin-right: 40px;
}



/* ==================main-area-end================= */


/* ==================hero-area-start================= */

.hero-area {
    background: url(images/room-background.jpg) no-repeat center center  / cover; 
    height: 650px;
    
}

.hero-area::before {
    content: '';
    display: block;
    width: 100%;
    height: 650px;
    background: var(--darkColor);
    position: absolute;
    opacity: 0.5;
}


.hero-area .heading {
    width: 100%;
	padding-top: 250px;
	color: #fff;
	position: absolute;
    text-align: center;
}


.hero-area .heading h3 {
    font-size: 1.125rem;
}

.hero-area .heading h1 {
    margin-bottom: 10px;
    animation-name: h3color;
    animation-duration: 5s;
    font-size: 4rem;
}

.hero-area .heading p {
    font-size: 0.8125rem;
    animation-name: h3color;
    animation-duration: 2s;
}

#top-scroll {
    width: 35px;
    height: 40px;
    position: fixed;
    top: 600px;
    right: 0;
    text-align: center;
    z-index: 10;
}

.fa-angle-up {
    background:#fb8620;
    width: 35px;
    height: 40px;
    color: black;
    font-size: 18px;
    display: block;
    padding: 8px 10px;
    animation-name: icon-up-down;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes icon-up-down {
    0%{
        padding-top: 8px;
    }

    100%{
        padding-top: 15px;
    }
}


.settings {
	position: fixed;
	top: 406px;
	z-index: 5;
	background: #18c4b3;
	width: 40px;
	height: 38px;
}


.fa-gear {
	color: black;
	font-size: 20px;
	position: absolute;
    padding: 8px;
    animation-name: roll;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes roll {
    0% {
        transform: rotate(-390deg);  
    }
    /* 50% {
        transform: rotate(200deg);  
    } */
    100% {
        transform: rotate(390deg);  
    }
}


/* ==================hero-area-end================= */



/* ==============blog-area-start===============*/

#blog-area {
    padding-top: 55px;
    background: url(images/blog-area-background.jpg) no-repeat center center / cover;
    position: relative;
    height: 855px;
}


#blog-area::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.7;
}

#blog-area > h1{
    position: relative;
    z-index: 4;
    color: #fff;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 50px;
}

#blog-area > h1 span{
    color: #d3d91f;
}


#blog-area .border-1 {
	position: absolute;
	top: 10%;
	left: 33%;
	border-top: 2px solid #d3d91f;
	width: 63px;
	height: 3px;
	margin: auto;
}


#blog-area .border-2 {
	position: absolute;
	top: 11%;
	left: 35%;
	border-top: 2px solid #d3d91f;
	width: 36px;
	height: 3px;
	margin: auto;
}


#blog-area .border-3 {
	position: absolute;
	top: 10%;
	left: 62%;
	border-top: 2px solid #d3d91f;
	width: 55px;
	height: 3px;
	margin: auto;
}

#blog-area .border-4 {
	position: absolute;
	top: 11%;
	left: 62%;
	border-top: 2px solid #d3d91f;
	width: 37px;
	height: 3px;
	margin: auto;
}

.card-area {
    display: flex;
    justify-content: space-evenly;
    position: absolute;
    width: 100%;
}


.card-area .card {
    flex-basis: 28%;
    background: #ffffff;
    
}


.card-area .card .card-img {
    background: url(images/card-background.jpg) no-repeat center center / cover;
    width: 100%;
    height: 250px;
}


.card-area .card .card-img {
    background: url(images/card-background.jpg) no-repeat center center / cover;
    width: 100%;
    height: 250px;
}


.card-area .card .card-img::before {
    content: '';
    background:black;
    width: 0%;
    height: 250px;
    position: absolute;
    display: block;
    opacity: 0.3;
    transition: 1s;
}

.card-area .card:hover .card-img::before {
    width: 28%;

}




.card-area .card .card-content {
    padding-left: 20px;
}


.card-area .card .card-text p:nth-child(1) {
    margin: 25px 0;
    font-size: 0.875rem;
}


.card-area .card .card-text span {
    color: #ff9001;
    font-size: 2.5rem;
    font-weight: 700;
    border-bottom: 2px solid #ff9001;
    padding-right: 8px;
}

.card-area .card .card-text h1 {
    font-size: 1.3rem;
    font-weight: 500;
}


.card-area .card .card-text p:nth-child(3) {
    margin: 25px 0;
    font-size: 0.9375rem;
    color: #8c7f7f;
}


.card-area .card .card-text a {
    font-size: 0.9375rem;
    display: inline-block;
    margin-bottom: 20px;
    transition: 0.2s;
    font-weight: 700;
    color: #551a8b;
}

.card-area .card .card-text a:hover {
    color: #ff9001;
}


.card-area .card .card-text .fa-chevron-right {
    font-size: 13px;
    transform: translate(15px, 0px);
    animation-name: favani;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes favani {
   
    0% {
        transform: translate(15px, 0px); 
    }
   
    100% {
        transform: translate(5px, 0px); 
    }


    
}

.footer-blog {
    overflow: hidden;
    height: 86%;
}


.footer-blog h1 {
	color: #ffffff;
	text-align: right;
	margin-top: 576px;
	margin-right: 92px;
    font-size: 5rem;
}

/* ==============blog-area-start===============*/


#footer-area {
    width: 100%;
    background: #f2eeee;
    padding: 20px 30px;
}

#footer-area .footer-heading {
    width: 95%;
    background: red;
    margin: auto;
    padding: 20px 10px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}


#footer-area .footer-heading {
    width: 95%;
    background: #f5bf23;
    margin: auto;
    padding: 20px 30px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}


#footer-area .footer-heading .left-side h2 {
    font-weight: 400;
}

#footer-area .footer-heading .left-side p {
    font-size: 0.875rem;
}


#footer-area .footer-heading .right-side input {
    background: black;
    border: none;
    padding: 10px 10px;
    padding-right: 120px;
    margin-right: -10px;
}

#footer-area .footer-heading .right-side button {
	background: #fff;
	padding: 7px 30px;
	padding-bottom: 10px;
	cursor: pointer;
	color: black;
}

#footer-area .footer-heading .right-side input::placeholder {
    color: grey;
}




#footer-area .child-footer {
    display: flex;
    justify-content: space-evenly;
}

#footer-area .child-footer .logo-area {
    flex-basis: 25%;
}

#footer-area .child-footer .logo-area p {
    flex-basis: 25%;
    font-size: 0.8rem;
    margin-left: 20px;
}

#footer-area .child-footer .logo-area .icon {
    font-size: 0.8375rem;
    margin-left: 20px;
    margin-top: 20px;
    cursor: pointer;
}

#footer-area .child-footer .logo-area .icon .fa-brands {
    width: 35px;
    border: 1px solid #f75708;
    text-align: center;
    padding: 8px 0;
    color: #f75708;
    transition: 0.5s;
}


#footer-area .child-footer .logo-area .icon .fa-brands:hover {
    border: 1px solid yellow;
    background: yellow;
    color: black;
}




#footer-area .child-footer .logo-area .icon .fa-solid {
    width: 35px;
    border: 1px solid #f75708;
    text-align: center;
    padding: 8px 0;
    color: #f75708;
    transition: 0.5s;
    
}

#footer-area .child-footer .logo-area .icon .fa-solid:hover {
    border: 1px solid yellow;
    background: yellow;
    color: black;
}



#footer-area .child-footer .contact-area {
    flex-basis: 25%;
}

#footer-area .child-footer .contact-area h1 {
	flex-basis: 25%;
    margin-bottom: 20px;
	font-size: 1.5rem;
	margin-top: 15px;
}

#footer-area .child-footer .contact-area p {
    margin-bottom: 17px;
    font-size: 0.85rem;
}

#footer-area .child-footer .links-area {
    flex-basis: 25%;
}


#footer-area .child-footer .links-area h1 {
    margin-bottom: 20px;
	font-size: 1.5rem;
	margin-top: 15px;
}



#footer-area .child-footer .links-area a {
    display: block;
    font-size: 0.85rem;
    border-bottom: 1px dotted black;
    width: 90%;
    padding: 6px 0px;
    color: black;
    transition: 0.5s;
}

#footer-area .child-footer .links-area a:hover {
    color: #ea6a0c;
}

#footer-area .child-footer .post-area {
    flex-basis: 25%;
}



#footer-area .child-footer .post-area > h1 {
    margin-bottom: 20px;
	font-size: 1.5rem;
	margin-top: 15px;
}


#footer-area .child-footer .post-area p {
    font-size: 0.75rem;
}



#footer-area .child-footer .post-area .child-post {
    display: flex;
    justify-content: space-between;

}


#footer-area .child-footer .post-area .left-area {
    background: #ffaa075c;
    margin-top: 10px;
    flex-basis: 15%;
    color:rgb(255, 255, 255);
    text-align: center;

}


#footer-area .child-footer .post-area .left-area h1 {
    font-size: 1.4rem;
    padding: 3px;
    transition: 0.5s;
    color: #0b0a0a;
}

#footer-area .child-footer .post-area .left-area h1:hover {
    color: red;
}


#footer-area .child-footer .post-area .left-area p{
    font-size: .625rem;
    color: #6a3a3a;
    
}


#footer-area .child-footer .post-area .right-area {
    margin-top: 10px;
    flex-basis: 85%;
    padding-left: 20px;
}


#footer-area .child-footer .post-area .right-area > p {
    margin-bottom: 10px;
}


#footer-area .child-footer .post-area .right-area p:last-child {
    color: #534343;
}





#footer-area img {
    width: 200px;
}

#copy-right-area {
    background: black;
    text-align: center;
    padding: 20px;
}


#copy-right-area  p {
    color: grey;
    font-size: 0.8rem;
}

