/* Source: header.php */
/* ============================================================
   GLOBAL
   ============================================================ */
html, body {
	overflow-x: hidden;
	max-width: 100%;
}
body.menu-open {
	overflow: hidden;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
#announceBar {
	background: rgba(253,250,245,0.97);
	color: #60091A;
	text-align: center;
	padding: 11px 16px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.4px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1001;
	width: 100%;
	box-sizing: border-box;
	border-bottom: 1px solid rgba(96,9,26,0.08);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
#announceBar strong { color: #60091A; }


/* announce scrolling track: duplicate content for seamless loop */
#announceBar .announce-bar-track {
    display: flex;
    align-items: center;
    gap: 56px;
    width: max-content;
    animation: announce-bar-scroll 28s linear infinite;
    will-change: transform;
}

#announceBar:hover .announce-bar-track {
	animation-play-state: paused;
}

#announceBar .announce-item {
	display: inline-block;
	white-space: nowrap;
}

@keyframes announce-bar-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(calc(-50% - 28px)); }
}

@media (max-width: 768px) {
	#announceBar {
		font-size: 11px;
		padding: 8px 12px;
	}
}

/* ============================================================
   SITE HEADER
   ============================================================ */
#siteHeader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	width: 100%;
	height: 76px;
	min-height: 76px;
	background: #60091A;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	transition: box-shadow 0.3s ease;
	overflow: visible;
}
#siteHeader.scrolled {
	box-shadow: 0 2px 28px rgba(0,0,0,0.35);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.header-inner { padding: 0 16px; }
}

/* ---- Logo ---- */
.header-logo-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	flex-shrink: 0;
	height: 100%;
	margin-left: -20px;
}
.header-logo-img,
#siteHeader .custom-logo {
	height: 100px !important;
	width: auto !important;
	display: block !important;
	object-fit: contain !important;
	max-width: 260px !important;
	filter: brightness(0) invert(1) contrast(2.2) saturate(1.2) !important;
}

@media (max-width: 1024px) {
	.header-logo-img,
	#siteHeader .custom-logo {
		height: 80px !important;
		max-width: 220px !important;
	}
}

@media (max-width: 640px) {
	.header-logo-link {
		margin-left: -8px;
	}
	.header-logo-img,
	#siteHeader .custom-logo {
		height: 72px !important;
		max-width: 190px !important;
		filter: brightness(0) invert(1) contrast(2.8) saturate(1.4) !important;
		transform: scale(1.02);
	}
	.btn-contact-header {
		font-weight: 800;
	}
}

/* ---- Actions wrapper ---- */
.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

/* ---- Contact button ---- */
.btn-contact-header {
	display: flex;
	align-items: center;
	gap: 8px;
	background:#60091A;
	color: #ffffff;
	padding: 10px 20px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.3px;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 2px 12px rgba(201,169,110,0.35);
	transition: all 0.3s ease;
}
.btn-contact-header:hover { background: #101010; }

@media (max-width: 1024px) {
	.btn-contact-header { padding: 8px 16px; font-size: 12px; }
}

/* ============================================================
   HAMBURGER BUTTON
   ============================================================ */
#mobileToggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	cursor: pointer;
	padding: 8px;
	background: none;
	border: none;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}
#mobileToggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: #ffffff;
	border-radius: 2px;
	transition: all 0.3s ease;
	pointer-events: none;
}


@media (max-width: 1024px) {
	#site-nav     { display: none !important; }
	#mobileToggle { display: flex !important; }
}

/* ============================================================
   DESKTOP NAV
   ============================================================ */
#site-nav ul.tll-nav-ul,
#site-nav ul.tll-nav-ul ul {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: flex !important;
	align-items: center !important;
	gap: 2px !important;
}
#site-nav ul.tll-nav-ul > li { position: relative; }

