/*!
README - HEADER STYLE

Find the style by section/component using Find or CTRL + F:
HEADER STYLE,
HEADER BRANDING STYLE,
MAIN NAVIGATION STYLE,
HAMBURGER MENU STYLE,
MENU ACTIVE STYLE,
RESPONSIVE STYLE.

Make this stylesheet still readable and after using this file,
don't forget to use beautify after development.

Thank you Whello Developer.
*/

/* ==========================================================================
   HEADER STYLE
   ========================================================================== */

.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: var(--ivory);
}

.admin-bar .site-header {
  top: 48px;
}

.site-header .site-header-inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 64px;
}

/* ==========================================================================
   HEADER BRANDING STYLE
   ========================================================================== */

.site-branding img {
  width: 100px;
  height: 58px;
  -o-object-fit: contain;
  object-fit: contain;
}

/* ==========================================================================
   MAIN NAVIGATION STYLE
   ========================================================================== */

.site-header .site-header-inner .main-navigation {
  width: auto;
  margin-left: auto;
}

.main-navigation ul,
.main-navigation ol {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  padding: 0;
  list-style: none;
}

.main-navigation li {
  width: auto;
  margin: 0;
}

.main-navigation .sub-menu {
  display: none;
}

/* ==========================================================================
   HAMBURGER MENU STYLE
   ========================================================================== */

.site-header .hamburger-menu.btn-toggle-state {
  display: none;
}

.hamburger-menu.btn-toggle-state {
  z-index: 101;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  padding: 8px 4px;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.hamburger-menu.btn-toggle-state span {
  display: block;
  background-color: #000000;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition:
    width 0.3s ease,
    opacity 0.3s ease,
    -webkit-transform 0.3s ease;
  transition:
    width 0.3s ease,
    opacity 0.3s ease,
    -webkit-transform 0.3s ease;
  -o-transition:
    width 0.3s ease,
    opacity 0.3s ease,
    -o-transform 0.3s ease;
  -moz-transition:
    transform 0.3s ease,
    width 0.3s ease,
    opacity 0.3s ease,
    -moz-transform 0.3s ease;
  transition:
    transform 0.3s ease,
    width 0.3s ease,
    opacity 0.3s ease;
  transition:
    transform 0.3s ease,
    width 0.3s ease,
    opacity 0.3s ease,
    -webkit-transform 0.3s ease,
    -moz-transform 0.3s ease,
    -o-transform 0.3s ease;
}

.hamburger-menu.btn-toggle-state span:nth-child(1),
.hamburger-menu.btn-toggle-state span:nth-child(3) {
  width: 32px;
  height: 3px;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
}

.hamburger-menu.btn-toggle-state span:nth-child(2) {
  width: 18px;
  height: 3px;
}

.site-header.toggle-onactive
  .hamburger-menu.btn-toggle-state
  span:nth-child(1) {
  -webkit-transform: translateY(10.5px) rotate(45deg);
  -moz-transform: translateY(10.5px) rotate(45deg);
  -ms-transform: translateY(10.5px) rotate(45deg);
  -o-transform: translateY(10.5px) rotate(45deg);
  transform: translateY(10.5px) rotate(45deg);
}

.site-header.toggle-onactive
  .hamburger-menu.btn-toggle-state
  span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.site-header.toggle-onactive
  .hamburger-menu.btn-toggle-state
  span:nth-child(3) {
  -webkit-transform: translateY(-10.5px) rotate(-45deg);
  -moz-transform: translateY(-10.5px) rotate(-45deg);
  -ms-transform: translateY(-10.5px) rotate(-45deg);
  -o-transform: translateY(-10.5px) rotate(-45deg);
  transform: translateY(-10.5px) rotate(-45deg);
}

/* ==========================================================================
   MENU ACTIVE STYLE
   ========================================================================== */

.menu-item > a {
  position: relative;
}

.menu-item > a::after {
  position: absolute;
  top: -webkit-calc(100% + 3px);
  top: -moz-calc(100% + 3px);
  top: calc(100% + 3px);
  left: 50%;
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: var(--black);
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  content: "";
}

.menu-item.current-menu-item > a::after,
.menu-item:hover > a::after {
  opacity: 1;
  visibility: visible;
}

.menu-item:hover > a,
.menu-item > a:hover {
  text-decoration: none;
}

.cta-menu-item.menu-item > a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--black);
  padding: var(--padding-button);
  -webkit-border-radius: var(--rounded-full);
  -moz-border-radius: var(--rounded-full);
  border-radius: var(--rounded-full);
  background-color: var(--black);
  color: var(--white);
}

.cta-menu-item.menu-item > a:after {
  display: none;
}

.menu-item.ig-icon > a {
  font-size: 0;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 35px;
  height: 35px;
  background: url(/wp-content/uploads/2026/05/instagram.svg) center/contain
    no-repeat;
}

.menu-item.ig-icon > a:after {
  display: none;
}

.menu-item.ig-icon {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* ==========================================================================
   RESPONSIVE STYLE
   ========================================================================== */

/* > MOBILE */
@media all and (min-width: 601px) {
}

/* > TABLET */
@media all and (min-width: 901px) {
}

/* >= DESKTOP & LAPTOP */
@media all and (min-width: 1300px) {
}

/* >= LARGE DESKTOP */
@media all and (min-width: 1600px) {
}

/* < LARGE DESKTOP */
@media all and (max-width: 1599px) {
}

/* >= DESKTOP & LAPTOP && < LARGE DESKTOP */
@media all and (min-width: 1300px) and (max-width: 1599px) {
}

/* <= LARGE TABLET */
@media all and (max-width: 1299px) {
  .admin-bar .site-header {
    top: 0;
  }

  .site-header .site-header-inner {
    padding: 20px 24px;
  }

  .site-header .hamburger-menu.btn-toggle-state {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
  }

  .site-header .site-header-inner .main-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    width: 100%;
    padding: 0 24px 32px;
    background-color: var(--ivory);
    pointer-events: none;
    -webkit-transform: translateY(-120%);
    -moz-transform: translateY(-120%);
    -ms-transform: translateY(-120%);
    -o-transform: translateY(-120%);
    transform: translateY(-120%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: -o-transform 0.3s ease-in-out;
    -moz-transition:
      transform 0.3s ease-in-out,
      -moz-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition:
      transform 0.3s ease-in-out,
      -webkit-transform 0.3s ease-in-out,
      -moz-transform 0.3s ease-in-out,
      -o-transform 0.3s ease-in-out;
  }

  .site-header.toggle-onactive .site-header-inner .main-navigation {
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  .main-navigation ul,
  .main-navigation ol {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 16px;
  }
}

/* > MOBILE && <= LARGE TABLET */
@media all and (min-width: 601px) and (max-width: 1299px) {
}

/* <= TABLET */
@media all and (max-width: 900px) {
}

/* <= MOBILE */
@media all and (max-width: 600px) {
}
