/* ==========================================================================
   হাওর বিলাস — global styles (design direction: "হাওরের জল")
   Tokens mirror the Elementor kit globals; fallbacks keep the site styled
   even if the kit is reset.
   ========================================================================== */
:root {
	--hb-bg: #F3F5F2;
	--hb-surface: #FFFFFF;
	--hb-deep: #0E3B3A;
	--hb-deeper: #082827;
	--hb-ink: #1B2523;
	--hb-muted: #5B6763;
	--hb-line: #D9DFDB;
	--hb-mist: #E4EAE6;
	--hb-champagne: #C9A25E;
	--hb-champagne-ink: #8A6A2E;
	--hb-ivory: #F6F3EA;
	--hb-serif: 'Noto Serif Bengali', 'Noto Sans Bengali', serif;
	--hb-sans: 'Hind Siliguri', 'Noto Sans Bengali', system-ui, sans-serif;
	--hb-radius: 2px;
	--hb-container: 1240px;
	--hb-gutter: clamp(16px, 4vw, 40px);
	--hb-ease: cubic-bezier(.22, .61, .36, 1);
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body.hb-site {
	background: var(--hb-bg);
	color: var(--hb-ink);
	font-family: var(--hb-sans);
	font-size: 17px;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}
body.hb-site h1, body.hb-site h2, body.hb-site h3, body.hb-site h4, body.hb-site h5, body.hb-site h6 {
	font-family: var(--hb-serif);
	font-weight: 600;
	color: var(--hb-ink);
	line-height: 1.25;
	margin: 0 0 .5em;
	letter-spacing: -0.005em;
}
body.hb-site h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.18; }
body.hb-site h2 { font-size: clamp(28px, 3.4vw, 42px); }
body.hb-site h3 { font-size: clamp(21px, 2vw, 26px); }
body.hb-site p { margin: 0 0 1.2em; }
body.hb-site a { color: var(--hb-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
body.hb-site :focus-visible { outline: 2px solid var(--hb-deep); outline-offset: 3px; border-radius: 2px; }
body.hb-site img { height: auto; max-width: 100%; }
::selection { background: var(--hb-deep); color: var(--hb-ivory); }

.hb-container { width: min(var(--hb-container), 100% - 2 * var(--hb-gutter)); margin-inline: auto; }
.hb-muted { color: var(--hb-muted); }
.hb-h2 { font-size: clamp(28px, 3.4vw, 42px); }
.hb-h3 { font-size: clamp(21px, 2vw, 26px); }

/* --- Buttons ------------------------------------------------------------ */
.hb-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	min-height: 52px; padding: 0 28px;
	font-family: var(--hb-sans); font-weight: 500; font-size: 16px; letter-spacing: .03em;
	border-radius: var(--hb-radius); border: 1px solid transparent; cursor: pointer;
	text-decoration: none; transition: background-color .25s var(--hb-ease), color .25s var(--hb-ease), border-color .25s var(--hb-ease), transform .15s var(--hb-ease);
}
.hb-btn:active { transform: translateY(1px); }
.hb-btn--primary { background: var(--hb-deep); color: var(--hb-ivory) !important; border-color: var(--hb-deep); }
.hb-btn--primary:hover { background: var(--hb-deeper); border-color: var(--hb-deeper); }
.hb-btn--inverse { background: var(--hb-ivory); color: var(--hb-deep) !important; border-color: var(--hb-ivory); }
.hb-btn--inverse:hover { background: #fff; }
.hb-btn--outline { background: transparent; color: var(--hb-deep) !important; border-color: var(--hb-deep); }
.hb-btn--outline:hover { background: var(--hb-deep); color: var(--hb-ivory) !important; }
.hb-on-dark-yes .hb-btn--outline { color: var(--hb-ivory) !important; border-color: rgba(246,243,234,.6); }
.hb-on-dark-yes .hb-btn--outline:hover { background: var(--hb-ivory); color: var(--hb-deep) !important; }
.hb-btn--link { min-height: 0; padding: 0; background: none; border: 0; color: var(--hb-deep) !important; border-bottom: 1px solid var(--hb-champagne); border-radius: 0; padding-bottom: 2px; }
.hb-btn--link:hover { border-bottom-color: var(--hb-deep); }
.hb-on-dark-yes .hb-btn--link { color: var(--hb-ivory) !important; }

/* --- Images ------------------------------------------------------------- */
.hb-image { position: relative; overflow: hidden; border-radius: var(--hb-radius); background: var(--hb-mist); }
.hb-image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hb-image--empty { aspect-ratio: 4/3; }
.hb-image__badge {
	position: absolute; left: 12px; bottom: 12px;
	background: rgba(27,37,35,.72); color: #fff; font-size: 12px; letter-spacing: .04em;
	padding: 4px 10px; border-radius: var(--hb-radius); backdrop-filter: none;
}

/* --- Header (HFE) ------------------------------------------------------- */
.hb-site header#masthead { position: sticky; top: 0; z-index: 90; transition: box-shadow .3s var(--hb-ease); }
.hb-site.admin-bar header#masthead { top: 32px; }
@media (max-width: 782px) { .hb-site.admin-bar header#masthead { top: 46px; } }
.hb-site header#masthead .hb-header { border-bottom: 1px solid rgba(217,223,219,.9); background: rgba(243,245,242,.96); }
.hb-site header#masthead.is-scrolled { box-shadow: 0 1px 0 var(--hb-line); }
.hb-wordmark { font-family: var(--hb-serif); font-weight: 600; font-size: 26px; letter-spacing: .01em; }
.hb-wordmark a { color: var(--hb-deep) !important; text-decoration: none; }
.hb-site .hfe-nav-menu .menu-item a.hfe-menu-item { font-family: var(--hb-sans); font-weight: 500; font-size: 16px; letter-spacing: .02em; }
.hb-site .hfe-nav-menu__toggle { border-radius: var(--hb-radius); }
.hb-site .hfe-nav-menu__layout-horizontal .hfe-nav-menu > li.menu-item > a.hfe-menu-item::before { height: 1px !important; }
.hb-site .hfe-nav-menu__toggle:focus-visible { outline: 2px solid var(--hb-deep); }
.hb-site .ehf-header .elementor-widget-navigation-menu .hfe-nav-menu { gap: 2px; }

/* --- Footer ------------------------------------------------------------- */
.hb-footer-contact ul, .hb-footer-links ul { list-style: none; margin: 0; padding: 0; }
.hb-footer-contact li { margin: 0 0 10px; }
.hb-footer a { color: rgba(246,243,234,.82); text-decoration: none; }
.hb-footer a:hover { color: #fff; text-decoration: underline; }
.hb-footer-note { color: rgba(246,243,234,.6); font-size: 14px; }
.hb-social { display: flex; gap: 14px; }
.hb-social a { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border: 1px solid rgba(246,243,234,.3); border-radius: 50%; color: var(--hb-ivory); }
.hb-social a:hover { border-color: var(--hb-champagne); }

/* --- Mobile booking bar ------------------------------------------------- */
.hb-mobile-bar {
	display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
	background: var(--hb-deep); padding: 10px max(12px, env(safe-area-inset-left)) max(10px, env(safe-area-inset-bottom));
	gap: 8px; box-shadow: 0 -1px 0 rgba(255,255,255,.08);
}
.hb-mobile-bar__primary { flex: 1; display: inline-flex; align-items: center; justify-content: center; min-height: 44px; background: var(--hb-ivory); color: var(--hb-deep) !important; font-weight: 500; letter-spacing: .03em; border-radius: var(--hb-radius); text-decoration: none; }
.hb-mobile-bar__secondary { display: inline-flex; align-items: center; gap: 6px; min-height: 44px; padding: 0 14px; color: var(--hb-ivory) !important; border: 1px solid rgba(246,243,234,.35); border-radius: var(--hb-radius); text-decoration: none; font-size: 14px; }
@media (max-width: 767px) {
	.hb-mobile-bar { display: flex; }
	body.hb-has-mobile-bar { padding-bottom: 68px; }
}

/* --- Elementor section helpers (used via CSS classes in the editor) ----- */
.hb-eyebrow { font-family: var(--hb-sans); font-weight: 500; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--hb-champagne-ink); }
.hb-on-dark .hb-eyebrow, .hb-dark .hb-eyebrow { color: var(--hb-champagne); }
.hb-rule { width: 56px; height: 1px; background: var(--hb-champagne); }
.hb-bleed-right { margin-right: calc(-1 * var(--hb-gutter)); }
.hb-bleed-left { margin-left: calc(-1 * var(--hb-gutter)); }
.hb-lead { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.7; color: var(--hb-ink); }
.hb-dark, .hb-dark h1, .hb-dark h2, .hb-dark h3, .hb-dark h4, .hb-dark p, .hb-dark li { color: var(--hb-ivory); }
.hb-dark .elementor-widget-text-editor, .hb-dark .elementor-widget-heading .elementor-heading-title { color: var(--hb-ivory); }
.hb-hero { min-height: min(92vh, 900px); }
.hb-hero .elementor-heading-title { text-wrap: balance; }
.hb-overlap-up { position: relative; z-index: 2; }
.hb-fact { border-top: 1px solid var(--hb-line); padding-top: 18px; }
.hb-fact .elementor-icon-box-title { font-family: var(--hb-serif); font-size: 21px; }
.hb-dark .hb-fact { border-top-color: rgba(246,243,234,.25); }
.hb-faq .e-n-accordion-item { border-bottom: 1px solid var(--hb-line); }
.hb-faq .e-n-accordion-item-title { font-family: var(--hb-serif); font-size: 20px; font-weight: 600; padding: 22px 0; justify-content: space-between; gap: 16px; text-align: left; }
.hb-faq .e-n-accordion-item-title-header { flex: 1; }
.hb-faq .e-n-accordion-item-title-text { text-wrap: balance; }
.hb-faq .e-n-accordion-item > .e-con { padding: 0 0 22px; }
.hb-faq .e-n-accordion-item-title-icon { color: var(--hb-champagne-ink); }
.hb-gallery-grid .elementor-image-gallery .gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-flow: dense; gap: 14px; margin: 0; }
.hb-gallery-grid .elementor-image-gallery .gallery-item { margin: 0 !important; width: auto !important; max-width: none !important; height: 100%; display: block; }
.hb-gallery-grid .elementor-image-gallery .gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.hb-gallery-grid .elementor-image-gallery .gallery-icon, .hb-gallery-grid .elementor-image-gallery .gallery-icon a { display: block; height: 100%; }
.hb-gallery-grid .elementor-image-gallery img { display: block; width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; border: 0 !important; border-radius: var(--hb-radius); transition: transform .6s var(--hb-ease); }
.hb-gallery-grid .elementor-image-gallery .gallery-item:first-child img { aspect-ratio: auto; min-height: 100%; }
.hb-gallery-grid .elementor-image-gallery .gallery-item:hover img { transform: scale(1.02); }
.hb-gallery-grid .elementor-image-gallery .gallery-caption { display: none; }
@media (max-width: 767px) {
	.hb-gallery-grid .elementor-image-gallery .gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; }
	.hb-gallery-grid .elementor-image-gallery .gallery-item:first-child { grid-column: span 2; grid-row: auto; }
	.hb-gallery-grid .elementor-image-gallery .gallery-item:first-child img { aspect-ratio: 3/2; }
}
.hb-step { border-left: 1px solid var(--hb-line); padding-left: 22px; }
.hb-step .elementor-heading-title { font-size: 21px; }
.hb-dark .hb-step { border-left-color: rgba(246,243,234,.3); }
.hb-caption { font-size: 14px; color: var(--hb-muted); }
.hb-quote .elementor-widget-container { font-family: var(--hb-serif); font-size: clamp(22px, 2.4vw, 30px); line-height: 1.5; }

/* --- Single (cabin / package / destination) ----------------------------- */
.hb-single-page .ast-container { max-width: none !important; padding: 0 !important; display: block !important; }
.hb-single-page #content, .hb-single-page .site-content, .hb-single-page #primary { padding: 0; margin: 0; width: 100%; }
.hb-single-hero { position: relative; min-height: min(72vh, 720px); display: flex; align-items: flex-end; color: var(--hb-ivory); background: var(--hb-deeper); }
.hb-single-hero__media { position: absolute; inset: 0; }
.hb-single-hero__media .hb-image, .hb-single-hero__media img { width: 100%; height: 100%; border-radius: 0; }
.hb-single-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,40,39,.86) 0%, rgba(8,40,39,.35) 45%, rgba(8,40,39,.08) 100%); }
.hb-single-hero__inner { position: relative; z-index: 1; padding: 140px 0 56px; }
.hb-single-hero__title { color: var(--hb-ivory); margin-bottom: .2em; max-width: 14ch; text-wrap: balance; }
.hb-single-hero__subtitle { font-size: 19px; color: rgba(246,243,234,.85); margin-bottom: 1.2em; }
.hb-crumbs { font-size: 14px; letter-spacing: .04em; color: rgba(246,243,234,.75); margin-bottom: 18px; display: flex; gap: 10px; }
.hb-crumbs a { color: rgba(246,243,234,.9); text-decoration: none; }
.hb-single-hero__meta { display: flex; flex-wrap: wrap; gap: 8px 40px; margin: 0; padding-top: 18px; border-top: 1px solid rgba(246,243,234,.25); }
.hb-single-hero__meta dt { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--hb-champagne); }
.hb-single-hero__meta dd { margin: 0; font-size: 17px; }
.hb-single { padding: 72px 0 96px; }
.hb-single__layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 64px; align-items: start; }
.hb-single__body { max-width: 68ch; }
.hb-prose h2 { font-size: clamp(24px, 2.4vw, 30px); margin-top: 1.4em; }
.hb-prose h3 { font-size: 21px; margin-top: 1.2em; }
.hb-prose > p:first-child { font-size: 19px; line-height: 1.75; }
.hb-panel { position: sticky; top: 110px; background: var(--hb-surface); border: 1px solid var(--hb-line); border-radius: var(--hb-radius); padding: 28px; }
.hb-panel__label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--hb-champagne-ink); margin-bottom: 6px; }
.hb-panel__price { font-family: var(--hb-serif); font-size: 21px; line-height: 1.4; margin-bottom: 20px; }
.hb-panel .hb-btn { width: 100%; }
.hb-panel__phone { display: block; margin-top: 14px; font-size: 15px; }
.hb-panel__note { font-size: 14px; color: var(--hb-muted); margin: 16px 0 0; line-height: 1.6; }
.hb-list { list-style: none; margin: 0; padding: 0; }
.hb-list li { position: relative; padding: 8px 0 8px 26px; border-bottom: 1px solid var(--hb-line); }
.hb-list li::before { content: ""; position: absolute; left: 0; top: 19px; width: 12px; height: 1px; background: var(--hb-champagne); }
.hb-list-block { margin-top: 40px; }
.hb-list-block--cols .hb-list { columns: 2; column-gap: 32px; }
.hb-list-block--cols .hb-list li { break-inside: avoid; }
.hb-list-block--check .hb-list li::before { width: 7px; height: 12px; border: solid var(--hb-deep); border-width: 0 1.5px 1.5px 0; background: none; transform: rotate(45deg); top: 14px; left: 3px; }
.hb-list-block--dash .hb-list li::before { background: var(--hb-muted); }
.hb-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
.hb-itinerary { margin-top: 40px; }
.hb-itinerary__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--hb-line); }
.hb-itinerary__item { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--hb-line); }
.hb-itinerary__time { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--hb-champagne-ink); padding-top: 6px; }
.hb-itinerary__item h3 { font-size: 20px; margin: 0 0 4px; }
.hb-itinerary__item p { margin: 0; color: var(--hb-muted); }
.hb-single-gallery { margin-top: 72px; }
.hb-single-gallery__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.hb-single-gallery__item { display: block; grid-column: span 3; }
.hb-single-gallery__grid--3 .hb-single-gallery__item, .hb-single-gallery__grid--6 .hb-single-gallery__item, .hb-single-gallery__grid--5 .hb-single-gallery__item:nth-child(n+3) { grid-column: span 2; }
.hb-single-gallery__item .hb-image { aspect-ratio: 4/3; }
.hb-single-gallery__item img { transition: transform .6s var(--hb-ease); }
.hb-single-gallery__item:hover img { transform: scale(1.025); }
.hb-related { margin-top: 96px; }
.hb-related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.hb-related__item { text-decoration: none; color: inherit; }
.hb-related__item .hb-image { aspect-ratio: 4/3; margin-bottom: 14px; }
.hb-related__item h3 { font-size: 21px; margin-bottom: 4px; }
.hb-related__item p { color: var(--hb-muted); margin: 0; }
.hb-map iframe { border-radius: var(--hb-radius); margin-top: 48px; display: block; }
@media (max-width: 1024px) {
	.hb-single__layout { grid-template-columns: 1fr; gap: 40px; }
	.hb-panel { position: static; }
}
@media (max-width: 767px) {
	.hb-single-hero__inner { padding: 120px 0 36px; }
	.hb-single { padding: 40px 0 64px; }
	.hb-two-col { grid-template-columns: 1fr; }
	.hb-list-block--cols .hb-list { columns: 1; }
	.hb-itinerary__item { grid-template-columns: 1fr; gap: 4px; }
	.hb-single-gallery__grid, .hb-related__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
	.hb-single-gallery__item, .hb-single-gallery__grid--3 .hb-single-gallery__item, .hb-single-gallery__grid--6 .hb-single-gallery__item, .hb-single-gallery__grid--5 .hb-single-gallery__item:nth-child(n+3) { grid-column: span 1; }
	.hb-related__grid { grid-template-columns: 1fr; }
}

