*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Poppins', sans-serif;
}

body{
  background: linear-gradient(to bottom, #3b2f80, #5c0066);
  color: #fff;
}

/* HEADER */
.header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 20px;
  background:#4b57a6;

}

.logo{
  font-weight:700;
  font-size:20px;
}

.logo span{
  font-weight:300;
}

.menu{
  font-size:26px;
  cursor:pointer;
}

/* MENU BUTTON */
.menu-btn{
  
  top:15px;
  right:15px;   /* move button to right */
  font-size:24px;
  color:#fff;
  z-index:1001;
  cursor:pointer;
}

/* SIDE NAV (RIGHT SIDE) */
.side-nav{
  position:fixed;
  top:0;
  right:-260px;   /* move outside screen */
  width:260px;
  height:100%;
  background:#1b1e34;
  padding:20px;
  transition:0.3s ease;
  z-index:1002;
}

/* ACTIVE STATE */
.side-nav.active{
  right:0;   /* slide in from right */
}

/* CLOSE BUTTON */
.close-btn{
  text-align:left;   /* looks better on right sidebar */
  font-size:20px;
  cursor:pointer;
  margin-bottom:20px;
}

/* NAV LINKS */
/* NAV LINKS */
.side-nav ul li a{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  text-decoration:none;
  font-size:16px;
  padding:10px;
  border-radius:8px;
  transition:0.3s;
}

/* ICON STYLE */
.side-nav ul li i{
  width:30px;
  height:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#2c2f4a;
  border-radius:50%;
  transition:0.3s;
}

/* HOVER EFFECT */
.side-nav ul li a:hover{
  background:#ff4b7d;
  transform:translateX(-5px);
}

/* ICON ANIMATION ON HOVER */
.side-nav ul li a:hover i{
  background:#fff;
  color:#ff4b7d;
  transform:rotate(15deg) scale(1.2);
}

/* ACTIVE CLICK EFFECT */
.side-nav ul li a:active{
  transform:scale(0.95);
}
/* SLIDE-IN ITEMS ANIMATION */
.side-nav ul li{
  opacity:0;
  transform:translateX(30px);
  animation:slideIn 0.4s forwards;
}

.side-nav.active ul li:nth-child(1){ animation-delay:0.1s; }
.side-nav.active ul li:nth-child(2){ animation-delay:0.2s; }
.side-nav.active ul li:nth-child(3){ animation-delay:0.3s; }
.side-nav.active ul li:nth-child(4){ animation-delay:0.4s; }
.side-nav.active ul li:nth-child(5){ animation-delay:0.5s; }
.side-nav.active ul li:nth-child(6){ animation-delay:0.6s; }
.side-nav.active ul li:nth-child(7){ animation-delay:0.7s; }

@keyframes slideIn{
  to{
    opacity:1;
    transform:translateX(0);
  }
}

/* OVERLAY */
.overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
  opacity:0;
  visibility:hidden;
  transition:0.3s;
  z-index:1000;
}

.overlay.active{
  opacity:1;
  visibility:visible;
}

/* HERO SLIDER */
.hero{
  width:100%;
  height:250px;
  overflow:hidden;
  position:relative;
}

.slider{
  width:100%;
  height:100%;
  position:relative;
}

.slide{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition: opacity 1s ease-in-out;
}

.slide.active{
  opacity:1;
}

/* DOTS */
.dots{
  position:absolute;
  bottom:10px;
  width:100%;
  text-align:center;
}

.dot{
  display:inline-block;
  width:10px;
  height:10px;
  margin:5px;
  background:#fff;
  border-radius:50%;
  opacity:0.5;
  transition:0.3s;
}

.dot.active{
  opacity:1;
  transform:scale(1.2);
}

/* COLLECTION */
.collection{
  text-align:center;
  padding:20px;
}



.collection h1{
  font-size:28px;
  margin-bottom:20px;
  color: #4b57a6;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

/* CARD */
.card{
  background:#fff;
  border-radius:6px;
  padding:10px;
}

.card img{
  width:100%;
  height:160px;
  object-fit:cover;
}

.card p{
  color:#000;
  margin-top:10px;
  font-weight:500;
}

.card{
  text-decoration:none;
  color:inherit;
  display:block;
}

/* FOOTER */
#footer{
  background: linear-gradient(to right, #2b2e4a, #1b1e34);
  color:#fff;
  padding:40px 20px 20px;
}

/* GRID */
.footer-container{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap:25px;
}

/* BOX */
.footer-box h3{
  margin-bottom:15px;
  font-size:18px;
  position:relative;
}

.footer-box h3::after{
  content:'';
  width:40px;
  height:2px;
  background:#ff4b7d;
  position:absolute;
  left:0;
  bottom:-5px;
}

.footer-box p{
  font-size:14px;
  color:#ccc;
  margin:8px 0;
}

/* ICONS */
.footer-box i{
  margin-right:8px;
  color:#ff4b7d;
}

/* SOCIAL */
.footer-social{
  text-align:center;
  margin-top:25px;
}

.footer-social a{
  display:inline-block;
  margin:0 10px;
  width:35px;
  height:35px;
  line-height:35px;
  background:#fff;
  color:#000;
  border-radius:50%;
  transition:0.3s;
}

.footer-social a:hover{
  background:#ff4b7d;
  color:#fff;
}

/* COPYRIGHT */
.footer-bottom{
  text-align:center;
  margin-top:20px;
  font-size:13px;
  color:#aaa;
}

.google-reviews{
  padding:30px 20px;
  text-align:center;
}

.map-review{
  border-radius:10px;
  overflow:hidden;
  margin-bottom:15px;
}

.review-btn{
  display:inline-block;
  padding:10px 20px;
  background:#fff;
  color:#000;
  border-radius:20px;
  text-decoration:none;
  font-weight:500;
}
.reviews{
  padding:30px 20px;
  text-align:center;
}

.reviews h2{
  margin-bottom:20px;
}

.review-container{
  display:flex;
  overflow-x:auto;
  gap:15px;
}

.review-card{
  min-width:250px;
  background:#fff;
  color:#000;
  padding:15px;
  border-radius:10px;
  text-align:left;
}

.stars{
  color:gold;
  margin:10px 0;
}

/* 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: 30px 0;
  background: #efefef;

}
.service-box
{
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: auto;
}
.title-text
{
  text-align: center;
  padding-bottom: 20px;
}
.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 h1
{
  font-size: 40px;
  color: #55565c;
}

@media screen and (max-width: 770px)
{
  .title-text p
{
  top: 5px;
  margin: auto;
}

.title-text h1
{
  font-size: 30px;
}
.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: #fff;   
  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: #4b57a6;   
   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*/


/* 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; }


