


.title{
    font-family: 'Georgia', serif;
}

/* Custom scrollbar style */
  body::-webkit-scrollbar {
  	width: 4px;  
  }
  body::-webkit-scrollbar-thumb {
  	background-color: #d4a1b2;  
  	border-radius: 4px;
  }
  body::-webkit-scrollbar-track {
  	background-color: #f0f0f0;  
  	border-radius: 4px;
  }

  body.scrolled {
  	overflow: auto;  
  }

    /*.navbar-nav {
      margin: 0 auto;
    }*/
    .top-bar {
    	background-color: pink;
    }
    .top-bar a {
    	text-decoration: none;
    	color: var(--bs-body-color);
    }


/*NAVBAR*/
/*	@media (max-width: 991.98px) {
  #navbarCentered {
    position: fixed;
    top: 56px; 
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 1050;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
}*/

@media (max-width: 991.98px) {
  #navbarCentered {
    position: fixed;
     top: 56px; 
    left: 0;
    width: 250px;
    height: 100%;
    background-color: #fff;
    z-index: 1050;
    padding-top: 60px; /* offset for top navbar */
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
  }

  #navbarCentered.show {
    transform: translateX(0);
  }

  #navbarCentered .navbar-nav {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
  }

  #navbarCentered .nav-link {
    padding: 12px 16px;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #ddd;
    text-align: left;
    transition: background 0.3s;
  }

  #navbarCentered .nav-link:hover {
    background-color: #f9f9f9;
  }
}



/*slider---*/
/*.swiper-slide img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}*/

  @media (max-width: 768px) {
  	.mySwiper .swiper-slide img {
  		width: 100%;
  		/*height: 250px;*/
  		object-fit: cover;
  	}
  }


.feature-categories img {
  border-radius: 10px;
  height: 250px;
  object-fit: cover;
}




.swiper-button-next,
.swiper-button-prev {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, pink, #cccccc); /* white to gray gradient */
  color: #000;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: box-shadow 0.3s, transform 0.3s;
}

/* White arrow color */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  color: #000;
}

/* Hover effect: pop and glow */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-50%) scale(1.05);
}

/* Positioning */
.swiper-button-next {
  right: 10px;
}

.swiper-button-prev {
  left: 10px;
}



/*gallery------------*/
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }

  .gallery-item img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }

  .gallery-item:hover img {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }

  /* Modal Styles */
  .gallery-modal {
    display: none;
    position: fixed;
    z-index: 1020;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
    padding-top: 60px;
  }

  .gallery-modal .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
  }

  #caption {
    text-align: center;
    color: white;
    padding: 10px;
    font-size: 20px;
  }

  .close {
    color: white;
    font-size: 36px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 25px;
    transition: 0.3s;
    cursor: pointer;
  }

  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }

    .footer-social a {
      text-decoration: none;
      color: var(--bs-body-color);
    }

  .scroll-to-top {
  position: fixed;
  bottom: 50px;
  right: 20px;
  display: none; 
  z-index: 999;
  border-radius: 50%;
  width: 50px; 
  height: 50px; 
  text-align: center;
  padding: 0;
  font-size: 24px;
  line-height: 50px; 
  background: linear-gradient(135deg, pink, #cccccc); 
  color: #000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer; 
  border: none; 
}

.scroll-to-top:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); 
  transform: scale(1.1); 
}

.scroll-to-top:active {
  transform: scale(0.95); 
}

/*bootom nav bar*/
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
  z-index: 100;
}
.bottom-bar .nav-link {
  text-align: center;
}
.bottom-bar .navbar-nav {
  display: flex !important;
  flex-wrap: wrap;
  flex-direction: row;
}