.hero-slider {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background-color: #000;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 75vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #ffffff;
}

.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    background-color: #5A0F1B;
    /* Primary Burgundy */
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.hero-btn:hover {
    background-color: #3d0a12;
    color: #ffffff;
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Secondary Button Style */
.hero-btn-secondary {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.hero-btn-secondary:hover {
    background-color: #ffffff;
    color: #5A0F1B;
    border-color: #ffffff;
}

/* Swiper Overrides */
.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
    z-index: 10;
}

.swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #5A0F1B;
}

/* Responsive */
@media (max-width: 768px) {

    .hero-slider,
    .hero-slide {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    /* Stack buttons vertically on mobile */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .hero-btn,
    .hero-btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}