/* 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;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* 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);
  }
  
  /* 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: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
  }
  
  .hero-slide.active {
    opacity: 1;
  }
  
  .hero-slide:nth-child(1) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                      url('https://images.unsplash.com/photo-1559339352-11d035aa65de?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80');
  }
  
  .hero-slide:nth-child(2) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                      url('../images/restaurant-interior.jpg');
  }
  
  .hero-slide:nth-child(3) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                      url('https://images.unsplash.com/photo-1528605248644-14dd04022da1?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
  }
  
  .hero-slide:nth-child(4) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                      url('https://images.unsplash.com/photo-1600891964092-4316c288032e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
  }
  
  .hero-slide:nth-child(5) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                      url('https://images.unsplash.com/photo-1551218808-94e220e084d2?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80');
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  
  .hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
  }
  
  .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }
  
  .indicator:hover {
    background-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
  }
  
  .indicator.active {
    background-color: #d4af37;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
  }
  
  .hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: 5rem;
    color: #d4af37;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f5f5f5;
    font-weight: 300;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #cccccc;
    font-style: italic;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Buttons */
  .btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: block;
    margin: 30px auto 10px;
  }
  
  .btn-primary {
    background-color: #d4af37;
    color: #0a0a0a;
  }
  
  .btn-primary:hover {
    background-color: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
  }
  
  .btn-secondary {
    background-color: transparent;
    color: #f5f5f5;
    border: 2px solid #f5f5f5;
  }
  
  .btn-secondary:hover {
    background-color: #f5f5f5;
    color: #0a0a0a;
    transform: translateY(-2px);
  }
  
  /* About Section */
  .about {
    padding: 8rem 0;
    background-color: #111111;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .about-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #cccccc;
    line-height: 1.8;
  }
  
  .about-features {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .feature h3 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  
  .feature p {
    color: #aaaaaa;
    font-size: 0.95rem;
  }
  
  .about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
  
  /* Menu Section */
  .menu {
    padding: 8rem 0;
    background-color: #0a0a0a;
  }
  
  .menu-groups{
    width: 90%;
    margin: 0 auto;
    position: relative;
    display: block;
  }
  .menu-group-column{
    display: flex;
  }
  .menu-group{
      width: 50%;
      position: relative;
      color: #fff;
  }
  .menu-group > img{
      width: 100%;
      aspect-ratio: 16/9;
      height: auto;
      background: rgba(0, 0, 0, 0.2);
      display: block;
      object-fit: cover;
      transition: transform 0.3s ease;
      position: static;
      z-index: 0;
  }
  .menu-group > img:hover{
      transform: scale(1.1);
      position: relative;
      z-index: 2;
      border-radius: 10px;
  }
  .menu-group > h3{
      position: absolute;
      top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }
  .menu-overlay{
    background: rgba(0, 0, 0, 0.2);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
  }
  .menu-overlay:hover{
      display: none;
  }
  .menu-more-btn{
    width: fit-content;
    padding: 12px 100px;
    margin: 50px auto 10px;
  }
  
  /* Gallery Section */
  .gallery {
    padding: 8rem 0;
    background-color: #111111;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }
  
  .gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover {
    transform: translateY(-5px);
  }
  
  .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  /* Reservations Section */
  .reservations {
    padding: 8rem 0;
    background-color: #0a0a0a;
  }
  
  .reservation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  
  .reservation-info h3 {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .reservation-info p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.8;
  }

  .reservation-info {
    height: fit-content;
    margin: auto;
  }
  
  .info-item {
    margin-bottom: 1rem;
    color: #aaaaaa;
  }
  
  .info-item strong {
    color: #f5f5f5;
  }
  
  .reservation-form {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .reservation-form input,
  .reservation-form select,
  .reservation-form textarea {
    padding: 12px;
    border: 1px solid #333333;
    border-radius: 5px;
    background-color: #2a2a2a;
    color: #f5f5f5;
    font-size: 1rem;
    width: 100%;
  }
  
  .reservation-form input:focus,
  .reservation-form select:focus,
  .reservation-form textarea:focus {
    outline: none;
    border-color: #d4af37;
  }
  
  .reservation-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    resize: none;
  }
  
  /* Contact Section */
  .contact {
    padding: 8rem 0;
    background-color: #111111;
  }
  
  .contact-grid {
    display: flex;
    /* grid-template-columns: 1fr 1fr; */
    /* gap: 4rem; */
    justify-content: space-around;
  }
  .contact-info{
      width: 45%;
  }
  .contact-map{
    width: 45%;
    height: fit-content;
    margin: auto 0;
  }
  
  .contact-item {
    margin-bottom: 2rem;
  }
  
  .contact-item h3 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  
  .contact-item p {
    color: #cccccc;
    line-height: 1.6;
  }
  
  .map-placeholder {
    background-color: #1a1a1a;
    height: 600px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    font-style: italic;
    width: 100%;
  }
  .map-placeholder > iframe{
      display: block;
      width: 100%;
      height: 100%;
  }
  
  /* Footer */
  .footer {
    background-color: #0a0a0a;
    padding: 4rem 0 2rem;
    border-top: 1px solid #333333;
  }
  
  .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 h4 {
    color: #f5f5f5;
    margin-bottom: 1rem;
  }
  
  .footer-section p {
    color: #aaaaaa;
    line-height: 1.6;
  }
  
  .footer-section a {
    color: #aaaaaa;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
  }
  
  .footer-section a:hover {
    color: #d4af37;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-links a {
    display: inline-block;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #666666;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .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;
    }
  
    .hero-title {
      font-size: 3rem;
    }
  
    .section-title {
      font-size: 2.5rem;
    }
  
    .about-grid,
    .reservation-content,
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .menu-categories {
      flex-direction: column;
      align-items: center;
    }
  
    .form-row {
      grid-template-columns: 1fr;
    }
  
    .hero-buttons {
      flex-direction: column;
      align-items: center;
    }
  
    .gallery-grid {
      grid-template-columns: 1fr;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .social-links {
      justify-content: center;
    }

    .contact-grid{
        flex-direction: column;
    }
    .contact-info{
        width: 100%;
    }
    .contact-map{
        width: 100%;
    }
    .map-placeholder{
        height: 300px;
    }
    .menu-groups{
        width: 100%;
    }
    .menu-group > h3{
        font-size: 2rem;
    }

  }
  
  @media (max-width: 480px) {
    .hero-title {
      font-size: 2.5rem;
    }
  
    .container {
      padding: 0 15px;
    }
  
    .menu-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
  
    .item-price {
      align-self: flex-end;
    }

    .menu-groups{
        width: 90%;
    }
    .menu-group-column{
        flex-direction: column;
    }
    .menu-group{
        width: 100%;
        margin: 15px 0;
    }
    .menu-group > img{
        width: 100%;
    }
    .menu-group > h3{
        font-size: 2.5rem;
    }
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .hero-content > * {
    animation: fadeInUp 1s ease-out;
  }
  
  .hero-title {
    animation-delay: 0.2s;
  }
  
  .hero-subtitle {
    animation-delay: 0.4s;
  }
  
  .hero-description {
    animation-delay: 0.6s;
  }
  
  .hero-buttons {
    animation-delay: 0.8s;
  }
  
  /* 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;
  }
}