/* ===========================
   CSS Variables & Reset
   =========================== */

:root {
  /* CUE Color Palette */
  --color-background: #f7e6cd;
  --color-text: #453a37;
  --color-primary: #3c290e;
  --color-accent: #8b6914;
  --color-light: #faf6f0;
  --color-secondary: #6d5a4f;
  --color-primary-light: #5a4027;
  --color-primary-dark: #2d1c0a;
  --color-accent-light: #a87c1a;
  --color-accent-dark: #6b520f;
  --color-warm: #f5f2ea;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ===========================
   Typography
   =========================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

/* ===========================
   Layout Components
   =========================== */

.container-custom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container-custom {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container-custom {
    padding: 0 2rem;
  }
}

.container-narrow {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container-narrow {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container-narrow {
    padding: 0 2rem;
  }
}

.section {
  padding: 4rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.bg-light {
  background-color: var(--color-light);
}

/* ===========================
   Header
   =========================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: rgba(247, 230, 205, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 25px -5px rgba(139, 69, 19, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.header-logo a {
  display: block;
}

.logo-image {
  height: 2.5rem;
  width: auto;
}

@media (min-width: 768px) {
  .logo-image {
    height: 3rem;
  }
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  color: var(--color-text);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-accent);
}

.header-sns {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1.5rem;
}

.sns-link {
  color: var(--color-text);
  transition: color 0.3s ease;
}

.sns-link:hover {
  color: var(--color-accent);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: block;
  color: var(--color-text);
  transition: color 0.3s ease;
  padding: 0;
  margin: 0;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 24px;
}

.menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active .menu-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .menu-icon span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .menu-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--color-light);
  background-color: var(--color-background);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none !important;
  }
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav-link {
  color: var(--color-text);
  font-weight: 500;
  text-align: left;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--color-primary);
}

.mobile-sns {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
}

/* ===========================
   Buttons
   =========================== */

.btn-primary,
.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: scale(1.05);
  box-shadow: 0 10px 25px -5px rgba(60, 41, 14, 0.3);
}

.btn-outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: white;
}

/* ===========================
   Hero Section
   =========================== */

.hero-section {
  min-height: 100vh;
  background-color: var(--color-background);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  min-height: 100vh;
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 2fr;
  }
}

.hero-logo {
  margin-bottom: 2rem;
}

.hero-logo-image {
  height: 4rem;
  width: auto;
}

@media (min-width: 768px) {
  .hero-logo-image {
    height: 5rem;
  }
}

@media (min-width: 1024px) {
  .hero-logo-image {
    height: 6rem;
  }
}

.hero-text {
  margin-bottom: 2rem;
  max-width: 28rem;
}

.hero-main-text {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.hero-sub-text {
  font-size: 1rem;
  opacity: 0.8;
}

.hero-cta {
  padding-top: 1rem;
}

.hero-image-wrapper {
  aspect-ratio: 3 / 2;
  background-color: var(--color-light);
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.hero-image-wrapper:hover {
  transform: scale(1.02);
}

.hero-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 105, 20, 0.1), rgba(60, 41, 14, 0.1));
}

.hero-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-placeholder span {
  color: rgba(69, 58, 55, 0.5);
  font-weight: 300;
}

.hero-image-line-top,
.hero-image-line-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(139, 105, 20, 0.3);
}

.hero-image-line-top {
  top: 0;
}

.hero-image-line-bottom {
  bottom: 0;
  right: 0;
  width: 50%;
  left: auto;
}

.hero-bg-decoration-1,
.hero-bg-decoration-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.hero-bg-decoration-1 {
  top: 25%;
  right: 25%;
  width: 16rem;
  height: 16rem;
  background-color: rgba(139, 105, 20, 0.05);
}

.hero-bg-decoration-2 {
  bottom: 25%;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background-color: rgba(60, 41, 14, 0.05);
}

/* ===========================
   Section Headers
   =========================== */

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3.75rem;
  }
}

.decorative-line {
  width: 6rem;
  height: 2px;
  background-color: var(--color-accent);
  margin: 0 auto 2rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-accent);
}

/* ===========================
   About Section
   =========================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .about-heading {
    font-size: 2.25rem;
  }
}

.about-accent-line {
  width: 4rem;
  height: 2px;
  background-color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  line-height: 1.75;
}

.about-main {
  font-size: 1.125rem;
}

.about-image-wrapper {
  aspect-ratio: 3 / 4;
  background-color: var(--color-background);
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}

.about-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 105, 20, 0.1), rgba(60, 41, 14, 0.1));
}

.about-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-placeholder span {
  color: rgba(69, 58, 55, 0.5);
  font-weight: 300;
}

/* Feature Cards */
.feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .feature-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  text-align: center;
}

