/*
Theme Name: JewelCraftz Custom Clean Theme
Theme URI: https://jewelcraftz.com
Description: Custom clean theme for JewelCraftz, recreated with custom coding and minimum plugins.
Version: 1.0.0
Author: DeepMind Antigravity
Author URI: https://deepmind.google/
Template: 
Text Domain: jewelcraftz-custom
*/

/* --- Custom Customizer Styles & Slider Animations --- */

/* Remove title from Elementor lightbox */
.elementor-slideshow__title {
    display: none !important;
}

/* Optional: remove description also */
.elementor-slideshow__description {
    display: none !important;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(1.08);
  animation: premiumSlider 65s infinite;
  filter: brightness(0.9);
}

/* Slide timing for 13 slides (5s gap each) */
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-slide:nth-child(3) { animation-delay: 10s; }
.hero-slide:nth-child(4) { animation-delay: 15s; }
.hero-slide:nth-child(5) { animation-delay: 20s; }
.hero-slide:nth-child(6) { animation-delay: 25s; }
.hero-slide:nth-child(7) { animation-delay: 30s; }
.hero-slide:nth-child(8) { animation-delay: 35s; }
.hero-slide:nth-child(9) { animation-delay: 40s; }
.hero-slide:nth-child(10) { animation-delay: 45s; }
.hero-slide:nth-child(11) { animation-delay: 50s; }
.hero-slide:nth-child(12) { animation-delay: 55s; }
.hero-slide:nth-child(13) { animation-delay: 60s; }

@keyframes premiumSlider {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }
  5% {
    opacity: 1;
    transform: scale(1);
  }
  15% {
    opacity: 1;
    transform: scale(1);
  }
  20% {
    opacity: 0;
    transform: scale(1.08);
  }
  100% {
    opacity: 0;
  }
}

