
 /* Reset and Base Styles */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Lato', sans-serif;
    background-color: #0a0a0a;
    color: #f5f5f5;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* Typography */
  h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
  }

  .section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #d4af37;
    position: relative;
  }

  .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Navigation */
  /* Navigation */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-logo{
    text-decoration: none;
  }
  
  .nav-logo h1 {
    font-size: 2rem;
    color: #d4af37;
    cursor: pointer;
  }
  
  .nav-menu {
    display: flex;
    gap: 2rem;
  }
  
  .nav-link {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
  }
  
  .nav-link:hover {
    color: #d4af37;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d4af37;
    transition: width 0.3s ease;
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  .nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .bar {
    width: 25px;
    height: 3px;
    background-color: #f5f5f5;
    margin: 3px 0;
    transition: 0.3s;
  }

  /* Hero Section */
  .hero {
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1559339352-11d035aa65de?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 4rem;
    color: #d4af37;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }

  .hero-content p {
    font-size: 1.2rem;
    color: #cccccc;
    font-style: italic;
    margin-bottom: 2rem;
  }
  .hero-content{
      padding: 0 3%;
  }

  /* Menu Section */
  .menu {
    padding: 8rem 0;
    background-color: #0a0a0a;
  }

  .menu-categories {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
  }

  .menu-category {
    padding: 12px 30px;
    background-color: #1a1a1a;
    color: #cccccc;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    border: none;
    font-size: 1rem;
  }

  .menu-category.active,
  .menu-category:hover {
    background-color: #d4af37;
    color: #0a0a0a;
    transform: translateY(-2px);
  }

  .menu-section {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
  }

  .menu-section.active {
    display: block;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .menu-items {
    max-width: 800px;
    margin: 0 auto;
  }

  .menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid #333333;
    gap: 2rem;
    transition: all 0.3s ease;
  }

  .menu-item:hover {
    background: rgba(212, 175, 55, 0.05);
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 8px;
  }

  .menu-item.featured {
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 1rem;
  }

  .item-info h3 {
    color: #d4af37;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .item-info p {
    color: #aaaaaa;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .item-price {
    color: #f5f5f5;
    font-size: 1.3rem;
    font-weight: 600;
    min-width: 80px;
    text-align: right;
  }

  .menu-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
  }

  /* Footer */
  .footer {
    background-color: #111111;
    padding: 3rem 0;
    border-top: 1px solid #333333;
    text-align: center;
  }

  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-section h3 {
    color: #d4af37;
    margin-bottom: 1rem;
  }

  .footer-section p {
    color: #aaaaaa;
    line-height: 1.6;
  }

  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #666666;
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
    .nav-menu {
      /* display: none; */
    }

    .hero-content h1 {
      font-size: 2.5rem;
    }

    .section-title {
      font-size: 2.5rem;
    }

    .menu-categories {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .menu-category {
      width: 200px;
      text-align: center;
    }

    .menu-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }

    .item-price {
      align-self: flex-end;
    }

    .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }
  }

  @media (max-width: 480px) {
    .hero-content h1 {
      font-size: 2rem;
    }

    .container {
      padding: 0 15px;
    }

    .menu-item {
      padding: 1.5rem 0;
    }
  }

  /* Loading Animation */
  .loading {
    opacity: 0;
    animation: loadIn 0.8s ease-out forwards;
  }

  @keyframes loadIn {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Smooth scrolling offset for fixed navbar */
  section {
    scroll-margin-top: 80px;
  }


  /*  */
/* レビュー */
/*  */
.carousel-container {
  max-width: 1020px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.carousel-track > li {
  flex: 0 0 320px;
  margin: 0 10px;
  box-sizing: border-box;
  background-color: #fff;
  list-style: none;
  padding: 20px;
  max-width: 320px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  margin: 0 5px;
  background-color: #ccc;
  cursor: pointer;
}
.carousel-dots button.active {
  background-color: #000;
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .carousel-track > li {
      flex: 0 0 45%;
  }
}
@media (max-width: 768px) {
  .carousel-track > li {
      flex: 0 0 80%;
  }
}
@media (max-width: 480px) {
  .carousel-track > li {
      flex: 0 0 100%;
  }
}



/* Buy Hover */
/*  */
/* Delete this when you make website */
/*  */
.buy-hover{
  position: fixed;
  bottom: 0;
  background-color: #fff;
  width: 100%;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  padding: 20px 0;
  text-align: center;
  z-index: 999;
  display: flex;
  justify-content: center;
  color: #1a1a1a;
  font-family: 'Open Sans', sans-serif;
  flex-direction: column;
}
.buy-hover > span{
  display: block;
  margin: auto 0;
}
.buy-hover-btns{
  display: flex;
  width: fit-content;
  margin: 20px auto 10px;
}
.buy-hover-btns > a{
  background-color: #e3fc03;
  color: #1a1a1a;
  font-size: .9rem;
  display: block;
  padding: 10px 40px 10px 30px;
  width: fit-content;
  text-align: center;
  border-radius: var(--border-radius);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  align-items: center;
  justify-content: center;
  /* min-width: 160px; */
  position: relative;
  margin: auto 5px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
}
.buy-hover-btns > a::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 4px solid #000000;
  border-right: 4px solid rgb(0, 0, 0);
}
.buy-hover-btns > a:hover{
  background-color: #d4ed02;
  transform: translateY(-2px);
  transition: all .3s ease-in;
}
.buy-hover-btns > a.buy-hover-btns-back{
  background-color: #333;
  color: #fff;
  /* border: #1a1a1a 1px solid; */
}
.buy-hover-btns > a.buy-hover-btns-back::after{
  border-color: #fff;
}
@media (max-width: 600px) {
  .buy-hover{
      flex-direction: column;
  }
  .buy-hover > a{
      margin: 20px auto 0;
  }
  .buy-hover > span{
      font-size: .85rem;
  }
}