*
{
	margin: 0;
	padding: 0;
	font-family: "Kalam", sans-serif;
}
#banner
{
	background: linear-gradient(rgba(0,0,0,0.5),#c8a2c8), url(image/bnr1.jpg);
	width: 100%;
	height: 400px;
	background-size: cover;
	background-position: center;
	height: 100vh;
}
.logo
{
	width: 300px;
	position: absolute;
	top:-6%;
	left:2%;
}
.banner-text
{
	text-align: center;
	color: #e6e6fa;
	padding-top: 180px;
	
}
.banner-text h1
{
	font-size: 130px;
	font-family: 'Merriweather', serif;
}
.banner-text p
{
	font-size: 40px;
	font-style: italic;
}

.banner-btn
{
	margin: 25px auto 0;
}
.banner-btn a
{
	width: 150px;
	text-decoration: none;
	color: white;
	font-weight: bold;
	display: inline-block;
	margin: 0 10px;
	padding: 12px 0;
	border: 2px solid white;
	position: relative;
	z-index: 1;
	transition: color 0.5;


}
.banner-btn a span
{
	width: 0%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: white;
	z-index: -1;
	transition: 0.5s;
}
.banner-btn a:hover span
{
	width: 100%;

}
.banner-btn a:hover 

{
	color: black;
	font-weight: bold;
}
#navigation
{
	width: 200px;
	height: 100vh;
	position: fixed;
	right: -200px;
	top: 0;
	background: #2f3030;
	opacity: 0.950;
	z-index: 2;
	transition: 0.5s;
}

nav ul li
{
	list-style: none;
	margin: 50px 20px;
 
}
nav ul li a
{
	text-decoration: none;
	color: white;
}
#menubtn
{
	width: 50px;
	height: 50px;
	background: #c8a2c8;
	text-align: center;
	position: fixed;
	right: 30px;
	top:20px;
	z-index: 3;
	cursor: pointer;
	border-radius: 3px;
}
#menubtn img
{
	width: 20px;
	margin: 15px;
}




@media screen and (max-width: 770px)
{
	
.banner-btn a
	{
		display: block;
		margin: 20px auto
	}

.banner-text h1
	{
		font-size: 60px;
	}
.banner-text p
{
	font-size: 30px;
}
.logo
{
	width: 150px;
	height: 150px;
	text-align: center;
	position: fixed;
	right: 20px;
	top:-2%;
	z-index: 2;
	cursor: pointer;
	border-radius: 3px;
}

}




/* feature*/

#feature
{
	width: 100%;
	padding: 70px 0;
	background: #efefef;

}
.title-text
{
	text-align: center;padding-bottom: 70px;
}
.title-text p
{
	top: 10px;
	margin: auto;
	font-size: 20px;
	color: #c8a2c8;
	font-weight: bold;
	position: relative;
	z-index: 1;
	display: inline-block;
}
/*
.title-text p::after
{
	content: '';
	width: 50px;
	height: 35px;
	background: linear-gradient(#c8a2c8,#fff);
	position: absolute;
	top: -20px;
	left: 0;
	z-index: -1;
	transform: rotate(10deg);
	border-top-left-radius: 35px;
	border-bottom-right-radius: 35px;
}
*/
.title-text h1
{
	font-size: 40px;
	color: #55565c;
}

.feature-box
{
	width: 80%;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	text-align: center;
	
}
.features
{
	flex-basis: 50%;
}
.features-img
{
	flex-basis: 50%;
	margin: auto;
}
.features-img img
{
	width: 70%;
	border-radius: 10px;
}
.features h1
{
	text-align: left;
	margin-bottom: 10px;
	font-weight: 100;
	color: #c8a2c8;
	font-weight: bold;
}
.features-desc
{
	display: flex;
	align-items: center;
	margin-bottom: 40px; 

}
.features-icon .fa
{
	width: 50px;
	height: 50px;
	font-size: 30px;
	line-height: 50px;
	border-radius: 8px;
	color:  #c8a2c8;
	border: 1px solid #55565c;

}
.features-text p
{
	padding: 0 20px;
	font-weight: bold;
	text-align: initial;

}

@media screen and (max-width: 770px)
{

.title-text p
{
	top: 5px;
	margin: auto;
}

.title-text h1
{
	font-size: 30px;
}
.features
{
	flex-basis: 100%;
}
.features-img
{
	flex-basis: 100%;
}
.features-img img
{
	width: 100%;
	
}
.features-text p
{
	text-align: justify;
}
}

/* feature*/



/* services*/
.services-section{
	padding-top: 20px;
	text-align: center;
	background: #f8f8f8;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px;
  background: #f8f8f8;

}

.servicebox {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicebox:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.servicebox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.servicebox .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background-color: #c8a2c8;
  opacity: 0.5;
}

.servicebox .servicetitle {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 18px;
  font-weight: bold;
  z-index: 1;
  text-align: center;
}

/* celebration section*/

#service

{
	width: 100%;
	padding: 70px 0;
	background: #efefef;

}
.service-box
{
	width: 80%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin: auto;
}

@media screen and (max-width: 770px)
{
.single-service
{
	flex-basis: 48%;  
	margin-bottom: 30px;

}
.service-desc p
{
	font-size: 12px;
	color: white;
}
a p
{
	color: white;
}
a h3 
{
	color: white;
}
a .service-desc
{
	width: 90%;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	transition: 1s;
	}

a .single-service:hover
{
	bottom: 10%;
	opacity: 1;
}

}


/* services end*/




/*celebration section start*/

.box {   
	width: 250px;   
	background: #c8a2c8;   
	border-radius: 12px;   
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);   
	overflow: hidden;   
	text-align: center;   
	margin: 20px;   
	padding-bottom: 15px;   
	transition: transform 0.3s ease; 
} 
 
