/* Variables */
/* Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #121212;
  color: #f5f5f5;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2), transparent);
  backdrop-filter: blur(4px);
}

@media (max-width: 767px) {
  body.home .site-header {
    height: 100%;
  }
}
body.home .site-header .hamburger {
  display: none !important;
}

.header-inner {
  text-align: center;
  padding: 18px 0;
}

.logo {
  text-align: center;
  margin-top: 30px;
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .logo {
    position: static;
    margin-top: 0;
  }
}
.logo a {
  display: inline-block;
  text-align: center;
}
.logo a img {
  width: 120px;
}
@media (max-width: 767px) {
  .logo a img {
    width: 90px;
  }
}

body.home .logo {
  position: absolute;
  top: 15px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #c49b63;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

body.home .main-nav {
  position: absolute;
  overflow: hidden;
  top: 0;
}
@media (max-width: 767px) {
  body.home .main-nav {
    height: 100vh;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    inset: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    opacity: 1;
    background: transparent;
    pointer-events: all;
    padding: 170px 50px 50px 50px;
    display: block;
    justify-self: center;
    align-items: center;
    top: 0;
  }
}
body.home .main-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 767px) {
  body.home .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
}
body.home .main-nav ul li {
  display: flex;
  width: 25vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  body.home .main-nav ul li {
    display: block;
    width: 100%;
    height: auto;
    text-align: center;
  }
}
body.home .main-nav ul li a {
  font-size: 30px;
  text-transform: capitalize;
  color: #c4c4c4;
  padding-bottom: 4px;
  position: relative;
  color: #ffffff;
  font-weight: 500;
  display: inline-block;
  padding-bottom: 60px;
  transition: 0.3s all;
}
@media (min-width: 767px) {
  body.home .main-nav ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  body.home .main-nav ul li a {
    font-size: 24px;
  }
}
body.home .main-nav ul li a:hover {
  transform: scale(1.3);
}
@media (min-width: 767px) {
  body.home .main-nav ul li a:hover {
    background: rgba(0, 0, 0, 0.5);
  }
}
body.home .main-nav ul li a:hover, body.home .main-nav ul li a.active {
  color: #fff;
}

.inner-pages.open .main-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: 0.3s all;
  right: 0;
}
.inner-pages .main-nav {
  transition: 0.3s all;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 135px 15px 10px 15px;
}
@media (max-width: 767px) {
  .inner-pages .main-nav {
    padding: 130px 15px 50px 15px;
    background-image: url("https://menyamakoto.com/wp-content/uploads/2025/12/chef-image.webp");
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    right: -100%;
    height: 100vh;
    width: 100%;
    top: 0;
    opacity: 0;
    visibility: hidden;
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
    background-position: center bottom;
  }
}
@media (max-width: 767px) {
  .inner-pages .main-nav:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #282828;
    width: 100%;
    height: 100%;
  }
}
.inner-pages .main-nav ul {
  display: flex;
}
@media (max-width: 767px) {
  .inner-pages .main-nav ul {
    display: block;
    align-items: center;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
}
.inner-pages .main-nav ul li {
  list-style: none;
  text-align: center;
}
.inner-pages .main-nav ul li a {
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 4px;
  position: relative;
  font-weight: 600;
  display: inline-block;
  padding-right: 25px;
}
@media (max-width: 767px) {
  .inner-pages .main-nav ul li a {
    font-size: 28px;
    padding-bottom: 40px;
  }
}
.inner-pages .main-nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
@media (min-width: 767px) {
  .inner-pages .logo img {
    width: 90px;
  }
}

.inner-pages .main-nav a:hover,
.inner-pages .main-nav a.active {
  color: #fff;
}

.inner-pages .main-nav a:hover::after,
.inner-pages .main-nav a.active::after {
  width: 100%;
}

/* Mobile nav toggle */
@media (max-width: 767px) {
  .inner-pages .logo {
    margin-top: 15px;
  }
}
.inner-pages .site-header .hamburger {
  width: 35px;
  height: 25px;
  position: absolute;
  right: 15px;
  display: none;
  top: 30px;
  transform: translate(-50%, -50%);
  top: 50%;
}
@media (max-width: 767px) {
  .inner-pages .site-header .hamburger {
    display: block;
  }
}
.inner-pages .site-header .hamburger span {
  width: 100%;
  height: 3px;
  background: #ffffff;
  display: inline-block;
  position: absolute;
  transition: 0.3s all;
}
.inner-pages .site-header .hamburger span:nth-child(2) {
  top: 10px;
}
.inner-pages .site-header .hamburger span:last-child {
  top: 20px;
}
.inner-pages.open .hamburger span:first-child {
  transform: translateY(12px) rotate(45deg);
}
.inner-pages.open .hamburger span:nth-child(2) {
  transform: translateY(12px) rotate(-45deg);
  top: 0;
}
.inner-pages.open .hamburger span:last-child {
  opacity: 0;
  visibility: hidden;
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero-section {
    height: 100%;
    min-height: auto;
    overflow: auto;
  }
}
.hero-section .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section .hero-video source {
  object-position: center;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
  z-index: -1;
}

.hero-content {
  padding-top: 160px;
  padding-bottom: 80px;
  max-width: 560px;
}

.hero-subtitle {
  font-family: "Playfair Display", serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 8px;
  color: #c49b63;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 5vw, 56px);
  margin: 0 0 10px;
}

