.elementor-12 .elementor-element.elementor-element-e9af359{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-291b8c2 */@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800;900&display=swap');

:root {
  --smk-black: #0b0b0b;
  --smk-gold: #c9a970;
  --smk-gold-dark: #9b7a36;
  --smk-cream: #e3d5ba;
  --smk-light: #fffaf0;
  --smk-border: rgba(201, 169, 112, 0.22);
}

.smk-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(11, 11, 11, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201, 169, 112, 0.16);
  font-family: 'Nunito Sans', sans-serif;
}

.smk-navbar {
  width: min(1180px, 92%);
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
}

.smk-logo {
  display: flex;
  align-items: center;
  z-index: 10001;
}

.smk-logo img {
  width: 180px;
  max-width: 100%;
  height: auto;
  display: block;
}

.smk-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.smk-menu a {
  position: relative;
  color: var(--smk-cream);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: 0.3s ease;
}

.smk-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--smk-gold-dark), #fce9a4, var(--smk-gold));
  transition: 0.3s ease;
}

.smk-menu a:hover,
.smk-menu a.active {
  color: var(--smk-gold);
}

.smk-menu a:hover::after,
.smk-menu a.active::after {
  width: 100%;
}

.smk-menu-btn,
.smk-mobile-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #9b7a36, #fce9a4, #c9a970);
  color: #111 !important;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 12px 34px rgba(201, 169, 112, 0.28);
  transition: 0.3s ease;
}

.smk-menu-btn:hover,
.smk-mobile-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(201, 169, 112, 0.38);
}

.smk-mobile-btn {
  display: none;
}

.smk-menu-toggle {
  display: none;
}

.smk-hamburger {
  display: none;
}

/* MOBILE */
@media (max-width: 900px) {
  .smk-navbar {
    min-height: 82px;
  }

  .smk-logo img {
    width: 155px;
  }

  .smk-menu-btn {
    display: none;
  }

  .smk-hamburger {
    display: flex;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid var(--smk-border);
    background: rgba(255, 255, 255, 0.04);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10001;
  }

  .smk-hamburger span {
    width: 22px;
    height: 2px;
    background: linear-gradient(90deg, #9b7a36, #fce9a4, #c9a970);
    border-radius: 999px;
    transition: 0.3s ease;
  }

  .smk-menu {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: rgba(11, 11, 11, 0.98);
    border: 1px solid rgba(201, 169, 112, 0.18);
    border-top: none;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: 0.3s ease;
  }

  .smk-menu a {
    width: 100%;
    padding: 15px 14px;
    border-bottom: 1px solid rgba(201, 169, 112, 0.12);
    font-size: 15px;
  }

  .smk-menu a::after {
    display: none;
  }

  .smk-mobile-btn {
    display: flex;
    margin-top: 16px;
    border-bottom: none !important;
  }

  .smk-menu-toggle:checked ~ .smk-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .smk-menu-toggle:checked ~ .smk-hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .smk-menu-toggle:checked ~ .smk-hamburger span:nth-child(2) {
    opacity: 0;
  }

  .smk-menu-toggle:checked ~ .smk-hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}/* End custom CSS */