.box:hover {
   transform: translateY(-5px); 
} 
 
.box img {
   width: 100%;   
   height: 180px;   
   object-fit: cover;   
   border-bottom: 2px solid #eee; 
} 
 
 .price{
 	display: inline-block;
 	font-size: 1em;
 	font-weight: 500;
 	color: #ff6f61;
 	margin-bottom: 8px;



 }

.box p {
   font-size: 1.2em;   
   margin: 10px 0;   
   font-weight: 600;   
   color: #333; 
} 
 
.btn {
	width: 40%;
   margin: 5px;   
   padding: 8px 16px;   
   border: none;   
   border-radius: 6px;   
   cursor: pointer;   
   font-weight: 500; 
} 
 
.btn.view {
   background-color: #f0f0f0;   
   color: #333; 
} 
 
.btn.book {
   background-color: #ff6f61;   
   color: white; 
} 
 

 @media screen and (max-width: 770px)
{
.box {   
	width: 100%;
	margin: 15px auto;

}
.box img {
	 width: 100%;  
	height: 260px;
}
.box p {
	font-size: 1.1em;
}
.btn {
	width: 90%;
	padding: 10px;
	font-size: 0.95em;
}
}

/*celebration section end*/


/* footer start*/

#footer
{
	padding: 100px 0 20px;
	background: #efefef;
}
.footer-row
{
	width: 80%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	font-weight: bold;
}
.footer-left, .footer-right
{
	flex-basis: 45%;
	padding: 10px;
	margin-bottom: 20px;
}

.footer-right
{

	text-align: right;
}
.footer-row h1
{
	margin: 10px 0;
}
.footer-row p, a
{
	line-height: 35px;
	color: #55565c;

}
.footer-left .fas, .footer-right .fas
{
	font-size: 20px;
	color: #55565c;
	margin: 15px;
}
.social-media
{
	text-align: center;
}
.social-media .fab
{
	border: 1px solid #55565c;
	height: 45px;
	width: 40px;
	font-size: 20px;
	line-height: 40px;
	color: #55565c;
	margin: 5px;

}
.copyrigt
{
	text-align: center;
	color: #55565c;
	font-size: 30px;
}
@media screen and (max-width: 770px)
{
.footer-row
{
	width: 100%;
	font-size: 10px;
	margin-bottom: 10px;
}
.footer-right
{

	text-align: left;
}
.footer-left, .footer-right
{
	flex-basis: 100%;
	margin: 20px;
}
.footer-left .fas, .footer-right .fas
{
	margin: 10px;
	font-size: 10px;
}


}
.copyrigt
{
	font-size: 10px;
}

html
{
	scroll-behavior: smooth;
}

/* footer end*/


/
/* title & price */
.title {
  font-weight: bold;
  margin: 10px 0 5px;
}

.price {
  font-size: 18px;
  color: green;
  font-weight: bold;
}

/* buttons */
.btn {
  padding: 8px 15px;
  margin: 8px 5px 0 0;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.view {
  background: #2196f3;
  color: white;
}

.book {
  background: #ff9800;
  color: white;
}

/* mobile friendly */

#imageModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#imageModal img {
  max-width: 95%;
  max-height: 85vh;
  border-radius: 10px;
}

#closeModal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  color: white;
  cursor: pointer;
}

#prevBtn, #nextBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  font-size: 30px;
  padding: 10px 15px;
  color: white;
  cursor: pointer;
}

#prevBtn { left: 10px; }
#nextBtn { right: 10px; }









