@charset "UTF-8";
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  padding: 20px 0;
  background: transparent;
  transition: background-color padding 0.3s; }
  @media (max-width: 767px) {
    .site-header {
      padding: 14px 0; } }
  .site-header.is-sticky {
    position: fixed;
    background: rgba(11, 11, 15, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
    animation: slideDown 0.35s ease forwards; }

@keyframes slideDown {
  from {
    transform: translateY(-100%); }
  to {
    transform: translateY(0); } }
/* -------- Navbar Row -------- */
.navbar-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px; }

/* -------- Logo -------- */
.navbar-brand-custom {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
  margin: 0; }
  .navbar-brand-custom .logo-img {
    height: 35px;
    width: auto;
    display: block; }
    @media (max-width: 767px) {
      .navbar-brand-custom .logo-img {
        height: 26px; } }

/* -------- Right Group: nav links + CTA + toggle -------- */
.nav-right {
  display: flex;
  align-items: center;
  gap: 48px; }
  @media (max-width: 1440px) {
    .nav-right {
      gap: 40px; } }
  @media (max-width: 1199px) {
    .nav-right {
      gap: 32px; } }
  @media (max-width: 991px) {
    .nav-right {
      /* On mobile only the hamburger toggle stays */
      gap: 0; } }

/* -------- Desktop Nav Links -------- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0; }
  @media (max-width: 1440px) {
    .nav-links {
      gap: 28px; } }
  @media (max-width: 1199px) {
    .nav-links {
      gap: 20px; } }
  @media (max-width: 991px) {
    .nav-links {
      display: none; } }

.nav-link-item {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #FFFFFF;
  white-space: nowrap;
  transition: color 0.3s ease-in-out; }
  .nav-link-item::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(101.54deg, #E8C068 0%, #B88736 100%);
    transition: width 0.3s ease-in-out; }
  .nav-link-item:hover, .nav-link-item.active {
    color: #E8C071; }
    .nav-link-item:hover::after, .nav-link-item.active::after {
      width: 100%; }
  @media (max-width: 1199px) {
    .nav-link-item {
      font-size: 14px; } }

/* -------- Header CTA -------- */
.header-cta-desktop {
  flex-shrink: 0;
  /* text color + sizing enforced here to avoid specificity clashes */ }
  .header-cta-desktop.btn-primary-gradient {
    padding: 11px 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #000000; }
    .header-cta-desktop.btn-primary-gradient:hover {
      color: #000000; }
  @media (max-width: 991px) {
    .header-cta-desktop {
      display: none; } }

/* -------- Mobile Hamburger -------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.3s ease-in-out; }
  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: transform 0.3s ease-in-out; }
  .nav-toggle:hover {
    border-color: rgba(255, 255, 255, 0.5); }
  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg); }
  @media (max-width: 991px) {
    .nav-toggle {
      display: inline-flex; } }

/* -------- Mobile Slide-in Panel -------- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: rgba(11, 11, 15, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 30;
  padding: 0;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s ease-in-out;
  border-left: 1px solid rgba(232, 192, 113, 0.12);
  overflow: hidden; }
  .mobile-menu.is-open {
    transform: translateX(0); }
  @media (max-width: 991px) {
    .mobile-menu {
      display: flex; } }

/* Fixed-height header row — never scrolls */
.mobile-menu-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(232, 192, 113, 0.1); }

/* Scrollable content area */
.mobile-menu-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px 32px; }
  .mobile-menu-body .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 28px; }
  .mobile-menu-body .mobile-nav-link {
    display: block;
    padding: 13px 14px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #FFFFFF;
    border-radius: 8px;
    transition: background-color 0.3s ease-in-out; }
    .mobile-menu-body .mobile-nav-link:hover, .mobile-menu-body .mobile-nav-link.active {
      background: rgba(232, 192, 113, 0.08);
      color: #E8C071; }
  .mobile-menu-body .mobile-cta {
    width: 100%;
    justify-content: center;
    color: #000000; }
    .mobile-menu-body .mobile-cta:hover {
      color: #000000; }

/* -------- Mobile Menu Close Button -------- */
.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(232, 192, 113, 0.08);
  border: 1px solid rgba(232, 192, 113, 0.35);
  cursor: pointer;
  transition: background 0.25s ease-in-out, border-color 0.25s ease-in-out; }
  .mobile-menu-close svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.9);
    stroke-width: 2;
    stroke-linecap: round;
    fill: none;
    display: block;
    transition: stroke 0.25s ease-in-out; }
  .mobile-menu-close:hover {
    background: rgba(232, 192, 113, 0.18);
    border-color: rgba(232, 192, 113, 0.7); }
    .mobile-menu-close:hover svg {
      stroke: #E8C068; }
  @media (max-width: 579px) {
    .mobile-menu-close {
      width: 36px;
      height: 36px; }
      .mobile-menu-close svg {
        width: 16px;
        height: 16px; } }

/* -------- Backdrop -------- */
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 25;
  opacity: 0;
  transition: opacity 0.3s ease-in-out; }
  .mobile-menu-backdrop.is-open {
    opacity: 1;
    display: block; }

/*# sourceMappingURL=nav.css.map */
