main {
  padding-top: 10rem;
}

.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide.active {
  opacity: 1;
}
.carousel-slide picture,
.carousel-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.carousel-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
  display: block;
}
.carousel-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8rem 12rem;
  z-index: 2;
}
.carousel-slogan {
  flex: 1;
  max-width: 60%;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
}
.carousel-slogan h1 {
  font-size: 4.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.carousel-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  align-self: flex-end;
}
.carousel-cta .btn {
  font-size: 2rem;
  padding: 1.5rem 3rem;
  background: rgba(85, 28, 69, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid #ffffff;
}
.carousel-cta .btn:hover {
  background: #551c45;
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
}
.carousel-cta p {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: #ffffff;
  border: none;
  width: auto;
  height: auto;
  font-size: 2.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.carousel-btn:hover {
  color: rgba(255, 255, 255, 0.8);
  transform: translateY(-50%) scale(1.1);
}
.carousel-btn.carousel-prev {
  left: 3rem;
}
.carousel-btn.carousel-next {
  right: 3rem;
}
.carousel-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 3;
}

.dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active {
  background: #ffffff;
  transform: scale(1.3);
}
.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1200px) {
  .carousel-content {
    padding: 0 6rem;
  }
  .carousel-slogan h1 {
    font-size: 3.5rem;
  }
  .carousel-cta {
    right: 6rem;
    bottom: 6rem;
  }
}
@media (max-width: 768px) {
  main {
    padding-top: 8rem;
  }
  .hero {
    height: 80vh;
  }
  .carousel-content {
    flex-direction: column;
    justify-content: center;
    padding: 0 2rem;
    text-align: center;
  }
  .carousel-slogan {
    max-width: 100%;
    margin-bottom: 0;
  }
  .carousel-slogan h1 {
    font-size: 4rem;
    line-height: 1.3;
    margin-bottom: 2.5rem;
  }
  .carousel-cta {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 0;
    margin-bottom: 8rem;
    gap: 2rem;
    align-self: center;
  }
  .carousel-cta .btn {
    font-size: 2rem;
    padding: 1.5rem 3rem;
    min-width: 22rem;
  }
  .carousel-cta p {
    font-size: 2.2rem;
    font-weight: 600;
  }
  .carousel-btn {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 1.8rem;
  }
  .carousel-btn.carousel-prev {
    left: 1.5rem;
  }
  .carousel-btn.carousel-next {
    right: 1.5rem;
  }
  .carousel-dots {
    bottom: 3rem;
  }
  .carousel-slide img {
    -o-object-position: center top;
       object-position: center top;
  }
}
@media (max-width: 480px) {
  main {
    padding-top: 7rem;
  }
  .hero {
    height: 75vh;
  }
  .carousel-content {
    padding: 0 1.5rem;
    justify-content: center;
    gap: 3rem;
  }
  .carousel-slogan {
    margin-bottom: 0;
  }
  .carousel-slogan h1 {
    font-size: 3rem;
    line-height: 1.4;
    margin-bottom: 2rem;
  }
  .carousel-cta {
    margin-top: 0;
    gap: 1.8rem;
    align-self: center;
  }
  .carousel-cta .btn {
    font-size: 1.8rem;
    padding: 1.5rem 3rem;
    min-width: 20rem;
  }
  .carousel-cta p {
    font-size: 1.6rem;
  }
  .carousel-btn {
    width: 4rem;
    height: 4rem;
    font-size: 1.5rem;
  }
  .carousel-btn.carousel-prev {
    left: 1rem;
  }
  .carousel-btn.carousel-next {
    right: 1rem;
  }
  .carousel-dots {
    bottom: 2.5rem;
  }
}/*# sourceMappingURL=start.css.map */