/* ================== Gallery Hero Section ================== */
.gallery-hero {
  min-height: 75vh; /* Taller hero */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.gallery-hero h1 {
  font-family: 'Poppins', sans-serif;
  position: relative;
  display: inline-block;
}

.gallery-hero h1::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background-color: #facc15; /* warm yellow underline */
  margin: 12px auto 0;
  border-radius: 2px;
}

.gallery-hero p {
  font-size: 1.2rem;
  line-height: 1.7;
}


/* ================== Glassmorphism Circles ================== */
.circle {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.glass {
  background: rgba(255, 255, 255, 0.15); /* semi-transparent white */
  backdrop-filter: blur(12px);           /* glass blur effect */
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}



/* Floating Button Base */
.floating-order-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(to right, #f97316, #ef4444);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-in-out;
  z-index: 999;
  white-space: nowrap;
  padding: 8px 16px; /* smaller size */
  height: 45px; 
  font-size: 0.95rem;
}

/* Icon */
.floating-order-btn .icon i {
  font-size: 1.2rem;
  color: #fff;
  transition: transform 0.3s ease-in-out;
}

/* Button Text */
.floating-order-btn .btn-text {
  margin-left: 8px;
}

/* Hover Animation */
.floating-order-btn:hover {
  transform: scale(1.05); /* subtle zoom */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.floating-order-btn:hover .icon i {
  transform: rotate(20deg); /* small playful tilt */
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .floating-order-btn {
    font-size: 0.85rem;
    padding: 7px 14px;
    bottom: 20px;
    right: 20px;
    height: auto;
  }

  .floating-order-btn .icon i {
    font-size: 1rem;
  }
}









/* ================== Gallery Grid Section ================== */
.gallery-grid {
  position: relative;
}

.gallery-grid h2 {
  position: relative;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
}

.gallery-grid h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #ea580c, #fb923c);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ================== Gallery Cards ================== */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.3);

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

/* Hover Depth Effect */
.gallery-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* Image */
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

/* Zoom + slight darken */
.gallery-card:hover .gallery-img {
  transform: scale(1.12);
  filter: brightness(0.85);
}

/* Overlay Gradient + Title */
.gallery-card::after {
  content: attr(data-title);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  padding: 12px;
  font-size: 14px;
  font-weight: 500;

  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;

  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.gallery-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* ================== Lightbox Styling ================== */
#lightbox {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: fadeIn 0.3s ease;
}

/* Image animation */
#lightbox img {
  animation: zoomIn 0.3s ease;
}

/* Buttons */
#lightbox button {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  padding: 10px;
  transition: all 0.3s ease;
}

/* Hover buttons */
#lightbox button:hover {
  background: #f97316;
  color: #fff;
  transform: scale(1.2);
}

/* Close button special */
#lightbox-close {
  font-size: 32px;
}

/* Counter text */
#lightbox-counter {
  opacity: 0.8;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0.7; }
  to { transform: scale(1); opacity: 1; }
}

/* ================== Category Tabs ================== */
.category-tabs h2 {
  position: relative;
  display: inline-block;
}

.category-tabs h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #f97316, #fb923c);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Tab Buttons */
.tabs .tab-btn {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border: 2px solid transparent;
  color: #444;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 10px;

  transition: all 0.3s ease;
}

/* Hover */
.tabs .tab-btn:hover {
  border-color: #f97316;
  color: #f97316;
  transform: translateY(-2px);
}

/* Active */
.tabs .tab-btn.active {
  background: linear-gradient(to right, #f97316, #fb923c);
  color: #fff;
  border-color: #f97316;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}

/* Tab Content */
.tab-panel {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-panel.active {
  opacity: 1;
  transform: translateY(0);
}

.tab-panel.hidden {
  opacity: 0;
  transform: translateY(20px);
  display: none;
}

/* Images */
.tab-img {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tab-img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ================== Responsive Improvements ================== */
@media (max-width: 768px) {
  .gallery-card:hover {
    transform: none; /* disable heavy hover on mobile */
  }

  .gallery-card:hover .gallery-img {
    transform: none;
    filter: none;
  }
}