/* ─── LUXURY HERO SLIDER — FRONTEND STYLES ─── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

/* RESET WITHIN HERO */
.lhs-hero *, .lhs-hero *::before, .lhs-hero *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* HERO WRAPPER */
.lhs-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

/* ─── CHAT TAB ─── */
.lhs-chat-tab {
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%) rotate(-90deg) translateX(-50%);
    transform-origin: left center;
    background: #7b3f5e;
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 0 0 6px 6px;
    z-index: 100;
    white-space: nowrap;
    transition: background .2s;
}
.lhs-chat-tab:hover { background: #5e2e47; color: #fff; }

/* ─── HEADER ─── */
.lhs-header {
    position: absolute; top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 0 40px;
}
.lhs-header-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    height: 80px;
    border-bottom: 1px solid rgba(255,255,255,.18);
}

/* Logo */
.lhs-logo {
    flex-shrink: 0;
    text-decoration: none;
    color: #fff;
}
.lhs-logo img  { height: 50px; width: auto; display: block; }
.lhs-logo span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: .05em;
    border: 1px solid rgba(255,255,255,.6);
    padding: 4px 10px;
    border-radius: 2px;
}

/* Navigation */
.lhs-nav { flex: 1; }
.lhs-nav-list {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0; padding: 0;
}
.lhs-nav-list > li { position: relative; }
.lhs-nav-list > li > a {
    display: block;
    padding: 0 18px;
    height: 80px;
    line-height: 80px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s, background .2s;
}
.lhs-nav-list > li > a:hover,
.lhs-nav-list > li.current-menu-item > a { color: #fff; background: rgba(255,255,255,.08); }

/* Dropdown */
.lhs-nav-list .sub-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0;
    min-width: 200px;
    background: rgba(20,20,20,.95);
    backdrop-filter: blur(10px);
    list-style: none;
    padding: 8px 0;
    border-top: 2px solid #b8975a;
    z-index: 200;
}
.lhs-nav-list > li:hover > .sub-menu { display: block; }
.lhs-nav-list .sub-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.8);
    text-decoration: none;
    transition: color .15s, padding-left .15s;
}
.lhs-nav-list .sub-menu a:hover { color: #b8975a; padding-left: 26px; }

/* Header right icons */
.lhs-header-right { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.lhs-icon-btn {
    background: none; border: none; cursor: pointer;
    color: rgba(255,255,255,.85);
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: background .2s;
}
.lhs-icon-btn:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ─── SLIDES ─── */
.lhs-slides { position: absolute; inset: 0; }
.lhs-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity .8s ease-in-out;
    will-change: opacity;
}
.lhs-slide.lhs-active { opacity: 1; z-index: 1; }
.lhs-slide.lhs-exit   { opacity: 0; z-index: 0; }

/* Slide – image background */
.lhs-slide-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 7s ease-out;
}
.lhs-slide.lhs-active .lhs-slide-bg { transform: scale(1); }

/* Slide – video background */
.lhs-slide-video-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    pointer-events: none;
    border: none;
}

/* Overlay */
.lhs-slide-overlay {
    position: absolute; inset: 0;
    background: #000;
    opacity: .45;
    z-index: 2;
}

/* Slide content */
.lhs-slide-content {
    position: absolute;
    bottom: 160px; left: 60px;
    z-index: 10;
    max-width: 700px;
}
.lhs-slide-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
    margin-bottom: 8px;
}
.lhs-slide-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3vw, 46px);
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,.92);
    text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

/* ─── CONTROLS ─── */
.lhs-controls {
    position: absolute;
    bottom: 80px; right: 40px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 12px;
}
.lhs-arrow {
    background: none; border: 1px solid rgba(255,255,255,.4);
    color: #fff; width: 36px; height: 36px;
    border-radius: 50%; cursor: pointer;
    font-size: 22px; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: all .2s;
}
.lhs-arrow:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.lhs-dots { display: flex; gap: 8px; }
.lhs-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    border: none; cursor: pointer;
    transition: background .2s, transform .2s;
}
.lhs-dot-active { background: #fff; transform: scale(1.3); }

/* ─── BOTTOM CTAs ─── */
.lhs-ctas {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 20;
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.2);
}
.lhs-cta-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 24px;
    text-decoration: none;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    border-right: 1px solid rgba(255,255,255,.2);
    transition: background .2s;
    background: rgba(0,0,0,.2);
    backdrop-filter: blur(4px);
}
.lhs-cta-item:last-child { border-right: none; }
.lhs-cta-item:hover { background: rgba(184,151,90,.3); color: #fff; }
.lhs-cta-arrow {
    width: 28px; height: 28px;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
    transition: border-color .2s;
}
.lhs-cta-item:hover .lhs-cta-arrow { border-color: #fff; }

/* ─── SLIDE TRANSITION: SLIDE MODE ─── */
.lhs-hero.lhs-transition-slide .lhs-slide { transition: transform .8s ease-in-out, opacity .01s .8s; }
.lhs-hero.lhs-transition-slide .lhs-slide:not(.lhs-active) { transform: translateX(100%); }
.lhs-hero.lhs-transition-slide .lhs-slide.lhs-active { transform: translateX(0); opacity: 1; }
.lhs-hero.lhs-transition-slide .lhs-slide.lhs-exit { transform: translateX(-100%); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .lhs-nav { display: none; }
    .lhs-header { padding: 0 24px; }
    .lhs-slide-content { left: 32px; bottom: 140px; }
    .lhs-cta-item { padding: 16px 12px; font-size: 9px; }
}
@media (max-width: 600px) {
    .lhs-slide-content { left: 20px; bottom: 130px; max-width: calc(100% - 40px); }
    .lhs-ctas { flex-direction: column; }
    .lhs-cta-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
}
