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

/* Slideshow images */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.hero-slide.active {
    opacity: 1;
}

/* Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    z-index: 2;
}

/* Hero content */
.hero-content {
    position: relative;      /* relative to hero section */
    z-index: 3;              /* above overlay and slides */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 0 20px;
    color: #fff;
}

.luxe-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 4.5rem;
    color: #e9d7a6;
    text-shadow: 0 0 15px rgba(0,0,0,0.6);
    letter-spacing: 2px;
}

.hero-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    max-width: 700px;
    font-size: 1.2rem;
    margin-top: 15px;
    letter-spacing: 0.5px;
}

.btn-gold {
    background: #c8a15a;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    margin-top: 15px;
}
.btn-gold:hover {
    background: #b38d4c;
}

/* Responsive text */
@media (max-width: 768px) {
    .luxe-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    .hero-text {
        font-size: 1rem;
    }
}