.feature-image-wrapper {
  aspect-ratio: 4 / 3;
  background-color: var(--color-background);
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-image-wrapper {
  transform: scale(1.05);
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  background-color: rgba(139, 105, 20, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.feature-card:hover .feature-icon {
  background-color: rgba(139, 105, 20, 0.2);
}

.feature-icon-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-accent);
  border-radius: 50%;
}

.feature-icon-line {
  width: 0.75rem;
  height: 2px;
  background-color: var(--color-accent);
}

.feature-icon-bar {
  width: 0.25rem;
  height: 1.5rem;
  background-color: var(--color-accent);
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.feature-text {
  font-size: 0.875rem;
  line-height: 1.75;
}

.section-bg-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background-color: rgba(139, 105, 20, 0.05);
  border-radius: 50%;
  filter: blur(80px);
}

/* ===========================
   Gallery Section
   =========================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-item-wrapper {
  width: 100%;
  height: 100%;
  background-color: var(--color-light);
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-wrapper {
  transform: translateY(-0.5rem);
}

.gallery-large .gallery-item-wrapper {
  aspect-ratio: 4 / 5;
}

.gallery-wide .gallery-item-wrapper {
  aspect-ratio: 2 / 1;
}

.gallery-item:not(.gallery-large):not(.gallery-wide) .gallery-item-wrapper {
  aspect-ratio: 1 / 1;
}

.gallery-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 105, 20, 0.1), rgba(60, 41, 14, 0.1));
}

.gallery-gradient-horizontal {
  background: linear-gradient(90deg, rgba(139, 105, 20, 0.1), rgba(60, 41, 14, 0.1));
}

.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-placeholder span {
  color: rgba(69, 58, 55, 0.5);
  font-weight: 300;
}

.gallery-placeholder span.small {
  font-size: 0.75rem;
}

.gallery-line-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(139, 105, 20, 0.3);
}

.section-bg-decoration-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background-color: rgba(139, 105, 20, 0.05);
  border-radius: 50%;
  filter: blur(80px);
}

/* ===========================
   Access Section
   =========================== */

.access-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .access-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.access-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .access-heading {
    font-size: 1.875rem;
  }
}

.access-accent-line {
  width: 4rem;
  height: 2px;
  background-color: var(--color-accent);
  margin-bottom: 2rem;
}

.access-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.access-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.access-icon-dot {
  width: 0.25rem;
  height: 0.25rem;
  background-color: var(--color-accent);
  border-radius: 50%;
  margin-right: 0.75rem;
}

.access-icon-bar {
  width: 2px;
  height: 1rem;
  background-color: var(--color-accent);
  margin-right: 0.75rem;
}

.access-item-text {
  line-height: 1.75;
  margin-left: 1.5rem;
}

.font-medium {
  font-weight: 500;
}

.hours-note {
  font-size: 0.875rem;
  opacity: 0.8;
}

.map-wrapper {
  aspect-ratio: 4 / 3;
  background-color: var(--color-background);
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(139, 105, 20, 0.2);
  position: relative;
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.map-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 105, 20, 0.05), rgba(60, 41, 14, 0.05));
  pointer-events: none;
  z-index: 1;
}

.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.map-title {
  display: block;
  font-size: 1.125rem;
  color: rgba(69, 58, 55, 0.5);
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.map-subtitle {
  display: block;
  font-size: 0.875rem;
  color: rgba(69, 58, 55, 0.3);
  font-weight: 300;
}

.map-line-top,
.map-line-bottom,
.map-line-right {
  position: absolute;
  background-color: rgba(139, 105, 20, 0.3);
  pointer-events: none;
  z-index: 2;
}

.map-line-top {
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

.map-line-bottom {
  bottom: 0;
  right: 0;
  width: 66.666%;
  height: 2px;
}

.map-line-right {
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
}

.section-bg-decoration-right {
  position: absolute;
  top: 50%;
  right: 0;
  width: 20rem;
  height: 20rem;
  background-color: rgba(139, 105, 20, 0.05);
  border-radius: 50%;
  filter: blur(80px);
  transform: translateY(-50%);
}

/* ===========================
   Contact Section
   =========================== */

.contact-intro {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .contact-methods {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-card {
  background-color: var(--color-light);
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(139, 105, 20, 0.2);
  transition: border-color 0.3s ease;
  text-align: center;
}

.contact-card:hover {
  border-color: rgba(139, 105, 20, 0.4);
}

.contact-icon-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-accent);
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.contact-icon-line {
  width: 1rem;
  height: 2px;
  background-color: var(--color-accent);
  margin: 0 auto 1rem;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.contact-text {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.contact-note {
  font-size: 0.875rem;
  color: rgba(69, 58, 55, 0.7);
  padding-top: 2rem;
  text-align: center;
}

.contact-bg-decoration-1,
.contact-bg-decoration-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.contact-bg-decoration-1 {
  bottom: 0;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background-color: rgba(60, 41, 14, 0.05);
}

.contact-bg-decoration-2 {
  top: 0;
  right: 25%;
  width: 16rem;
  height: 16rem;
  background-color: rgba(139, 105, 20, 0.05);
}

/* ===========================
   Footer
   =========================== */

.footer {
  background-color: var(--color-secondary);
  color: white;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-logo-image {
  height: 3rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.footer-sns {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-sns-link {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.footer-sns-link:hover {
  background-color: var(--color-accent);
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.footer-icon {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-detail a {
  transition: color 0.3s ease;
}

.footer-detail a:hover {
  color: var(--color-accent);
}

.footer-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-related-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-related-card {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
}

.footer-related-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.footer-related-title {
  font-weight: 600;
  color: #f5c563;
  margin-bottom: 0.5rem;
}

.footer-related-link {
  display: inline-block;
  font-size: 0.875rem;
  background-color: #f5c563;
  color: var(--color-primary);
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  font-weight: 600;
}

.footer-related-link:hover {
  background-color: #ffd97d;
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-operated {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* ===========================
   Menu Page
   =========================== */

.menu-section {
  min-height: 100vh;
  background-color: var(--color-background);
  padding: 8rem 0 4rem;
}

.menu-images {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.menu-image-item {
  position: relative;
  background-color: var(--color-light);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(139, 69, 19, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-image-item:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 20px 35px -5px rgba(139, 69, 19, 0.15);
}

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

.menu-back {
  text-align: center;
  margin-top: 3rem;
}

/* ===========================
   Animations
   =========================== */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes expandWidth {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
