/* Hero Slider Wrapper */
.hero-slider {
    position: relative;
    width: 100vw; /* Full width */
    height: 600px;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Overlay Box */
.overlay-box {
    position: absolute;
    bottom: 50px;
    left: 50px;
    background-color: rgba(176, 131, 51, 0.8); /* Semi-transparent */
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.overlay-box h1, .overlay-box p {
    font-weight: bold;
}

.cta-button {
    padding: 10px 20px;
    background-color: #fff;
    color: #b08333;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #d8a54b;
    color: #fff;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.slider-dots .dot.active {
    background-color: #fff;
}
