/** Shopify CDN: Minification failed

Line 13:2 Comments in CSS use "/* ... */" instead of "//"
Line 108:1 Unexpected "}"

**/
/* hero-slider.css */

/* Hero Slider Styles */
.hero-slider {
  position: relative;
  width: 100%;
  // height: 100vh;
  overflow: hidden;
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: white;
  z-index: 3;
}

.slide-text {
  font-size: 2rem;
  margin-bottom: 1rem;
  max-width: 600px;
}

.slide-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: white;
  color: black;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.slide-button:hover {
  background-color: #f0f0f0;
}

.slider-navigation {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-dot.active {
  background-color: white;
}

/* Header Styles */
header{
background:#36363640;
}
sticky-header
{
  background:transparent!important
}
.hero-slider{
  margin-top:-100px;
}}
header {
  position: block;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
  background-color: transparent;
}

.header-scrolled {
  background-color: white;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.header-hidden {
  transform: translateY(-100%);
}

/* Adjust header elements color when scrolled */
.header-scrolled .header-logo,
.header-scrolled .navigation-link {
  color: #000;
}
.header__icon {
  color: #fff
}
.header-logo,
.navigation-link {
  color: white;
  transition: color 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .slide-text {
    font-size: 1.5rem;
  }
  
  .slide-content {
    bottom: 15%;
    left: 5%;
  }
}