﻿/* ══════════════════════════════════════════════
   LuxeStay Grand Hotel — Website CSS
   Brand: Gold #D4920A · Dark #1A1F2E
══════════════════════════════════════════════ */

:root {
    --web-gold: #D4920A;
    --web-gold-light: #F0A500;
    --web-dark: #1A1F2E;
    --web-dark2: #0F1320;
    --web-white: #FFFFFF;
    --web-cream: #FDF8F0;
    --web-gray: #6B7280;
    --web-light: #F9FAFB;
    --web-border: rgba(212,146,10,0.2);
    --web-shadow: 0 20px 60px rgba(0,0,0,0.12);
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
}
/* ── Scrollbar hide ──────────────────────────── */
html, body {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    overflow-x: hidden;
}

    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        width: 0 !important;
        height: 0 !important;
        display: none !important;
    }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--web-dark);
    overflow-x: hidden;
}

/* ── Scrollbar hide ──────────────────────────── */
html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    html::-webkit-scrollbar {
        display: none;
    }

/* ══════════════════ NAVBAR ══════════════════ */
.web-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
    padding: 20px 0;
}

    .web-navbar.scrolled {
        background: rgba(26,31,46,0.97);
        backdrop-filter: blur(20px);
        padding: 12px 0;
        box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    }

.web-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.web-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.web-logo-icon {
    width: 42px;
    height: 42px;
    background: var(--web-gold);
    color: #000;
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.web-logo-name {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.web-logo-sub {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--web-gold);
    font-weight: 600;
    margin-top: 2px;
}

/* Nav Menu */
.web-nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

    .web-nav-menu li {
        position: relative;
    }

.web-nav-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

    .web-nav-link:hover,
    .web-nav-link.active {
        color: var(--web-gold);
        background: rgba(212,146,10,0.1);
    }

/* ── Dropdown ──────────────────────────────── */
.has-dropdown {
    position: relative;
}

    /* invisible bridge — gap পূরণ */
    .has-dropdown::after {
        content: '';
        position: absolute;
        top: 100%;
        left: -10px;
        width: calc(100% + 20px);
        height: 14px;
        display: block;
    }

.web-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--web-dark);
    border: 1px solid var(--web-border);
    border-radius: 10px;
    padding: 8px;
    min-width: 190px;
    box-shadow: var(--web-shadow);
    z-index: 999;
    pointer-events: none;
}

.has-dropdown:hover .web-dropdown,
.has-dropdown:focus-within .web-dropdown {
    display: block;
    pointer-events: all;
}

.web-dropdown a {
    display: block;
    padding: 10px 14px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 13px;
    border-radius: 6px;
    transition: all 0.2s;
    white-space: nowrap;
}

    .web-dropdown a:hover {
        background: rgba(212,146,10,0.1);
        color: var(--web-gold);
        padding-left: 18px;
    }

/* Nav Actions */
.web-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Language Toggle */
.web-lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

    .web-lang-toggle a {
        color: rgba(255,255,255,0.6);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }

        .web-lang-toggle a.active,
        .web-lang-toggle a:hover {
            color: var(--web-gold);
        }

/* Buttons */
.web-btn-book {
    background: var(--web-gold);
    color: #000 !important;
    padding: 9px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    white-space: nowrap;
}

    .web-btn-book:hover {
        background: var(--web-gold-light);
        transform: translateY(-1px);
    }

.web-btn-login {
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.85) !important;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
}

    .web-btn-login:hover {
        border-color: var(--web-gold);
        color: var(--web-gold) !important;
    }

/* Mobile Toggle */
.web-mobile-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.web-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--web-dark);
    z-index: 999;
    overflow-y: auto;
}

    .web-mobile-menu.open {
        display: block;
    }

.web-mobile-inner {
    padding: 80px 24px 40px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.web-mobile-link {
    display: block;
    padding: 14px 16px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color 0.2s;
}

    .web-mobile-link:hover {
        color: var(--web-gold);
    }

/* ══════════════════ SECTIONS ══════════════════ */
.web-section {
    padding: 80px 0;
}

.web-section-sm {
    padding: 50px 0;
}

.web-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.web-section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--web-gold);
    margin-bottom: 12px;
}

