/* Common Styles */

html {
font-size: 62.5%;	
box-sizing: border-box;
}

body{
	margin: 0;
	padding: 0;
	font-family: 'Montserrat', sans-serif;
	
}
/*End of Common Styles */

/* navbar */

/* sidebar */
.sidebar {
	width: 8rem;
	height: 100%;
	background-color: #eee;
	position: fixed;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	z-index: 10;
	}
.sidebar li{
	list-style: none;
	}
.menu-icon{
	margin-top: 3rem;
	cursor: pointer;
	}

.line{
	height: .2rem;
	width: 2.5rem;
	background-color: #222;
	margin-bottom: .6rem;
}
.line-1, .line-3 {
	width: 1.8rem;
	transition: all .4s;
}

.menu-icon:hover .line{
	width: 2.5rem;
}

.social-icon-list {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly; 
    height: 100%; 
    align-items: center;
	margin: 1.5rem;
}

.social-link {
	font-size: 2rem;
	color: #777;
	transition: color .3s;
	margin-bottom: 1.5rem;
}
.social-link:hover {
	color: #deaa86;
}

.year {
	margin-bottom: 1rem;
	font-size: 1.5rem;
	color: #555;
}
/* end of sidebar */

/* navigation */
.navigation {
	position: fixed;
	left: -32rem;
	width: 40rem;
	height: 100%;
	background: linear-gradient(to top, rgba(34, 32, 41, 1), rgba(34, 32, 41, .8)), url("images/header-1.jpg") center no-repeat;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	transition: left .8s cubic-bezier(1, 0, 0, 1);
}

.navigation form {
	position: relative;
}
.navigation-heading{
	font-family: 'Josefin Sans', sans-serif;
	font-size: 3.5rem;
	font-weight: 300;
	letter-spacing: .2rem;
	color: #deaa86;
	text-align: center;
}
.navigation-search-input{
	width: 30rem;
	padding: 1rem 2rem;
	background-color: rgba(0,0,0, .3);
	font-family: 'Josefin Sans', sans-serif;
	font-size: 1.6rem;
	color: #deaa86;
	letter-spacing: .1rem;
	outline: none;
	border: .1rem solid #555;
	border-radius: 10rem;
	transition: background-color .3s;
}

.navigation-search-input:focus{
	background-color: rgba(0,0,0, .1);
}

.navigation-search-btn {
	border: none;
	background-color: transparent;
	color: #DEAA86;
	font-size: 1.7rem;
	position: absolute;
	top: 1rem;
	right: 1rem;
	cursor: pointer;
}

.navigation-search-btn:focus {
	outline: none;
}
.navigation-list {
	list-style: none;
	padding: 0;
	height: 28rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;

}

.navigation-link {
	color:#fff;
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: .1rem;
	text-transform: uppercase;
	text-decoration: none;
	transition: color .5s;
}
.navigation-item {
	position: relative;
}
.navigation-link:before {
	content: "";
	width: 0rem;
	height: .1rem;
	background-color: #deaa86;
	position: absolute;
	top: 1rem;
	left: -4rem;
	transition: width .5s cubic-bezier(1, 0, 0, 1);	
}
.navigation-link:after {
	content: "";
	width: 0rem;
	height: .1rem;
	background-color: #deaa86;
	position: absolute;
	top: 1rem;
	right: -4rem;
	transition: width .5s cubic-bezier(1, 0, 0, 1);	
}
.navigation-link:hover{
	color: #deaa86;
}
.navigation-link:hover::before, .navigation-link:hover::after {
	width: 3rem;
}
.copyright {
	color: #fff;
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
}

.checkbox:checked ~ .navigation {
	left: 8rem;
} 
.checkbox:checked ~ .sidebar .line-1{
	transform: rotate(-405deg) translate(-5px, 6px);
	width: 2.5rem;
}
.checkbox:checked ~ .sidebar .line-2{
	opacity: 0;
}
.checkbox:checked ~ .sidebar .line-3{
	transform: rotate(405deg)translate(-5px, -6px);
	width: 2.5rem;
}

@media (max-width: 768px) {
    .sidebar {
        width: 6rem; /* Adjust for smaller screens */
    }

    .navigation {
        width: 100%;
        left: -100%;
    }

    .checkbox:checked ~ .navigation {
        left: 0;
    }
}

/* end of sidebar */
/* end of navbar */

/* header */
.header {
	margin-left: 8rem;
	height: 100vh;
	background: linear-gradient(to top, rgba(0,0,0, .6), rgba(0,0,0, .6)), url("images/header-1.jpg") center no-repeat;
	background-size: cover;
}

