@import url("app-colors.css");
@import url("app-theme.css");
@import url("app-scaffold.css");

body {
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
}

.main-menu > ul > li > a {
  color: var(--mh-text);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.main-menu > ul > li > a:hover,
.main-menu > ul > li > a:focus {
  color: var(--mh-primary);
}

.header-button .box-title {
  color: var(--mh-text);
  font-weight: 700;
}

.header-button .box-title:hover,
.header-button .box-title:focus {
  color: var(--mh-primary);
}

.hero-title,
.sec-title {
  font-size: clamp(26px, 3vw, 46px);
  line-height: 1.25;
  font-weight: 800;
}

.hero-title,
.sec-title,
.sub-title,
.subtitle4,
.sub-title2,
.sub-title3 {
  color: var(--mh-text);
}

.sub-title,
.subtitle4,
.big-title3-title,
.text-anime-style-1,
.text-anime-style-2,
.text-anime-style-3,
.font-style {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  letter-spacing: 0.04em;
}

.box-text,
p,
span,
li {
  color: var(--mh-text);
  font-weight: 500;
}

.footer-wrapper .info-box_text,
.footer-wrapper .info-box_text a {
  color: var(--mh-text);
  font-weight: 600;
}

.footer-wrapper .info-box_text a:hover,
.footer-wrapper .info-box_text a:focus {
  color: var(--mh-primary);
}

.hero-img .img-main img {
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(201, 178, 119, 0.25);
}

.hero-img .img-main {
  background-color: var(--mh-secondary-bg);
  border-radius: 24px;
  padding: 12px;
}

.header-button .th-menu-toggle {
  background-color: var(--mh-primary);
  border-color: var(--mh-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(201, 178, 119, 0.35);
}

.header-button .th-menu-toggle:hover,
.header-button .th-menu-toggle:focus {
  background-color: var(--mh-secondary);
  border-color: var(--mh-secondary);
  color: #fff;
}

@media (max-width: 991px) {
  body {
    padding-top: var(--mh-mobile-header-height, 80px);
  }

  .th-header .sticky-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    background: var(--mh-bg);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  }

  .th-menu-wrapper {
    display: flex;
    align-items: flex-start;
    position: fixed;
    inset: 0;
    height: 100%;
    background: rgba(24, 18, 10, 0.6);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1400;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .th-menu-wrapper .th-menu-area {
    left: auto;
    right: auto;
    margin: calc(var(--mh-mobile-header-height, 80px) + 12px) 16px 0;
    border-radius: 16px;
    position: relative;
    padding-top: 56px;
    max-height: 0;
    overflow: hidden;
    border: 1px solid var(--mh-border);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: max-height 0.3s ease, opacity 0.2s ease, transform 0.3s ease;
  }

  .th-menu-wrapper.th-body-visible .th-menu-area {
    max-height: calc(100vh - var(--mh-mobile-header-height, 80px) - 72px);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .th-menu-wrapper .th-menu-area .th-menu-toggle {
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 2;
  }

  .th-menu-wrapper .mobile-logo {
    display: none;
  }

  .th-menu-wrapper.th-body-visible {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
  }

  .sec-title,
  .sub-title,
  .subtitle4,
  .sub-title2,
  .sub-title3 {
    color: var(--mh-text);
  }
}

.menu-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
  justify-items: center;
}

.menu-image-card {
  width: 100%;
  max-width: 520px;
}

.menu-image-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.mh-menu-image {
  cursor: pointer;
}

.header-button .call-wrapper .content p,
.header-button .call-wrapper .box-title,
.header-button .call-wrapper a {
  color: var(--mh-text) !important;
}

.header-button .call-wrapper .content p {
  opacity: 0.9;
}

.header-button .call-wrapper .icon img,
.header-button .call-wrapper .icon svg {
  filter: brightness(0.2);
}

.footer-wrapper .th-widget-about {
  text-align: left;
}

@media (max-width: 767px) {
  .footer-wrapper .th-widget-about {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-wrapper .th-widget-about .about-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
  }

  .footer-wrapper .th-widget-about .about-logo img {
    margin: 0 auto;
  }
}

.mh-scroll-locked {
  overflow: hidden;
}

.mh-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 8, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1500;
}

.mh-lightbox.mh-lightbox--open {
  opacity: 1;
  visibility: visible;
}

.mh-lightbox-content {
  max-width: min(92vw, 960px);
  max-height: 86vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mh-lightbox-content img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.mh-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  background: #fff;
  color: var(--mh-text);
  border: none;
  border-radius: 999px;
  width: 42px;
  height: 42px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  z-index: 1600;
}