.web-section-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--web-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

    .web-section-title.light {
        color: #fff;
    }

.web-section-desc {
    font-size: 15px;
    color: var(--web-gray);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.web-divider {
    width: 60px;
    height: 3px;
    background: var(--web-gold);
    margin: 16px auto;
    border-radius: 2px;
}

/* ══════════════════ HERO SLIDER ══════════════════ */
.web-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.web-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

    .web-hero-slide.active {
        opacity: 1;
    }

.web-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.web-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(26,31,46,0.75) 0%, rgba(26,31,46,0.3) 60%, transparent 100% );
}

.web-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.web-hero-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--web-gold);
    margin-bottom: 16px;
}

.web-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.web-hero-sub {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 36px;
}

.web-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Buttons */
.web-btn-primary {
    background: var(--web-gold);
    color: #000;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .web-btn-primary:hover {
        background: var(--web-gold-light);
        color: #000;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(212,146,10,0.4);
    }

.web-btn-outline {
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    padding: 13px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .web-btn-outline:hover {
        border-color: var(--web-gold);
        color: var(--web-gold);
    }

/* Slider Controls */
.web-hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.web-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

    .web-hero-dot.active {
        width: 28px;
        border-radius: 4px;
        background: var(--web-gold);
    }

.web-hero-arrows {
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.web-hero-arrow {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s;
    font-size: 18px;
}

    .web-hero-arrow:hover {
        background: var(--web-gold);
        border-color: var(--web-gold);
        color: #000;
    }

/* ══════════════════ BOOKING WIDGET ══════════════════ */
.web-booking-bar {
    background: var(--web-dark);
    padding: 0;
    position: relative;
    z-index: 100;
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}

.web-booking-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto auto;
    gap: 0;
    align-items: stretch;
}

.web-booking-field {
    padding: 18px 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

    .web-booking-field label {
        display: block;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--web-gold);
        margin-bottom: 6px;
    }

    .web-booking-field input,
    .web-booking-field select {
        background: transparent;
        border: none;
        color: #fff;
        font-size: 14px;
        font-weight: 500;
        width: 100%;
        outline: none;
        padding: 0;
    }

        .web-booking-field input::placeholder {
            color: rgba(255,255,255,0.4);
        }

        .web-booking-field select option {
            background: var(--web-dark);
        }

.web-booking-submit {
    background: var(--web-gold);
    border: none;
    padding: 18px 32px;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .web-booking-submit:hover {
        background: var(--web-gold-light);
    }

/* ══════════════════ ROOM CARDS ══════════════════ */
.web-room-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
}

    .web-room-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    }

.web-room-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

    .web-room-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.web-room-card:hover .web-room-img img {
    transform: scale(1.08);
}

.web-room-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--web-gold);
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.web-room-body {
    padding: 24px;
}

.web-room-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--web-dark);
}

.web-room-features {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.web-room-feature {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    color: var(--web-gray);
}

    .web-room-feature i {
        color: var(--web-gold);
    }

.web-room-price {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 8px;
}

.web-room-rate {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--web-gold);
}

    .web-room-rate small {
        font-family: var(--font-sans);
        font-size: 12px;
        color: var(--web-gray);
        font-weight: 400;
    }

/* ══════════════════ OFFER CARDS ══════════════════ */
.web-offer-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

    .web-offer-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

    .web-offer-card:hover img {
        transform: scale(1.05);
    }

.web-offer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(26,31,46,0.9) 0%, transparent 60% );
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.web-offer-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--web-gold);
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.web-offer-title {
    font-family: var(--font-serif);
    font-size: 20px;
    color: #fff;
    margin-bottom: 6px;
}

.web-offer-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}

.web-offer-cta {
    color: var(--web-gold);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ══════════════════ GALLERY ══════════════════ */
.web-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.web-gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

    .web-gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s;
    }

    .web-gallery-item:hover img {
        transform: scale(1.08);
    }

