.hero-carousel {
    position: relative;
    width: 100vw;
    height: calc(100vh - 100px);
    overflow: hidden;
}

.carousel-container {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    display: flex;
}

.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}


.carousel-btn {
    /* background: rgba(0, 0, 0, 0.5); */
    background: #111;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    font-size: 24px;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: 0;
}

.hero-message {
  position: absolute;
  width: 40%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 4%;
  background: #111;
  {#
  background-color: rgba(204, 204, 204, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  #}
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-message h2 {
  line-height: 1.5;
}

@supports not (backdrop-filter: blur(10px)) {
  .hero-message {
    background-color: rgba(204, 204, 204, 0.2);
  }
}

@media screen and (max-width: 900px) {
  .hero-message {
      width: 80%;
      left: 40px;
  }
}

@media screen and (max-width: 600px) {
  .hero-message h2 {
    font-size: 28px;
  }
}