/* Responsive Slider Styles */
.main-carousel {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.carousel-cell {
  width: 100%;
  height: 100%;
}

.slidercanvas {
  position: relative;
  left: auto;
  top: auto;
}

.slidertext {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.sliderbutton {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  margin-top: 1rem;
  font-size: 16px;
  transition: all 0.3s ease;
}

@media (min-width: 1025px) {
  .sliderbutton {
    font-size: 32px;
  }
}

/* Mobile styles (under 1024px) */
@media (max-width: 1023px) {
  .main-carousel {
    height: 100vh;
  }
  
  .slidertext {
    text-align: center;
    font-size: 1.8rem;
  }
  
  .sliderbutton {
    margin: 0 auto;
  }
}

/* Desktop styles (1024px and above) */
@media (min-width: 1025px) {
  .slidertext {
    font-size: 2.5rem;
  }

  .sliderbutton {
    margin-left: 0;
    padding-top: 22px;
  }
}

/* Large desktop styles */
@media (min-width: 1280px) {
  .slidertext {
    font-size: 3.5rem;
  }
}

/* Flickity pagination dots */
.flickity-page-dots {
  bottom: 20px;
}

.flickity-page-dots .dot {
  width: 12px;
  height: 12px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 8px;
}

.flickity-page-dots .dot.is-selected {
  background: #fff;
}