/**
 * Gallery Page Custom Styles
 * Unique gradient color scheme - Blue/Teal theme
 */

/* Gallery Page Breadcrumb - Blue/Teal Gradient */
.breadcrumb-banner-area {
  position: relative;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
  padding-top: 20px !important;
  margin-top: 0;
  overflow: hidden;
}

.breadcrumb-banner-area::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
  z-index: 0;
}

.breadcrumb-text {
  position: relative;
  z-index: 1;
  padding-bottom: 30px;
}

/* Animated wave effect */
.breadcrumb-banner-area::before {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 200%;
  height: 150px;
  background: linear-gradient(90deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  border-radius: 50%;
  animation: wave 15s ease-in-out infinite;
  z-index: 0;
}

@keyframes wave {
  0%, 100% {
    transform: translateX(-50%) translateY(0) rotate(0deg);
  }
  50% {
    transform: translateX(-25%) translateY(-20px) rotate(2deg);
  }
}

/* Camera icon animation for gallery theme */
.breadcrumb-banner-area .breadcrumb-text h1::before {
  content: "\f030";
  font-family: FontAwesome;
  margin-right: 15px;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

/* Enhanced breadcrumb styling */
.breadcrumb-banner-area .breadcrumb-text h1 {
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
  padding-top: 22px;
}

.breadcrumb-banner-area .breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.breadcrumb-banner-area .breadcrumb a:hover {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .breadcrumb-banner-area {
    padding-top: 180px !important;
  }
}

@media (max-width: 767px) {
  .breadcrumb-banner-area {
    padding-top: 16px !important;
  }

  .breadcrumb-text h1 {
    font-size: 28px !important;
  }

  .breadcrumb-text h1::before {
    display: none;
  }
}
