:root {
    --gold: #c9a84c;
    --pink: #e91e8c;
    --dark: #0d0d0d;
    --light: #f5f3ee;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jost', sans-serif;
    background: #000;
    overflow-x: hidden;
}

/* ── TOP BAR ── */
.top-bar {
    background: #111;
    color: #ccc;
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    padding: 6px 32px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    z-index: 1000;
    position: relative;
}

.top-bar a {
    color: #ccc;
    text-decoration: none;
}

.top-bar a:hover {
    color: #fff;
}

.top-bar .video-btn {
    background: var(--pink);
    color: #fff;
    padding: 4px 14px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: background .2s;
}

.top-bar .video-btn:hover {
    background: #c5177a;
    color: #fff;
}

/* ── NAVBAR ── */
.site-nav {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    transition: background .35s ease, top .35s ease, padding .35s ease, box-shadow .35s ease;
}

.site-nav.scrolled {
    top: 0;
    background: white;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 32px;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.site-nav:not(.scrolled) {
    background: transparent !important;
    box-shadow: none !important;
}

.nav-logo .brand-italic {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 1.8rem;
    color: var(--gold);
    letter-spacing: -0.01em;
}

.nav-logo .brand-bold {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.nav-logo .brand-sub {
    font-size: 0.6rem;
    color: #aaa;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    color: black;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color .2s;
    position: relative;
}

.nav-links li a.active,
.nav-links li a:hover {
    color: var(--gold);
}

.nav-links li a.active::after {
    content: '';
    display: block;
    height: 2px;
    background: var(--gold);
    margin-top: 3px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-icon-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    text-decoration: none;
}

.nav-icon-btn:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.menu-btn {
    background: transparent;
    border: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.menu-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    transition: transform .3s, opacity .3s;
}

.menu-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.menu-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.menu-label {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: #fff;
    text-transform: uppercase;
    display: block;
    text-align: center;
    margin-top: 2px;
}

/* ── FULLSCREEN MENU OVERLAY ── */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.97);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
}

.menu-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.menu-overlay .close-btn {
    position: absolute;
    top: 28px;
    right: 36px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color .2s;
}

.menu-overlay .close-btn:hover {
    color: var(--gold);
}

.overlay-nav {
    list-style: none;
    text-align: center;
}

.overlay-nav li {
    margin: 16px 0;
    transform: translateY(20px);
    opacity: 0;
    transition: transform .4s ease, opacity .4s ease;
}

.menu-overlay.open .overlay-nav li {
    transform: translateY(0);
    opacity: 1;
}

.menu-overlay.open .overlay-nav li:nth-child(1) {
    transition-delay: .1s;
}

.menu-overlay.open .overlay-nav li:nth-child(2) {
    transition-delay: .15s;
}

.menu-overlay.open .overlay-nav li:nth-child(3) {
    transition-delay: .2s;
}

.menu-overlay.open .overlay-nav li:nth-child(4) {
    transition-delay: .25s;
}

.menu-overlay.open .overlay-nav li:nth-child(5) {
    transition-delay: .3s;
}

.menu-overlay.open .overlay-nav li:nth-child(6) {
    transition-delay: .35s;
}

.overlay-nav li a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color .2s;
}

.overlay-nav li a:hover {
    color: var(--gold);
}

/* ── HERO SLIDER ── */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.6s ease-in-out;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* gradient overlay */
.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.25) 0%,
            rgba(0, 0, 0, 0.1) 40%,
            rgba(0, 0, 0, 0.45) 100%);
}

/* Slide backgrounds using Unsplash landscape Sri Lanka photos */
.slide-1 {
    background-image: url('../images/sigiriya-cultural-triangle-sri-lanka.jpg');
}

.slide-2 {
    background-image: url('../images/galle-fort.jpg');
}

.slide-3 {
    background-image: url('../images/Little-Adams-Peak-View-Point.jpg');
}

.slide-4 {
    background-image: url('../images/Coconut-tree-hill-in-Mirissa-Sri-Lanka.jpg');
}

/* ── HERO CONTENT ── */
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
    margin-bottom: 16px;
}

.hero-sub {
    font-family: 'Jost', sans-serif;
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.hero-divider {
    width: 120px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    margin: 12px auto 0;
}

/* ── SLIDE INFO (bottom-left) ── */
.slide-info {
    position: absolute;
    bottom: 36px;
    left: 48px;
    z-index: 10;
    color: #fff;
}

.slide-info .loc-name {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.slide-info .loc-desc {
    font-size: 0.78rem;
    font-weight: 300;
    max-width: 280px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* ── DESTINATIONS BTN (bottom-right) ── */
.dest-btn-wrap {
    position: absolute;
    bottom: 36px;
    right: 48px;
    z-index: 10;
}

.dest-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    background: transparent;
    padding: 12px 22px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .25s, border-color .25s;
}

.dest-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: #fff;
}

/* ── ARROW BUTTONS ── */
.slider-arrow {
    position: absolute;
    right: 20px;
    z-index: 10;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, border-color .2s;
    font-size: 1rem;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

.arrow-prev {
    top: calc(50% - 52px);
}

.arrow-next {
    top: calc(50% + 12px);
}

/* ── DOTS ── */
.slider-dots {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background .3s, transform .3s;
}

.dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* ── FLOATING BUTTONS ── */
.float-btns {
    position: fixed;
    bottom: 32px;
    right: 20px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: transform .2s;
}

.float-btn:hover {
    transform: scale(1.08);
}

.float-wa {
    background: #25d366;
    color: #fff;
}

.float-chat {
    background: var(--pink);
    color: #fff;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .slide-info {
        left: 24px;
        bottom: 80px;
    }

    .dest-btn-wrap {
        right: 24px;
        bottom: 80px;
    }

    .top-bar {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        padding: 8px 16px;
    }

    .slider-arrow {
        right: 10px;
    }
}