/* --------------------------------------------- */
/* FIXED HERO HEIGHT SYSTEM (NO VH, NO JUMPING) */
/* --------------------------------------------- */

:root {
    --hero-height: 80vh;
}

@media (max-width: 992px) {
    :root {
        --hero-height: 80vh;
    }
}

@media (max-width: 600px) {
    :root {
        --hero-height: 80vh;
    }
}

/* Apply fixed height everywhere */
.hero-slider,
.hero-slide,
.slide-overlay,
.hero-preloader {
    height: var(--hero-height);
    min-height: var(--hero-height);
    max-height: var(--hero-height);
}

/* --------------------------------------------- */
/* PRELOADER (DARK OVERLAY WHILE IMAGE LOADS)    */
/* --------------------------------------------- */

.hero-preloader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(35, 18, 11, 0.75); /* same dark tone you wanted */
    z-index: 5;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.hero-loaded .hero-preloader {
    opacity: 0;
    pointer-events: none;
}

/* --------------------------------------------- */
/* HERO SLIDER BASE (UNCHANGED VISUALS)          */
/* --------------------------------------------- */

.single-hero .slider-nav {
    display: none !important;
}

.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Overlay */
.slide-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    background: rgba(35, 18, 11, 0.75);
    z-index: 1;
}

/* Content */
.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
    width: 100%;
    max-width: 1200px;
    padding: 1rem 15px 6rem; /* Add bottom padding to avoid disclaimer overlap */
    text-align: center;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Main Content Centered Wrapper */
.main-content-centered {
    position: absolute !important;
    top: 44% !important; /* Nudges it slightly up from 50% to balance the bottom bar */
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto !important;
    z-index: 5;
}

/* Heading — NOT modified */
.slide-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.2;
    color: #FDB827;  /* your original yellow */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Tagline — unchanged */
.slide-content .tagline {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Luxury Tagline - Premium Styling */
.slide-content .luxury-tag {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FDB827;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    font-family: 'Montserrat', sans-serif;
    position: relative;
    display: inline-block;
    padding: 0.3rem 1.5rem;
    border: 1px solid rgba(253, 184, 39, 0.3);
    border-radius: 30px;
    background: rgba(253, 184, 39, 0.1);
    backdrop-filter: blur(10px);
}

/* Buttons — unchanged */
.slide-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    align-items: center;
}

.slide-buttons .btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
}

.slide-buttons .btn-primary {
    background-color: #FDB827;
    border: 2px solid #FDB827;
    color: #1a1a1a;
}

.slide-buttons .btn-outline {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

/* Disclaimer Message - Full Width Bottom Bar */
.disclaimer-message {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    background-color: rgba(0, 0, 0, 0.2); /* 80% transparent */
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.4;
    text-align: center;
    z-index: 3;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Navigation — unchanged */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 3;
}

.slider-nav.prev { left: 2rem; }
.slider-nav.next { right: 2rem; }

/* Animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive ONLY — unchanged visuals */
@media (max-width: 992px) {
    .slide-content h1 { font-size: 2.8rem; }
    .slide-content .tagline { font-size: 1.1rem; }
}

@media (max-width: 767px) {
    .slide-content { 
        padding: 2rem 15px 8rem; /* Increased bottom padding for mobile */
    }
    .slide-content h1 { font-size: 2.2rem; }
    .slide-buttons { flex-direction: column; }
    .disclaimer-message {
        font-size: 0.8rem;
        padding: 0.8rem 1rem;
    }
    .slide-content .luxury-tag {
        font-size: 0.9rem;
        letter-spacing: 2px;
        padding: 0.2rem 1rem;
        margin-bottom: 0.8rem;
    }
    .main-content-centered {
        min-height: 250px; /* Adjust for mobile */
    }
}

@media (max-width: 480px) {
    .slide-content { 
        padding: 1rem 1rem 8rem; /* Maintain bottom padding */
    }
    .slide-content h1 { font-size: 1.75rem; }
    .slide-content .tagline { font-size: 1rem; }
    .slide-content .luxury-tag {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        padding: 0.15rem 0.8rem;
    }
    .disclaimer-message {
        font-size: 0.75rem;
        padding: 0.6rem 0.8rem;
    }
    .main-content-centered {
        min-height: 200px; /* Further adjust for small screens */
    }
}
