/*!
Theme Name: Kadence Child
Theme URI: https://www.kadencewp.com/kadence-theme/
Template: kadence
Author: Kadence WP
Author URI: https://www.kadencewp.com/
Description: A child theme for the Kadence Theme.
Version: 1.0.0
License: GNU General Public License v3.0 (or later)
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: kadence-child
*/

/* Theme customization starts here
-------------------------------------------------------------- */
/*==================================================
PROJECTS GALLERY
==================================================*/
.renuom-projects-wrapper {
  width: 100%;
}
/*=========================================
FILTER
=========================================*/
.renuom-project-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 45px;
}
.renuom-project-filter button {
  border: 2px solid #ffcc00;
  background: #fff;
  color: #ffcc00;
  padding: 12px 24px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}
.renuom-project-filter button:hover,
.renuom-project-filter button.active {
  background: #ffcc00;
  color: #111;
}
/*=========================================
GRID
=========================================*/
.renuom-project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
/*=========================================
CARD
=========================================*/
.renuom-project-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #f3f3f3;
}
/*=========================================
IMAGE
=========================================*/
.renuom-project-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.renuom-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}
.renuom-project-no-image {
  width: 100%;
  height: 100%;
  background: #e8edf2;
  color: #53606b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}
.renuom-project-card:hover img {
  transform: scale(1.08);
}
/*=========================================
OVERLAY
=========================================*/
.renuom-project-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92),
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0)
  );
}
/*=========================================
CATEGORY
=========================================*/
.renuom-project-category {
  color: #f2c037;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
/*=========================================
TITLE
=========================================*/
.renuom-project-overlay h3 {
  color: #fff;
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 10px !important;
  font-weight: 700;
}
/*=========================================
LOCATION
=========================================*/
.renuom-project-location {
  color: #fff;
  opacity: 0.92;
  font-size: 15px;
}
/*=========================================
SEARCH BUTTON
=========================================*/
.renuom-lightbox-btn {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 24px;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
.renuom-lightbox-btn:hover {
  transform: scale(1.1);
}
.renuom-lightbox-btn .dashicons {
  width: 24px;
  height: 24px;
  font-size: 24px;
  line-height: 24px;
  color:#ffcc00;
}
.renuom-lightbox-btn .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/*=========================================
LOAD MORE
=========================================*/
.renuom-loadmore-wrap {
  text-align: center;
  margin-top: 50px;
}
#renuom-load-more {
  min-width: 300px;
  height: 58px;
  border-radius: 40px;
  border: 2px solid #0f6cbd;
  background: #fff;
  color: #0f6cbd;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}
#renuom-load-more:hover {
  background: #0f6cbd;
  color: #fff;
}
/*=========================================
RESPONSIVE
=========================================*/
@media (max-width: 1024px) {
  .renuom-project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .renuom-project-grid {
    grid-template-columns: 1fr;
  }
  .renuom-project-overlay {
    padding: 20px;
  }
  .renuom-project-overlay h3 {
    font-size: 24px;
  }
  .renuom-lightbox-btn {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }
  #renuom-load-more {
    width: 100%;
    min-width: 100%;
  }
}
.renuom-project-card {
  transition: 0.35s ease;
}
.renuom-project-card.hide {
  display: none;
}
/*=========================
LIGHTBOX
=========================*/
#renuom-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
  z-index: 999999;
}
#renuom-lightbox.active {
  opacity: 1;
  visibility: visible;
}
#renuom-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
}
.renuom-lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 42px;
  cursor: pointer;
}
.renuom-lightbox-prev,
.renuom-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 55px;
  cursor: pointer;
  user-select: none;
}
.renuom-lightbox-prev {
  left: 40px;
}
.renuom-lightbox-next {
  right: 40px;
}
@media (max-width: 767px) {
  .renuom-lightbox-prev,
  .renuom-lightbox-next {
    font-size: 34px;
  }
}