.web-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(212,146,10,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.web-gallery-item:hover .web-gallery-overlay {
    opacity: 1;
}

.web-gallery-overlay i {
    font-size: 28px;
    color: #fff;
}

/* ══════════════════ TESTIMONIALS ══════════════════ */
.web-testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    height: 100%;
    border-top: 3px solid var(--web-gold);
    transition: transform 0.3s;
}

    .web-testimonial-card:hover {
        transform: translateY(-4px);
    }

.web-stars {
    color: var(--web-gold);
    font-size: 14px;
    margin-bottom: 14px;
}

.web-testimonial-text {
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--web-gray);
    font-style: italic;
    margin-bottom: 20px;
}

.web-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.web-testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--web-gold);
    color: #000;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.web-testimonial-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--web-dark);
}

.web-testimonial-country {
    font-size: 12px;
    color: var(--web-gray);
}

/* ══════════════════ STATS BAR ══════════════════ */
.web-stats-bar {
    background: var(--web-dark);
    padding: 50px 0;
}

.web-stat-item {
    text-align: center;
}

.web-stat-number {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: var(--web-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.web-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ══════════════════ FOOTER ══════════════════ */
.web-footer {
    background: var(--web-dark2);
    padding: 70px 0 0;
    color: rgba(255,255,255,0.7);
}

.web-footer-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--web-gold);
    margin-bottom: 20px;
}

.web-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .web-footer-links a {
        color: rgba(255,255,255,0.6);
        text-decoration: none;
        font-size: 13.5px;
        transition: color 0.2s;
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .web-footer-links a::before {
            content: '';
            width: 16px;
            height: 1px;
            background: var(--web-gold);
            flex-shrink: 0;
            transition: width 0.2s;
        }

        .web-footer-links a:hover {
            color: var(--web-gold);
        }

            .web-footer-links a:hover::before {
                width: 24px;
            }

.web-footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .web-footer-contact li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 13.5px;
    }

    .web-footer-contact i {
        color: var(--web-gold);
        font-size: 15px;
        margin-top: 2px;
        flex-shrink: 0;
    }

.web-social {
    display: flex;
    gap: 10px;
}

    .web-social a {
        width: 38px;
        height: 38px;
        border: 1px solid rgba(255,255,255,0.15);
        color: rgba(255,255,255,0.6);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        text-decoration: none;
        transition: all 0.2s;
    }

        .web-social a:hover {
            border-color: var(--web-gold);
            color: var(--web-gold);
            background: rgba(212,146,10,0.1);
        }

.web-footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 12px;
}

.web-footer-bottom-links {
    display: flex;
    gap: 20px;
}

    .web-footer-bottom-links a {
        color: rgba(255,255,255,0.4);
        text-decoration: none;
        transition: color 0.2s;
    }

        .web-footer-bottom-links a:hover {
            color: var(--web-gold);
        }

/* ══════════════════ FORMS ══════════════════ */
.web-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    color: #1A1F2E;
    outline: none;
    transition: border-color 0.2s;
    appearance: auto;
    -webkit-appearance: auto;
}

    .web-form-control:focus {
        border-color: var(--web-gold);
        box-shadow: 0 0 0 3px rgba(212,146,10,0.1);
    }

    .web-form-control::placeholder {
        color: #9ca3af;
    }

.web-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--web-dark);
    margin-bottom: 6px;
}

/* ══════════════════ UTILITIES ══════════════════ */
.bg-cream {
    background: var(--web-cream);
}

.bg-dark-web {
    background: var(--web-dark);
}

.bg-dark2-web {
    background: var(--web-dark2);
}

.text-gold {
    color: var(--web-gold);
}

.font-serif {
    font-family: var(--font-serif);
}

/* ══════════════════ RESPONSIVE ══════════════════ */
@media (max-width: 991px) {
    .web-nav-menu {
        display: none;
    }

    .web-mobile-toggle {
        display: flex !important;
    }

    .web-booking-inner {
        grid-template-columns: 1fr 1fr;
    }

    .web-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .web-lang-toggle {
        display: none;
    }
}

@media (max-width: 575px) {
    .web-booking-inner {
        grid-template-columns: 1fr;
    }

    .web-hero-title {
        font-size: 32px;
    }

    .web-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .web-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