.brand{
	display: flex;
	cursor: pointer;
}
.hotel-heading{
	font-family: 'Josefin Sans', sans-serif;
	font-size: 2.7rem;
	font-weight: 400;
	color: #deaa86;
	letter-spacing: .2rem;
}

.banner {
	color: #ddd;
	height: 65rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.banner-heading{
	font-family: 'Josefin Sans', sans-serif;
	font-size: 7rem;
	font-weight: 400;
	margin-bottom: 0;
	animation: anim 2s;
}
.banner-paragraph{
	font-size: 3.5rem;
	font-weight: 300;
	animation: anim 1.5s .5s backwards;
}
.banner-btn{
	width: 21rem;
	padding: 1.5rem 3rem;
	font-size: 2rem;
	color: #333;
	letter-spacing: .1rem;
	border: none;
	border-radius: 10rem;
	outline: none;
	background: linear-gradient(to right, gold, goldenrod);
	cursor: pointer;
	animation: anim 1s .1s backwards;
}
.banner-btn:hover{
	background: linear-gradient(to left, gold, goldenrod);
}
.banner-btn:active{
	transform: translateY(.2rem);
}

@keyframes anim {
	0% {
		opacity: 0;
		}
	100%{
		opacity: 1;
}
}
	/* end of header */
	
	/* about us */
	
	.about-us{
		margin-left: 8rem;
		display: flex;
		background-color: #ddd;
	}
	.about-us-content{
		flex: 0 1 50%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 10rem;
		box-sizing: border-box;
	}
	.about-us-heading {
		font-family: 'Josefin Sans', sans-serif;
		font-size: 4rem;
		font-weight: 300;
		text-transform: uppercase;
		color: #555;
	}
	.small-underline {
		width: 9rem;
		height: .1rem;
		margin: 0 auto 1rem auto;
		background-color: #b85d1c;
	}
	.big-underline {
		width: 20rem;
		height: .1rem;
		background-color: #b85d1c;
	}
	.sub-heading {
		font-size: 3.5rem;
		font-weight: 300;
		letter-spacing: .2rem;
		color: #b85d1c;
	}
	.about-us-paragraph{
		font-size: 1.6rem;
		font-style: italic;
		font-weight: 300;
		text-align: center;
		margin-bottom: 5rem;
			}
	.about-us-btn{
		width: 15rem;
		padding: .7rem .5rem;
		font-family: 'Montserrat', sans-serif;
		font-size: 1.2rem;
		text-transform: uppercase;
		color: #b85d1c;
		background-color: transparent;
		border: .1rem solid #b85d1c;
		outline: none;
		cursor: pointer;
		}
.btn-arrow{
	margin-left: .5rem;
	transition: margin-left .4s;
}
.about-us-btn:hover .btn-arrow{
	margin-left: 1.5rem;
}
.about-us-images {
		flex: 1 1;
		position: relative;
	}
.image{
	width: 32rem;
	position: absolute;
	top: 50%;
	left: 50%;
	box-shadow: 0 3rem 6rem rgba(0,0,0,.4);
	border-radius: .4rem;
	border: .2rem solid #b85d1c;
}
.image-1{
	transform: translate(-20%, -90%);
}
.image-2{
	transform: translate(-70%, -70%);
}
.image-3 {
	transform: translate(-50%, -50%);
}
.image-4 {
	transform: translate(-30%, -30%);}

	/* end of about us */

/* common header*/
.common-header{
	padding: 5rem;
	text-align: center;
	color: #b85d1c;
}
.common-heading{
	font-size: 4rem;
	font-weight: 300;
	letter-spacing: .2rem;
}
.small-underline {
		width: 9rem;
		height: .1rem;
		margin: 0 auto 1rem auto;
		background-color: #b85d1c;
	}
.big-underline {
		width: 20rem;
		height: .1rem;
		margin: auto;
		background-color: #b85d1c;
	}
/* end of common header */

/* rooms */
.rooms{
	margin-left: 8rem;
	margin-right: 8rem;
	}

.rooms-cards-wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 3rem; 
	justify-items: center; 
	align-items: stretch; 
	margin-left: 8rem;
	overflow: visible;
}

.room-card {
	width: 100%; 
	max-width: 50rem; 
	background-color: #15141b;
	box-shadow: 0 3rem 6rem rgba(0, 0, 0, .3);
}
.room-img {
	width: 100%;
}
.room-card-content{
	color: #ddd;
	padding: 2rem;
}

.room-card-heading {
	margin: 0;
	font-size: 3rem;
	font-weight: 300;
}
.room-card-paragraph{
	font-size: 1.5rem;
	color: #777;
	}
