/* Base styles */
/* width */
::-webkit-scrollbar {
  width: 10px;
  border-radius: 15px;
}

/* Track */
::-webkit-scrollbar-track {
  background: none;
  margin-left: 0;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(0, 0, 0);
  border-radius: 15px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: gray;
  border-radius: 15px;
}

html,
body {
  overflow: auto !important;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  cursor: none;
}

*:hover {
  cursor: none !important;
}

.cursor-dot,
.cursor-circle {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 100000;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  mix-blend-mode: difference;
}

.cursor-circle {
  width: 40px;
  height: 40px;
  border: 2px solid white;
  border-radius: 50%;
  mix-blend-mode: difference;
}

@media (hover: none) {
  .cursor-dot,
  .cursor-circle {
    display: none;
  }
  .underline-line {
    display: none;
  }
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none !important; /* WebKit */
  width: 0 !important;
  height: 0 !important;
}

/* Ensure no scrollbar space is reserved */
* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: white;
  overflow-x: hidden;
}

/* Enhanced Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-container {
  text-align: center;
}

.loader_gallery {
  width: 80px;
  height: 80px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  position: relative;
  margin: 0 auto 20px;
}

.loader_gallery::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loader-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
}
/* Video Background with better fallback */
.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: #0a0a0a;
}

#bgVideo {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.9) 100%);
  opacity: 0.5;
}

/* Content wrapper */
.content-wrapper {
  padding-top: 100px;
  position: relative;
  z-index: 1;
}

/* Enhanced Parallax header */
.parallax-header {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

.parallax-bg {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 120%;
  height: 140%;
  background-image: url("https://images.unsplash.com/photo-1543083115-638c4d5ffc71?w=1920&q=90");
  background-size: cover;
  background-position: center;
  z-index: -1;
  filter: brightness(0.7);
}

.parallax-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.title-word {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #a24b4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  font-weight: 300;
}

/* Enhanced Filter buttons */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  padding: 0 20px;
}

.filter-btn {
  position: relative;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.filter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-text {
  position: relative;
  z-index: 1;
}

.btn-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(234, 102, 102, 0.5) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.filter-btn:hover .btn-glow {
  width: 150px;
  height: 150px;
}

.filter-btn.active {
  background: linear-gradient(135deg, #3a5ba7 0%, #b71833 100%);
  transform: translateY(-2px);
  border: 1px solid rgb(255, 255, 255);
}

.filter-btn:hover:not(.active) {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

/* Gallery container */
.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 80px;
  padding-top: 20px;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
/* Skeleton Loading Card */
.skeleton-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  animation: float 6s ease-in-out infinite;
  max-height: 200px;
}

.skeleton-card[data-height=small] {
  height: 280px;
}

.skeleton-card[data-height=medium] {
  height: 340px;
}

.skeleton-card[data-height=large] {
  height: 400px;
}

.skeleton-card[data-height=xlarge] {
  height: 460px;
}

.skeleton-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

.skeleton-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.7);
}

.skeleton-title {
  height: 24px;
  width: 70%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 0.5rem;
  animation: shimmer 1.5s ease-in-out infinite;
}

.skeleton-description {
  height: 16px;
  width: 90%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
/* Enhanced Gallery items with floating animation */
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background-color: #1a1a1a;
  cursor: pointer;
  transition: box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: float 6s ease-in-out infinite;
  max-height: 200px;
}

/* Random heights for gallery items */
.gallery-item[data-height=small] {
  height: 280px;
}

.gallery-item[data-height=medium] {
  height: 340px;
}

.gallery-item[data-height=large] {
  height: 400px;
}

.gallery-item[data-height=xlarge] {
  height: 460px;
}

.gallery-item:nth-child(odd) {
  animation-delay: 0s;
}

.gallery-item:nth-child(even) {
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotateX(0) rotateY(0);
  }
  33% {
    transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
  }
  66% {
    transform: translateY(-5px) rotateX(-1deg) rotateY(1deg);
  }
}
.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .image-overlay {
  transform: translateY(0);
}

.image-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Enhanced Fullscreen view */
.fullscreen-view {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.98);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.fullscreen-view.active {
  opacity: 1;
  pointer-events: all;
}

.fullscreen-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90%;
  max-height: 90%;
}

.fullscreen-image {
  max-width: 100%;
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-info {
  margin-top: 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.3s;
}

.fullscreen-view.active .image-info {
  opacity: 1;
  transform: translateY(0);
}

.image-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.image-description {
  font-size: 1rem;
  opacity: 0.8;
  max-width: 600px;
}

.close-btn,
.nav-btn {
  position: absolute;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
}

.close-btn {
  top: 20px;
  right: 20px;
}

.nav-btn {
  top: 50%;
  transform: translateY(-50%);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.close-btn:hover,
.nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1) translateY(-50%);
}

.close-btn:hover {
  transform: scale(1.1) rotate(90deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .header-title {
    font-size: 2.5rem;
  }
  .header-subtitle {
    font-size: 1rem;
  }
  .parallax-header {
    height: 300px;
  }
  .gallery-item {
    height: 280px;
  }
}
body.light .gradient-layer {
  background: linear-gradient(to bottom, #202020, rgba(32, 32, 32, 0));
}

body.dark .gradient-layer {
  background: linear-gradient(to bottom, #202020, rgba(32, 32, 32, 0));
}/*# sourceMappingURL=gallery.css.map */