/* Zatari Bazar Luxury Stylesheet */

/* Custom Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.animate-fade-in {
  animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Marble Texture Overlay */
.marble-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/marble_texture.png');
  background-repeat: repeat;
  opacity: 0.25;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

/* Base Adjustments */
body {
  position: relative;
  z-index: 2;
}

/* Gradient text under support */
.text-gradient-gold {
  background: linear-gradient(135deg, #d4af37 0%, #c5a059 50%, #916d33 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Selection colors */
::selection {
  background-color: #14110e;
  color: #ebce8b;
}

/* Smooth layout transitions */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

/* Subtle gold border glow */
.gold-glow {
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.gold-glow:hover {
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

/* RTL layout fixes */
html[dir="rtl"] .ltr-only {
  display: none;
}

html[dir="ltr"] .rtl-only {
  display: none;
}

/* Header style during scroll */
header.scrolled {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05), 0 1px 0 0 rgba(197, 160, 89, 0.1);
}

header.scrolled .w-10 {
  width: 2.25rem;
  height: 2.25rem;
}

header.scrolled .w-12 {
  width: 2.75rem;
  height: 2.75rem;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f5f5f4;
}

::-webkit-scrollbar-thumb {
  background: #14110e;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #c5a059;
}

/* Hero Background Slider Styles */
.hero-slide {
  transition: opacity 1.5s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}

