@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Lato:wght@400;700&display=swap");
/*==============================================
                    Default
===============================================*/
html,
body {
  overflow-x: hidden;
}
.reply a,
.reply a:visited,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif !important;
}
p {
  font-family: "Lato", sans-serif;
  font-size: 16px;
}
/*badge*/
.badge {
  display: inline-block;
  padding: 3px 5px 4px 6px !important;
  font-size: .75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background-color: #ff0000;
  text-align: center;
  white-space: nowrap;
  /* vertical-align: baseline; */
  border-radius: 50% !important;
  position: absolute;
  top: 15px;
  right: -8px;
}
/* Custom navigation buttons */
.owl-prev,
.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.32) !important;
  color: #fff !important;
  border: none;
  font-size: 20px;
  width: 40px;
  height: 40px;
  line-height: 35px;
  text-align: center;
  cursor: pointer !important;
  z-index: 10;
  border-radius: 50%;
}

.owl-prev {
  left: 10px;
}

.owl-next {
  right: 10px;
}

.owl-prev:hover,
.owl-next:hover {
  background-color: #00aeae !important;
  cursor: pointer !important;
}
/*=============================================== 
            cart sidebar start 
===============================================*/
.cart-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  width: 320px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 99999;
}
.cart-sidebar.open {
  transform: translateX(0);
}
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-item {
  display: flex;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.cart-item-image-wrapper {
  flex: 0 0 60px;
}
.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}
.cart-item-details {
  flex: 1;
  margin-left: 10px;
}
 .cart-item-details p {
  margin-bottom: 0 !important;
}
button.remove-item{
  height: 24px;
  line-height: 0;
  font-size: 20px;
  padding: 0px 6px 6px;
}
.quantity-control {
  display: flex;
  align-items: center;
  margin-top: 5px;
}
.quantity-control button {
  padding: 0 8px;
}
.quantity {
  margin: 0 8px;
}
.cart-total {
  border-top: 1px solid #ddd;
  padding-top: 15px;
  text-align: center;
}

.close-cart {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.cart-footer {
  text-align: center;
  padding: 15px;
}

.cart-footer .checkout {
  background: #28a745;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  width: 100%;
}
/*=============================================== 
            Header start 
===============================================*/
.header {
  width: 100%;
  height: 75px;
  background: #1c1c1c4d;
  /* box-shadow: 0 0 10px #000; */
  transition: all 0.2s ease-in-out;
  z-index: 99999 !important;
  visibility: visible;
  overflow: hidden;
  position: relative;
}
#imageum-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
#imageum-header #chk1 {
  display: none;
}
#imageum-header i {
  color: #ffffff;
  cursor: pointer;
  font-size: 20px;
}
#imageum-header .logo {
  flex: 2;
  color: #2e2e2e;
  /* margin-left: 50px; */
  text-transform: uppercase;
  font-size: 15px;
}
.logo img {
  width: 150px;
}
#imageum-header .search-box {
  flex: 1;
  position: relative;
  display: none;
}
#imageum-header .search-box input {
  width: 100%;
  height: 40px;
  border: none;
  outline: none;
  background: #f2f2f2;
  border-radius: 30px;
  color: gray;
  font-size: 16px;
  padding-left: 5px;
  padding-right: 40px;
  text-align: center;
}

#imageum-header .search-box button {
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 30px;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  transform: scale(0.9);
  background: #9f9f9f;
  color: #fff;
}
#imageum-header ul {
  flex: 2;
  display: flex;
  justify-content: space-evenly;
  margin: 0;
}
#imageum-header ul li {
  list-style: none;
}
#imageum-header ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 15px;
  transition: all 0.2s ease-out;
}
#imageum-header ul li a:hover {
  border-bottom: 2px solid #00aeae;
  color: #00aeae;
}
#imageum-header .menu {
  display: none;
}
@media (max-width: 1000px) {
  #imageum-header .search-box button {
    position: absolute;
  }
  #imageum-header ul {
    position: fixed;
    top: 74px;
    right: -100%;
    background: #ffffff;
    height: calc(100vh - 290px);
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    transition: right 0.5slinear;
  }
  #imageum-header i {
    font-size: 25px;
  }

  #imageum-header .menu {
    display: block;
    /* width:100px; */
    text-align: center;
    margin-left: 15px;
  }
  #imageum-header #chk1:checked ~ ul {
    right: 0;
  }
}
/*=============================================== 
            Banner start 
===============================================*/
/* .imageum-home-banner .item {
    width: 100%;
    height: 550px;
    background-size: cover;
    background-position: center;
    padding: 85px 0 41px;
    text-align: center;
    display: block;
    align-self: center;
    align-items: center;
    align-content: center;
} */
.slider-container {
  position: relative;
  margin-top: -75px;
  z-index: 0;
}
.slider-container .item {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  z-index: 0;
  cursor: pointer !important;
}
.slider-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}
.slider-text h1 {
  font-size: 50px;
  font-weight: bold;
}
.slider-text p {
  font-size: 20px;
  font-weight: bold;
}