/* --- Blog (Astra archive/single) ---------------------------------------- */
.hb-archive-head { padding: 40px 0 48px; max-width: 70ch; }
.hb-archive-head h1 { margin: 6px 0 10px; }
.hb-archive-head .hb-lead { color: var(--hb-muted); margin: 0; }
.hb-site .ast-archive-description { display: none; }
.hb-site .ast-container { max-width: calc(var(--hb-container) + 2 * var(--hb-gutter)); }
.hb-site.blog .site-content, .hb-site.archive .site-content, .hb-site.single-post .site-content { padding-top: 48px; }
.hb-site .ast-archive-description { padding: 48px 0 24px; }
.hb-site .ast-archive-title { font-size: clamp(32px, 4vw, 48px); }
.hb-site .entry-title, .hb-site .entry-title a { font-family: var(--hb-serif); color: var(--hb-ink); text-decoration: none; }
.hb-site .ast-article-post { background: transparent; border-bottom: 1px solid var(--hb-line); padding-bottom: 40px; margin-bottom: 40px; }
.hb-site .ast-article-post .post-thumb img { border-radius: var(--hb-radius); }
.hb-site .entry-meta, .hb-site .entry-meta a { color: var(--hb-muted); font-size: 14px; letter-spacing: .03em; }
.hb-site.single-post .entry-content { max-width: 70ch; }
.hb-site.single-post .ast-single-post-featured-section img, .hb-site.single-post .post-thumb img { border-radius: var(--hb-radius); }
.hb-site .entry-meta .posted-by, .hb-site .entry-meta .author { display: none; }
.hb-site .ast-separate-container .ast-article-single, .hb-site .ast-separate-container .ast-article-post { background: transparent; padding: 0; border: 0; }
.hb-site.single-post .entry-content p { font-size: 18px; }
.hb-site .ast-blog-layout-6-grid .ast-article-post, .hb-site .ast-blog-layout-4-grid .ast-article-post { border: 0; }
.hb-site .read-more .ast-button, .hb-site .ast-read-more-container .ast-button { background: transparent; color: var(--hb-deep); border: 0; border-bottom: 1px solid var(--hb-champagne); padding: 0 0 2px; border-radius: 0; }
.hb-site .post-navigation a { color: var(--hb-deep); }
.hb-site #comments { max-width: 70ch; }

/* --- Reveal (opt-in via .hb-reveal; collapses to static without JS or with reduced motion) */
@media (prefers-reduced-motion: no-preference) {
	.hb-js .hb-reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--hb-ease), transform .8s var(--hb-ease); }
	.hb-js .hb-reveal.is-visible { opacity: 1; transform: none; }
}

/* --- Elementor lightbox on-brand ---------------------------------------- */
.elementor-lightbox { --lightbox-ui-color: var(--hb-ivory); --lightbox-color: var(--hb-deeper); }

/* --- 404 ---------------------------------------------------------------- */
.hb-404 { padding: 120px 0 140px; }
.hb-404__inner { max-width: 60ch; }
.hb-404 h1 { margin: 8px 0 12px; }
.hb-404__actions { display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center; margin-top: 28px; }
.error404 .ast-container { max-width: none !important; padding: 0 !important; display: block !important; }
