/*
	Theme Name: Hello Elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.4.7
	Stable tag: 3.4.7
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/
:root {
  --color-accent: #CDAC7A;
  --bg-light: #F5F4F2;
  --text-on-light: #0F1418;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

.advius-header {
  background-color: var(--bg-light) !important;
  font-family: "Plus Jakarta Sans", Inter, system-ui, -apple-system, sans-serif !important;
  padding: 16px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(15, 20, 24, 0.08) !important;
  transition: backdrop-filter 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.advius-header.scrolled {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(245, 244, 242, 0.85) !important;
  box-shadow: 0 4px 24px rgba(15, 20, 24, 0.07) !important;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.logo-link {
  display: inline-flex;
  align-items: flex-start;
  text-decoration: none;
  flex-shrink: 0;
  gap: 2px;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-on-light) !important;
  letter-spacing: -0.03em;
  line-height: 1;
  transition: color 0.2s ease;
}

.logo-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--color-accent) !important;
  border-radius: 50%;
  margin-top: 3px;
  flex-shrink: 0;
}

.logo-link:hover .logo-text { color: var(--color-accent) !important; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

.desktop-nav > a,
.desktop-nav .nav-link {
  color: var(--text-on-light) !important;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.005em;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
  background-color: transparent !important;
}

.desktop-nav > a::after,
.desktop-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-accent) !important;
  transition: width 0.25s ease;
}

.desktop-nav > a:hover,
.desktop-nav .nav-link:hover {
  color: var(--color-accent) !important;
  background-color: transparent !important;
}

.desktop-nav > a:hover::after,
.desktop-nav .nav-link:hover::after {
  width: 100%;
}

.advius-header .nav-item {
  position: relative;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  cursor: default !important;
}
.nav-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dropdown-arrow {
  font-size: 10px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  margin-top: 8px;
  left: 0;
  min-width: 220px;
  background-color: var(--bg-light) !important;
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(15, 20, 24, 0.14) !important;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1100;
}

.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  text-decoration: none;
  color: var(--text-on-light) !important;
  white-space: nowrap;
  background-color: transparent !important;
}

.dropdown-menu a:hover {
  background-color: transparent !important;
  color: var(--color-accent) !important;
}

.dropdown-section-label {
  display: block;
  padding: 6px 16px 4px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  pointer-events: none;
}

.advius-header .has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

.menu-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1001;
}

.menu-line {
  width: 22px;
  height: 1.5px;
  background-color: var(--text-on-light) !important;
  transition: all 0.3s ease;
  display: block;
}

.menu-toggle:hover .menu-line { background-color: var(--text-on-light) !important; }
.menu-toggle.active .menu-line:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.menu-toggle.active .menu-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active .menu-line:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.advius-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 20, 24, 0.45) !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1998;
}

.advius-overlay.active { opacity: 1; visibility: visible; }

.advius-off-canvas {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(380px, 85vw);
  height: 100vh;
  background-color: var(--bg-light) !important;
  border-left: 1px solid rgba(15, 20, 24, 0.08) !important;
  box-shadow: -20px 0 60px rgba(15, 20, 24, 0.08) !important;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1999;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.advius-off-canvas.active { right: 0; }

.off-canvas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 30px;
  border-bottom: 1px solid rgba(15, 20, 24, 0.07) !important;
}

.off-canvas-logo span {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-on-light) !important;
  letter-spacing: -0.03em;
}

.off-canvas-close {
  background: transparent;
  border: none;
  color: var(--text-on-light) !important;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.off-canvas-close:hover { color: var(--color-accent) !important; }

.off-canvas-nav {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  flex: 1;
}

.off-canvas-nav a {
  color: var(--text-on-light) !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.2s ease;
  padding: 17px 30px;
  border-bottom: 1px solid rgba(15, 20, 24, 0.05) !important;
  background-color: transparent !important;
}

.off-canvas-nav a:hover {
  color: var(--color-accent) !important;
  padding-left: 38px;
  background-color: transparent !important;
}

.offcanvas-section-title {
  padding: 14px 30px 6px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  border-bottom: 1px solid rgba(15, 20, 24, 0.05) !important;
  background-color: transparent !important;
}

body.advius-menu-open { overflow: hidden !important; }

@media (max-width: 767px) {
  .advius-header {
    padding: 12px 16px;
  }

  .header-container {
    gap: 12px;
  }

  .logo-text {
    font-size: 20px;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }
}
/* remove red background from nested dropdown items */
.dropdown-item.has-nested-dropdown:hover,
.dropdown-item.has-nested-dropdown:focus-within,
.dropdown-item.has-nested-dropdown .nested-trigger:hover,
.dropdown-item.has-nested-dropdown .nested-trigger:focus {
  background: transparent;       /* or set your preferred color */
  color: #1a1d21;                /* keep text color consistent */
}