/* Invisible bridge — cursor gap me bhi hover state preserve kare */
#site-nav ul.tll-nav-ul > li.menu-item-has-children::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 16px;                        /* match dropdown gap */
	background: transparent;
	pointer-events: auto;
	display: none;
}
#site-nav ul.tll-nav-ul > li.menu-item-has-children:hover::after {
	display: block;
}
#site-nav ul.tll-nav-ul > li > a {
	font-size: 14px;
	font-weight: 500;
	color: #ffffff;
	padding: 8px 14px;
	border-radius: 6px;
	display: block;
	text-decoration: none;
	white-space: nowrap;
	transition: all 0.25s ease;
}
#site-nav ul.tll-nav-ul > li > a:hover,
#site-nav ul.tll-nav-ul > li:hover > a,
#site-nav ul.tll-nav-ul > li:focus-within > a,
#site-nav ul.tll-nav-ul > li.current-menu-item > a {
	color: #60091A;
	background: #F4EEE2;
}
#site-nav ul.tll-nav-ul ul {
	visibility: hidden;
	opacity: 0;
	transform: translateY(8px);
	pointer-events: none;
	display: flex !important;
	position: absolute;
	top: calc(100% + 16px);            /* ← clear 16px gap from parent */
	left: 0;
	min-width: 220px;
	flex-direction: column !important;
	background: #ffffff;
	border: 1px solid #E8E2DA;
	border-radius: 12px;
	padding: 10px !important;
	gap: 0 !important;
	box-shadow: 0 12px 40px rgba(0,0,0,0.12);
	z-index: 200;
	transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
}
#site-nav ul.tll-nav-ul li:hover > ul,
#site-nav ul.tll-nav-ul li:focus-within > ul {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	transition: opacity .22s ease, transform .22s ease, visibility 0s;
}
#site-nav ul.tll-nav-ul li:hover > ul { display: flex !important; }
#site-nav ul.tll-nav-ul ul li a {
	display: block;
	padding: 10px 14px;
	font-size: 14px;
	color: #60091A;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.2s;
	white-space: nowrap;
}
#site-nav ul.tll-nav-ul ul li a:hover { background: #F4EEE2; }
#site-nav .dropdown-arrow {
	display: inline-block;
	margin-left: 4px;
	font-size: 10px;
	opacity: 0.85;
}

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
#mobile-menu {
	display: none;
	position: fixed;
	top: 116px;
	left: 0;
	right: 0;
	bottom: 0;
	background: #F4EEE2;
	z-index: 998;
	overflow-y: auto;
	overflow-x: hidden;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	padding-top: 56px;
}
#mobile-menu.open { display: block !important; }

/* Close button inside menu */
#mobileClose {
	position: fixed;
	/* JS se top calculate hoga */
	right: 20px;
	background: transparent;
	border: none;
	cursor: pointer;
	font-size: 26px;
	color: #60091A;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
	outline: none;
	z-index: 1000;
	line-height: 1;
	padding: 4px 8px;
}
#mobileClose:hover { opacity: 0.7; }

/* Menu inner */
.mobile-menu-inner {
	width: 100%;
	padding: 0 24px 60px;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

/* List reset */
#mobile-menu ul,
#mobile-menu .tll-mobile-nav-ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	width: 100%;
}

/* Top-level items */
#mobile-menu .tll-mobile-nav-ul > li {
	border-bottom: 1px solid rgba(96,9,26,0.12);
	position: relative;
	width: 100%;
}
#mobile-menu .tll-mobile-nav-ul > li:last-child { border-bottom: none; }

#mobile-menu .tll-mobile-nav-ul > li > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-family: var(--font-body, Georgia, serif);
	font-size: 22px;
	font-weight: 500;
	color: #1a1a1a;
	padding: 20px 0;
	text-decoration: none;
	transition: color 0.25s ease;
	width: 100%;
	box-sizing: border-box;
}
#mobile-menu .tll-mobile-nav-ul > li > a:hover,
#mobile-menu .tll-mobile-nav-ul > li.current-menu-item > a { color: #60091A; }

#mobile-menu .dropdown-arrow { display: none; }

/* Caret button */
.tll-mobile-caret {
	background: transparent;
	border: 1px solid rgba(96,9,26,0.3);
	color: #60091A;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	flex-shrink: 0;
	padding: 0;
	margin-left: 12px;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}
.tll-mobile-caret span {
	display: inline-block;
	font-size: 20px;
	line-height: 1;
	font-weight: 300;
	transition: transform 0.3s ease;
	pointer-events: none;
}
.tll-mobile-nav-ul > li.open > a .tll-mobile-caret {
	background: #60091A;
	color: #F4EEE2;
	border-color: #60091A;
}
.tll-mobile-nav-ul > li.open > a .tll-mobile-caret span {
	transform: rotate(90deg);
}

/* Submenu */
#mobile-menu .tll-mobile-nav-ul ul {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	padding: 0 0 0 12px !important;
	margin: 0;
	border-left: 2px solid rgba(96,9,26,0.15);
	transition: max-height 0.4s ease, opacity 0.3s ease;
}
#mobile-menu .tll-mobile-nav-ul > li.open > ul {
	max-height: 800px;
	opacity: 1;
	padding: 4px 0 14px 12px !important;
}
#mobile-menu .tll-mobile-nav-ul ul li a {
	display: block;
	font-size: 15px;
	font-weight: 500;
	color: rgba(26,26,26,0.8);
	padding: 12px 14px;
	text-decoration: none;
	transition: all 0.25s ease;
	border-radius: 6px;
}
#mobile-menu .tll-mobile-nav-ul ul li a:hover,
#mobile-menu .tll-mobile-nav-ul ul li.current-menu-item a {
	color: #60091A;
	background: rgba(96,9,26,0.06);
	padding-left: 18px;
}