.hero-text {
  max-width: 420px;
  color: #c4c4c4;
  margin-bottom: 26px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}
.btn:active {
  transform: translateY(1px);
}
.btn-light {
  background: #fff;
  color: #000;
}
.btn-light:hover {
  background: #c49b63;
  border-color: transparent;
  color: #000;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
  border-color: #c49b63;
  color: #fff;
}
.btn-block {
  width: 100%;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 5%;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c4c4c4;
}

.scroll-line {
  width: 1px;
  height: 40px;
  margin: 8px auto 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 16px;
  top: -16px;
  left: 0;
  background: #fff;
  animation: scrollDown 1.6s infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateY(40px);
    opacity: 0;
  }
}
/* Sections */
.section {
  padding: 80px 0;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 6px;
}

.section-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: #c49b63;
  margin-top: 0;
  margin-bottom: 18px;
}

/* About */
.about-section {
  background: #181818;
  padding-top: 250px !important;
}
@media (max-width: 767px) {
  .about-section {
    padding-top: 160px !important;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  color: #c4c4c4;
}

.text-link {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #c49b63;
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
}
.text-link:hover {
  color: #fff;
}

.about-image-wrapper {
  position: relative;
  min-height: 280px;
}

.about-image {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
}
.about-image.main-img {
  inset: 0 10% 20% 0;
}
.about-image.secondary-img {
  width: 50%;
  height: 46%;
  bottom: 0;
  right: 0;
  transform: translateY(20%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Menu */
.menu-section {
  background: #101010;
  padding-top: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.4s ease-in-out;
  position: relative;
}
@media (max-width: 767px) {
  .menu-section {
    padding-top: 160px !important;
  }
}

.menu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  pointer-events: none;
}

.menu-section > .container {
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.25);
}
@media (min-width: 767px) {
  .menu-section > .container {
    padding-top: 15px;
  }
}
@media (max-width: 767px) {
  .menu-section > .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.menu-tab {
  background: transparent;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #c4c4c4;
  padding: 8px 20px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.menu-tab.active {
  background: #c49b63;
  color: #000;
  border-color: transparent;
}

.menu-columns {
  max-width: 767px;
  margin: 0 auto;
}

.menu-list {
  display: none;
}
.menu-list.active {
  display: flex;
  flex-direction: column-reverse;
}

.menu-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.menu-item:last-child {
  border-bottom: none;
}
.menu-item-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}
.menu-item h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 18px;
}

.menu-price {
  font-family: "Playfair Display", serif;
  color: #c49b63;
}

.menu-desc {
  margin: 6px 0 0;
  color: #c4c4c4;
  font-size: 14px;
}

/* Blog */
.blog-section {
  background: #181818;
}
@media (max-width: 767px) {
  .blog-section {
    padding-top: 160px !important;
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  background: #111;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

.blog-image {
  padding-top: 64%;
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: 18px 18px 20px;
}
.blog-content .blog-meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c4c4c4;
  margin: 0 0 8px;
}
.blog-content h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 18px;
}
.blog-content p {
  color: #c4c4c4;
  font-size: 14px;
}

/* Reservations */
.reservations-section {
  background: #101010;
  padding-top: 300px;
}
@media (max-width: 767px) {
  .reservations-section {
    padding-top: 160px !important;
  }
}

.reservations-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.reservations-info {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  color: #c4c4c4;
}
.reservations-info li {
  margin-bottom: 6px;
}

.reservations-form-wrapper {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 22px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.reservations-form .form-row {
  display: flex;
  gap: 14px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}
.form-group label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 6px;
  color: #c4c4c4;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 9px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c49b63;
}
.form-group textarea {
  resize: vertical;
}

.form-note {
  font-size: 12px;
  color: #c4c4c4;
  margin-top: 8px;
}

/* Gallery */
.gallery-section {
  background: #181818;
  padding-top: 250px;
}
@media (max-width: 767px) {
  .gallery-section {
    padding-top: 160px !important;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.gallery-item {
  padding-top: 80%;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.gallery-item:hover::after {
  opacity: 1;
}

#gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
#gallery-lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transform: scale(0.92);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

#gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

#gallery-lightbox.is-open img {
  transform: scale(1);
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 9;
}

/* Contact */
.contact-section {
  background: #101010;
  padding-top: 250px;
}
@media (max-width: 767px) {
  .contact-section {
    padding-top: 160px !important;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-text p {
  color: #c4c4c4;
}

.contact-map iframe {
  border: none;
  width: 100%;
  min-height: 260px;
  border-radius: 18px;
  filter: grayscale(0.6) contrast(1.1);
}

/* Footer */
.site-footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0 24px;
  font-size: 13px;
  color: #c4c4c4;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 960px) {
  .about-grid,
  .reservations-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-image.main-img {
    inset: 0;
  }
  .about-image.secondary-img {
    display: none;
  }
  .reservations-form .form-row {
    flex-direction: column;
  }
}
@media (max-width: 820px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .section {
    padding: 64px 0;
  }
  .hero-content {
    padding-top: 140px;
  }
  .hero-scroll-indicator {
    display: none;
  }
}
@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* iframe booking */
iframe {
  border: 0 !important;
  display: block !important;
}

@media only screen and (max-width: 667px) {
  iframe[data-id=nbi-widget] {
    transition: height 0.6s ease-in-out;
  }
}

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