.room-price{
	font-size: 5rem;
	font-weight: 300;
	text-align: right;
	margin: 0;
}
.room-card-btn{
	width: 15rem;
		padding: 1.5rem 1rem;
		font-family: 'Montserrat', sans-serif;
		font-size: 1.2rem;
		text-transform: uppercase;
		color: #b85d1c;
		background-color: transparent;
		border: .1rem solid #b85d1c;
		border-radius: 10rem;
		outline: none;
		cursor: pointer;
		}
.rooms-btn-wrapper{
	text-align: center;
}
.rooms-btn{
	width: 20rem;
	padding: 1.5rem 1rem;
	margin: 4rem 0;
	background-color: transparent;
	text-transform: uppercase;
	color: #b85d1c;
	border: .2rem solid #b85d1c;
	outline: none;
	cursor: pointer;
	box-shadow: 0 1.5rem 6rem rgba(0,0,0,.2);
	transition: all .2s;
}
.rooms-btn:hover{
	color: #ddd;
	background-color: #b85d1c;
}
/* end of rooms */
/* customers */
.customers{
	margin-left: 8rem;
	padding: 7rem 0;
	background-color: #15141b;
	text-align: center;
}
.customers-paragraph {
	font-size: 1.8rem;
	color: #ddd;
	width: 60%;
	margin: 2rem auto 5rem auto;
	text-align: center;
}
.customers-card-wrapper{
	display: flex;
	justify-content: center;
	gap: 4rem;
	flex-wrap: wrap;
}
.customer-card{
	display: flex;
    align-items: center;
    background-color: #fff;
    width: 50rem;
    border-radius: 2px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    text-align: left;
    overflow: hidden;
}
.customer-image-wrapper{
	margin-right: 1.5rem;
	flex-shrink: 0;
}
.customer-image{
	width: 20rem;
	height: 20rem;
	object-fit: cover;
	border-radius: 5px;
}
.customer-info {
	flex: 1;
	}

.customer-fullname {
	font-size: 2rem;
	font-weight: bold;
	color: #15141b;
	margin-bottom: 0.5rem;
}

.customer-paragraph-1 {
	font-size: 1.5rem;
	font-style: italic;
	color: #b85d1c;
	margin-bottom: 0.5rem;
}
.customer-paragraph-2 {
	font-size: 1.3rem;
	color: #666;
	font-style: italic;
}
/* end of customers */
/* footer */
.footer {
	margin-left: 8rem;
	}

.main-part{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	background-color: #1c1c1c;
	padding: 3rem 4rem;
}
.footer-heading{
	font-size: 2.5rem;
	font-weight: 300;
	color: goldenrod;
	margin: 1rem 0 3rem 0;
	}

.footer-list{
	list-style: none;
	padding: 0;
	}

.footer-list-item{
	margin-bottom: 1.5rem;
	line-height: 1.4;
}

.footer-list-link{
	font-size: 1.4rem;
	text-decoration: none;
	color: #bbb;
	display: inline-block;
}
.contact p{
	font-size: 1.5rem;
	color: #bbb;
	margin-bottom: 4rem;
}

.footer-form {
	display: flex;
}
.footer-input {
	width: 25rem;
	padding: 1rem;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 1.8rem;
	color: #444;
	outline: none;
}

.footer-btn{
	padding: 1rem;
	background-color: #b85d1c;
	color: #ddd;
	border: none;
}

.gallery {
	max-width: 45rem;
}
.gallery-images {
	display: flex;
	flex-wrap: wrap;
}
.footer-image:hover{
	transform: scale(1.3);
	opacity: .8;
}

.image-wrapper{
	width: 12rem;
	margin: .4rem;
	overflow: hidden;
}

.footer-image{
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	transition: all .5s;
}

.creator-part{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #111;
	padding: 1rem 4rem;
	width: 100%;
}

.copyright-text{
	font-size: 1.3rem;
	color: #aaa;
	flex: 1;
	text-align: center;
	margin: 0;
}
.text-right{
	font-size: 1.4rem;
	color: #bbb;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex:1;
	margin: 0;
	background-color: #111;
}
.text-right i {
	font-size: 2rem;
	margin: 0 0 .5rem;
	color: tomato;
}

.text-right span {
	color: gold;
}
/* end of footer */

@media (max-width: 768px) {
    .main-part {
        flex-direction: column;
        text-align: center;
    }

    .footer-list-wrapper,
    .contact,
    .gallery {
        margin-bottom: 2rem;
    }

    .creator-part {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
