/* =========================================================
   DOTS MEDIA
   HEADER / NAVIGATION
   ========================================================= */


/* =========================================================
   FIXED HEADER
   ========================================================= */

.site-header {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  width: 100%;

  z-index: 9999;

  background: #0a0705;
}


/* WordPress Admin Bar */
body.admin-bar .site-header {
  top: 32px;
}


/* Mobile Admin Bar */
@media (max-width: 782px) {

  body.admin-bar .site-header {
    top: 46px;
  }

}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  justify-content: space-between;

  max-width: 1400px;

  margin: 0 auto;

  padding-top: 20px;

  padding-bottom: 20px;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo {
  font-weight: 800;

  font-size: 20px;

  line-height: 1.1;

  letter-spacing: 0.5px;

  margin-left: 80px;
}


.logo span {
  display: block;

  color: #ff7a1a;
}
.logo img {
    display: block;
    width: 90px;
    height: auto;
}



/* =========================================================
   NAVIGATION LINKS
   ========================================================= */

.nav-links {
  display: flex;

  align-items: center;

  gap: 40px;

  list-style: none;
}


.nav-links li a {
  text-decoration: none;

  color: #bdbdbd;

  font-size: 15px;

  font-weight: 500;

  transition: color 0.2s ease;
}


.nav-links li a:hover {
  color: #ffffff;
}


.nav-links li a.active {
  color: #ffffff;

  font-weight: 600;

  padding-bottom: 6px;

  border-bottom: 2px solid #ff7a1a;
}


/* =========================================================
   HEADER CTA
   ========================================================= */

.btn-get-in-touch {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  background: #ff7a1a;

  color: #1a0f08;

  font-weight: 700;

  font-size: 13px;

  letter-spacing: 0.5px;

  padding: 14px 26px;

  margin-right: 40px;

  border: none;

  border-radius: 999px;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}


.btn-get-in-touch:hover {
  transform: translateY(-2px);

  box-shadow:
    0 8px 20px rgba(255, 122, 26, 0.35);
}


/* =========================================================
   ACTIVE NAVIGATION
   ========================================================= */

.nav-links a.active,
.nav-links .current-menu-item > a {
  color: #ffffff;
}


.nav-links a.active::after,
.nav-links .current-menu-item > a::after {
  width: 100%;
}



/* =========================================================
                 Drop Down Desktop
   ========================================================= */


.nav-links > li {
  position: relative;
}

.nav-links .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 150px;

  padding: 8px;
  margin: 0;
  list-style: none;

  background: #0a0705;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateX(-50%) translateY(12px);
  transition: .25s ease;

  z-index: 99999;
}

.nav-links > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-links .sub-menu a {
  display: block;
  padding: 12px 14px;
  color: #bdbdbd;
  text-decoration: none;
}

.nav-links .sub-menu a:hover {
  color: #fff;
  background: rgba(255,122,26,.1);
}

/* Services Arrow */
.nav-links .menu-item-has-children > a::after {
  content: "⌄";
  display: inline-block;
  margin-left: 7px;
  color: #888;
  font-size: 12px;
  transition: .25s ease;
}

.nav-links .menu-item-has-children:hover > a::after {
  color: #ff7a1a;
  transform: rotate(180deg);
}

/* Keep dropdown open while moving mouse */
.nav-links .menu-item-has-children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 15px;
}

/* No arrow inside dropdown */
.nav-links .sub-menu a::after {
  display: none !important;
}



/* =========================================================
             MOBILE VIEW START
   ========================================================= */


/* =========================================================
   TABLET / MOBILE DROPDOWN
   ========================================================= */

@media (max-width: 1024px) {

  /* Main mobile navigation */
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Services submenu */
  .nav-links .sub-menu {
    position: static;

    width: 100%;
    min-width: 0;

    box-sizing: border-box;

    margin: 8px 0 0;
    padding: 6px;

    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 10px;

    display: none;

    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  /* Open submenu */
  .nav-links .menu-item-has-children.submenu-open > .sub-menu {
    display: block;
  }

  /* Submenu links */
  .nav-links .sub-menu a {
    display: block;
    width: 100%;
    padding: 11px 12px;
    font-size: 13px;
    box-sizing: border-box;
  }

  /* Services arrow */
  .nav-links .menu-item-has-children > a::after {
    content: "⌄";
    display: inline-block;
    margin-left: 7px;
    color: #888;
    font-size: 12px;
    transition: transform .25s ease;
  }

  .nav-links .menu-item-has-children.submenu-open > a::after {
    transform: rotate(180deg);
    color: #ff7a1a;
  }

  /* Remove desktop hover bridge */
  .nav-links .menu-item-has-children::after {
    display: none;
  }
}




@media (max-width: 1024px) {

  .nav-links .menu-item-has-children.submenu-open > .sub-menu {
    display: block !important;
    position: relative !important;

    width: 100% !important;
    height: auto !important;
    max-height: none !important;

    opacity: 1 !important;
    visibility: visible !important;
    overflow: visible !important;

    margin-top: 10px !important;
    padding: 8px !important;

    z-index: 1000 !important;
  }

  .nav-links .menu-item-has-children.submenu-open > .sub-menu > li {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav-links .menu-item-has-children.submenu-open > .sub-menu > li > a {
    display: block !important;
    width: 100% !important;

    color: #ffffff !important;

    opacity: 1 !important;
    visibility: visible !important;

    padding: 12px !important;
  }
}





/* =========================================================
   MOBILE GET IN TOUCH - LAST ITEM
   ========================================================= */

@media (max-width: 1024px) {

  .nav-links .btn-get-in-touch {
    position: static !important;

    display: flex !important;

    width: 100% !important;
    box-sizing: border-box;

    margin: 20px 0 0 !important;

    order: 999;

    flex-shrink: 0;
  }

}