/*=============================================== 
            profile start 
===============================================*/
.profile-card {
  padding: 60px 0;
}
.profile-img {
  width: 70%;
  height: 100%;
  object-fit: cover;
}
.profile-content {
  align-items: center;
  align-content: center;
}
.profile-content-wrapper {
  padding: 40px !important;
  width: 80% !important;
}
.profile-content h1 {
  font-weight: bold;
}
.signature {
  font-family: "Brush Script MT", cursive;
  font-size: 24px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .profile-card {
    flex-direction: column;
  }
  .profile-img {
    width: 100%;
  }
  .profile-content {
    width: 100%;
    text-align: center;
  }
}
/*=============================================== 
            Gallery Category start 
===============================================*/
.gallery-category-sec {
  padding: 60px 0;
  background-color: #f7f8f9;
}
.gallery-category-sec .gallery-cat {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 40px;
}
.gallery-category-sec .category-gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 6px;
}
.gallery-category-sec .category-gallery-item img {
  width: 100%;
  height: 240px;
  display: block;
}
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px;
  text-align: left;
}
.overlay h3 {
  margin: 0;
  font-size: 18px;
}
.overlay p {
  margin: 5px 0 0 0;
  font-size: 11px;
  color: #f2f2f2;
  font-weight: 300;
}
@media (max-width: 992px) {
  .gallery-category-sec .gallery-cat {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .gallery-category-sec .gallery-cat {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*=============================================== 
            Gallery start 
===============================================*/
.gallery_sec {
  padding: 60px 0;
}
.gallery {
  column-count: 3;
  column-gap: 15px;
}
.gallery-item {
  width: 100%;
  margin-bottom: 15px;
  break-inside: avoid;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.gallery-item img {
  width: 100%;
  border-radius: 8px;
  display: block;
}
.load-more-container {
  text-align: center;
  margin-top: 20px;
}
.load-more-btn {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
@media (max-width: 992px) {
  .gallery {
    column-count: 2;
  }
}
@media (max-width: 576px) {
  .gallery {
    column-count: 1;
  }
}
/*=============================================== 
            portfolio start 
===============================================*/
.portfolio-section {
  padding: 60px 0;
  background-color: #f2f2f2;
}

.portfolio-image img {
  width: 70%;
  height: 500px;
  border-radius: 6px;
  max-width: 500px;
}
.portfolio-content {
  max-width: 500px;
  padding: 50px;
}
.portfolio-content h2 {
  font-size: 36px;
  font-weight: bold;
}
.portfolio-content p {
  font-size: 16px;
  color: #333;
}
.btn-view-gallery {
  background: black;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}
.btn-view-gallery:hover {
  background: #333;
  color: white;
}
@media (max-width: 992px) {
  .portfolio-container {
    flex-direction: column;
    text-align: center;
  }
}

/*=============================================== 
            footer start 
===============================================*/
.footer-row {
  background-color: #111;
  padding: 40px 0;
  font-size: 14px;
}
.copyright-row {
  background-color: #222;
  padding: 10px 0;
  text-align: center;
}
.copyright-row p {
  margin-bottom: 0;
  color: #f2f2f2;
  font-size: 12px;
}
.footer h5 {
  color: #fff;
}
.footer p {
  color: #f2f2f2;
}
.footer a {
  color: #f2f2f2;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer .social-icons a {
  display: inline-block;
  margin: 0 5px;
  font-size: 18px;
}
