* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#cinematic-slideshow {
    font-family: 'Playfair Display', 'Georgia', serif;
    background: #000;
    color: white;
    width: 100%;
}

/* ── Desktop/Mobile switcher ── */
@media (min-width: 769px) {
    .hero-desktop { display: block; }
    .hero-mobile  { display: none;  }
}
@media (max-width: 768px) {
    .hero-desktop { display: none;  }
    .hero-mobile  { display: block; }
}

/* ── Shared wrapper ── */
.slideshow-wrapper {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}
@media (max-width: 768px) {
    .slideshow-wrapper { height: 520px; }
}



/* ── Slides track ── */
.slides-track {
    position: relative;
    width: 100%;
    height: 100%;
}

/* ── Slide panel ── */
.slide-panel {
    position: absolute;
    inset: 0;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 1.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide-panel.active {
    clip-path: inset(0 0 0 0);
    z-index: 10;
}

.slide-panel.exiting {
    clip-path: inset(100% 0 0 0);
    z-index: 5;
}

/* ── Background image ── */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}

.slide-panel.active .slide-bg {
    animation: kenBurns 15s ease-out forwards;
}

@keyframes kenBurns {
    from { transform: scale(1.1) translateY(0);     }
    to   { transform: scale(1.2) translateY(-20px); }
}

/* ── Desktop static slide (no ken burns, no transition needed) ── */
.hero-desktop .slide-bg {
    animation: none !important;
    transform: none !important;
}

/* ── Vignette ── */
.slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.3) 60%,
        rgba(0,0,0,0.7) 100%);
    pointer-events: none;
}

/* ── Slide content ── */
.content-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 20;
    width: 90%;
    max-width: 1100px;
}

.slide-content {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.65, 0, 0.35, 1);
}

.slide-panel.active .slide-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}


/* Desktop static — show content immediately */
.hero-desktop .slide-content {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}

.luxury-badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 10px 30px;
    border: 1px solid rgba(255,255,255,0.5);
    margin-bottom: 30px;
    font-family: 'Arial', sans-serif;
    font-weight: 500;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 400;
    letter-spacing: -3px;
    margin-bottom: 20px;
    line-height: 1.1;
    font-style: italic;
    text-shadow: 0 2px 40px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-family: 'Arial', sans-serif;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.95;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: white;
    margin: 35px auto;
    opacity: 0.6;
}

/* ── Side indicators (mobile only) ── */
.side-indicators {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 100;
}

.indicator-item {
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.indicator-ring {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255,255,255,0);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.indicator-item.active .indicator-dot {
    background: white;
    transform: scale(1.3);
}

.indicator-item.active .indicator-ring {
    border-color: rgba(255,255,255,0.6);
    transform: scale(1.2);
}

.indicator-item:hover .indicator-dot {
    background: rgba(255,255,255,0.8);
}

/* ── Bottom bar ── */
.bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    z-index: 100;
}

.slide-counter {
    font-size: 1rem;
    letter-spacing: 3px;
    font-family: 'Arial', sans-serif;
    opacity: 0.8;
}

.counter-current {
    font-size: 2.5rem;
    font-weight: 300;
    margin-right: 10px;
}

.control-buttons {
    display: flex;
    gap: 15px;
}

.ctrl-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.ctrl-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

.ctrl-btn svg {
    width: 20px;
    height: 20px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    pointer-events: none;
}

/* ── Progress bar ── */
.progress-track {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.15);
    z-index: 110;
}

.progress-fill {
    height: 100%;
    background: white;
    width: 0%;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero-title    { font-size: 3.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .side-indicators { right: 30px; }
    .bottom-bar    { padding: 0 30px; }
}

@media (max-width: 640px) {
    .hero-title    { font-size: 2.5rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .side-indicators { display: none; }
    .counter-current { font-size: 2rem; }
}
.hero-mobile .hero-title {
    font-family: 'Noto Sans Devanagari', 'Arial', sans-serif;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0px;
    line-height: 1.2;
}

.hero-mobile .luxury-badge,
.hero-mobile .hero-subtitle {
    font-family: 'Noto Sans Devanagari', 'Arial', sans-serif;
}