.homepage-banner {
    width: 100%;
    position: relative;
}

.banner-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.banner-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text overlay */
.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    padding: 1rem 2rem;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 8px;
}

.banner-text h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.banner-text p {
    font-size: 1.2rem;
    margin: 0;
}

/* Swiper.js arrow styles */
.swiper-button-next,
.swiper-button-prev {
  color: var(--color-accent-gold);
  background-color: transparent;
  padding: 10px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  transition: background-color 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: transparent;
}
