@charset "UTF-8";

/* =========================================
   Base & Reset
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Zen Kaku Gothic New', "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #f5f5f5;
  background-color: #111111;
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .serif {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul {
  list-style: none;
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: 100px 0;
}

/* =========================================
   Typography & Utils
========================================= */
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: #D4AF37; /* Gold accent */
}

.section-title span {
  display: block;
  font-size: 0.9rem;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #888;
  margin-top: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Animation Classes */
.js-fadeup {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.js-fadeup.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   Header
========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
}

.header .logo {
  font-size: 1.8rem;
  color: #fff;
}

.header .logo span {
  font-size: 0.8rem;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  margin-left: 8px;
  color: #D4AF37;
}

.header nav ul {
  display: flex;
  gap: 30px;
}

.header nav a {
  font-size: 0.95rem;
  position: relative;
}

.header nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #D4AF37;
  transition: width 0.3s ease;
}

.header nav a:hover::after {
  width: 100%;
}

/* =========================================
   Hero
========================================= */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/hero.png');
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.05);
  animation: heroZoom 20s infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(17,17,17,0.4), rgba(17,17,17,0.8));
  z-index: -1;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.hero-text {
  text-align: center;
}

.hero-text h2 {
  font-size: 4rem;
  line-height: 1.4;
  margin-bottom: 30px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.8);
}

.hero-text p {
  font-size: 1.2rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-indicator span {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
}

.scroll-indicator .line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.scroll-indicator .line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #D4AF37;
  animation: scrollLine 2s infinite cubic-bezier(0.77, 0, 0.175, 1);
}

@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* =========================================
   Concept
========================================= */
.concept {
  background-color: #171717;
}

.concept .text-box {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.concept .desc {
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.concept .desc:last-child {
  margin-bottom: 0;
}

/* =========================================
   Menu
========================================= */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.menu-item {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.menu-item .img-wrapper {
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
}

.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem;
  color: #D4AF37;
  opacity: 0.8;
  position: relative;
}

.placeholder-img::after {
  content: 'Photo Coming Soon';
  position: absolute;
  bottom: 20px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
}

.menu-item .info {
  padding: 30px 25px;
}

.menu-item h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #D4AF37;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 15px;
}

.menu-item p {
  font-size: 0.9rem;
  color: #bbb;
}

/* =========================================
   Access
========================================= */
.access {
  background-color: #111111;
}

.access-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.info-table {
  width: 50%;
}

.info-table dl {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.info-table dt, .info-table dd {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.info-table dt {
  width: 30%;
  font-weight: 500;
  color: #D4AF37;
}

.info-table dd {
  width: 70%;
}

.map-placeholder {
  width: 50%;
  aspect-ratio: 4 / 3;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

/* =========================================
   Footer
========================================= */
.footer {
  padding: 40px 0;
  text-align: center;
  background-color: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer .copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
}

/* =========================================
   Responsive
========================================= */
@media screen and (max-width: 899px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .access-content {
    flex-direction: column;
  }
  
  .info-table, .map-placeholder {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  
  .hero-text h2 {
    font-size: 3rem;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  .header-inner {
    flex-direction: column;
    gap: 15px;
  }
}
