:root {
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --tertiary-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --quaternary-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  --light-bg: #f8f9ff;
  --card-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
  --hover-shadow: 0 20px 40px rgba(50, 50, 93, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
}

.gallery-sec-1 .section-title {
  text-align: center;
  position: relative;
}
.gallery-sec-1 .section-title h2 {
  font-size: 3rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}
.gallery-sec-1 .section-title p {
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}
.gallery-sec-1 .gallery-filters {
  text-align: center;
  margin-bottom: 20px;
}
.gallery-sec-1 .nav-tabs {
  border: none;
  justify-content: center;
  margin-bottom: 20px;
}
.gallery-sec-1 .nav-tabs .nav-link {
  background: white;
  border: 2px solid transparent;
  color: #6c757d;
  padding: 12px 30px;
  margin: 5px 10px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.gallery-sec-1 .nav-tabs .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  transition: left 0.3s ease;
  z-index: -1;
}
.gallery-sec-1 .nav-tabs .nav-link:hover, .gallery-sec-1 .nav-tabs .nav-link.active {
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--card-shadow);
}
.gallery-sec-1 .nav-tabs .nav-link:hover::before, .gallery-sec-1 .nav-tabs .nav-link.active::before {
  left: 0;
}
.gallery-sec-1 .gallery-item {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: white;
  box-shadow: var(--card-shadow);
  transition: all 0.4s ease;
}
.gallery-sec-1 .gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}
.gallery-sec-1 .gallery-item .item-image {
  position: relative;
  overflow: hidden;
  height: 220px;
  border-radius: 20px 20px 0 0;
}
.gallery-sec-1 .gallery-item .item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-sec-1 .gallery-item:hover .item-image img {
  transform: scale(1.1);
}
.gallery-sec-1 .gallery-item .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-sec-1 .gallery-item:hover .image-overlay {
  opacity: 1;
}
.gallery-sec-1 .gallery-item .overlay-btn {
  background: white;
  color: #333;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform: translateY(20px);
}
.gallery-sec-1 .gallery-item .overlay-btn:hover {
  background: var(--primary-gradient);
  color: white;
  transform: scale(1.1);
}
.gallery-sec-1 .gallery-item:hover .overlay-btn {
  transform: translateY(0);
}
.gallery-sec-1 .gallery-item .item-content {
  padding: 0px 25px;
  text-align: center;
}
.gallery-sec-1 .gallery-item .item-content .item-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}
.gallery-sec-1 .gallery-item .item-content .item-category {
  color: #6c757d;
  font-size: 0.95rem;
}
.gallery-sec-1 .gallery-item .item-content .item-description {
  color: #777;
  line-height: 1.6;
  font-size: 0.9rem;
}
.gallery-sec-1 .gallery-item.nature {
  background: linear-gradient(135deg, rgba(67, 233, 123, 0.05) 0%, rgba(56, 249, 215, 0.05) 100%);
}
.gallery-sec-1 .gallery-item.portrait {
  background: linear-gradient(135deg, rgba(240, 147, 251, 0.05) 0%, rgba(245, 87, 108, 0.05) 100%);
}
.gallery-sec-1 .gallery-item.architecture {
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.05) 0%, rgba(0, 242, 254, 0.05) 100%);
}
.gallery-sec-1 .gallery-item.street {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}
.gallery-sec-1 .load-more-btn {
  background: var(--primary-gradient);
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.gallery-sec-1 .load-more-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}
.gallery-sec-1 .load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--hover-shadow);
}
.gallery-sec-1 .load-more-btn:hover::before {
  width: 300px;
  height: 300px;
}
@media (max-width: 768px) {
  .gallery-sec-1 .section-title h2 {
    font-size: 2.5rem;
  }
  .gallery-sec-1 .gallery-filters {
    margin-bottom: 30px;
  }
  .gallery-sec-1 .filter-btn {
    padding: 10px 20px;
    margin: 5px;
    font-size: 0.9rem;
  }
  .gallery-sec-1 .gallery-item .item-image {
    height: 220px;
  }
  .gallery-sec-1 .gallery-item .item-content {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .gallery-sec-1 .section-title h2 {
    font-size: 2rem;
  }
  .gallery-sec-1 .filter-btn {
    display: block;
    width: 80%;
    margin: 10px auto;
  }
  .gallery-sec-1 .gallery-item .item-image {
    height: 200px;
  }
}
.gallery-sec-1 .loading-placeholder {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}
@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}/*# sourceMappingURL=galleryDesign1.css.map */