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

body {
  font-family: 'Inter', sans-serif;
  background: #efe6d8;
  color: #1f3d2b;
  line-height: 1.6;
  position: relative;
}

/* Subtle wood texture background - Optimized */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 4px,
      rgba(31, 61, 43, 0.012) 4px,
      rgba(31, 61, 43, 0.012) 8px
    ),
    linear-gradient(
      135deg,
      rgba(239, 230, 216, 0.95) 0%,
      rgba(245, 239, 229, 0.98) 50%,
      rgba(239, 230, 216, 0.95) 100%
    );
  background-size: 100% 100%, 100% 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  will-change: auto;
}

/* Ensure content is above texture */
header, section, footer {
  position: relative;
  z-index: 1;
}

.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 40px 50px;
  background: rgba(31, 61, 43, 0.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  will-change: transform;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(202, 164, 92, 0.5),
    transparent
  );
  border-radius: 24px 24px 0 0;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(135deg, rgba(202, 164, 92, 0.95), rgba(202, 164, 92, 0.85));
  color: #1f3d2b;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 4px 15px rgba(202, 164, 92, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 6px 20px rgba(202, 164, 92, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.btn:hover::before {
  left: 100%;
}

section {
  padding: 80px 10%;
}

/* Experience Section - Enhanced with hero connection */
.experience {
  position: relative;
  padding-top: 0;
  margin-top: -80px;
  z-index: 1;
}

.experience-bridge {
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(31, 61, 43, 0.1) 50%,
    transparent 100%
  );
  position: relative;
  overflow: hidden;
}

.experience-bridge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(202, 164, 92, 0.4),
    transparent
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.experience-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 10%;
  position: relative;
}

.experience .text {
  position: relative;
  z-index: 2;
  padding: 40px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 
    0 8px 32px rgba(31, 61, 43, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  will-change: transform;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #caa45c;
  margin-bottom: 15px;
  font-weight: 500;
  opacity: 0.8;
}

.experience h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: #1f3d2b;
  margin-bottom: 25px;
  line-height: 1.2;
  position: relative;
}

.experience h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #caa45c, transparent);
}

.experience .text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2a4a35;
  margin-top: 20px;
}

.experience .image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(31, 61, 43, 0.2);
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}

.experience .image-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(31, 61, 43, 0.3);
}

.experience .image-glow {
  position: absolute;
  inset: -2px;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(202, 164, 92, 0.3) 0%,
    transparent 60%
  );
  border-radius: 20px;
  z-index: 1;
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

.experience img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
  will-change: transform;
}

.experience .image-wrapper:hover img {
  transform: scale(1.05);
}

.experience .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(31, 61, 43, 0.05) 100%
  );
  border-radius: 20px;
  z-index: 3;
  pointer-events: none;
}

.kitchen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.kitchen .text {
  padding: 40px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 
    0 8px 32px rgba(31, 61, 43, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  will-change: transform;
}

.kitchen img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* Menu Section - Redesigned with alternating layout */
.menu {
  padding: 100px 10%;
  background: linear-gradient(
    to bottom,
    #efe6d8 0%,
    #f5efe5 50%,
    #efe6d8 100%
  );
  position: relative;
}

.menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(202, 164, 92, 0.3),
    transparent
  );
}

.menu-header {
  text-align: center;
  margin-bottom: 80px;
  padding: 30px 40px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(31, 61, 43, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  display: inline-block;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.menu-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(202, 164, 92, 0.4),
    transparent
  );
  border-radius: 20px 20px 0 0;
}

.menu-header .section-label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #caa45c;
  margin-bottom: 15px;
  font-weight: 500;
  opacity: 0.8;
}

.menu h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: #1f3d2b;
  margin: 0;
  position: relative;
  display: inline-block;
}

.menu h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, #caa45c, transparent);
}

.menu-category {
  margin-bottom: 100px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.menu-category:last-child {
  margin-bottom: 0;
}

.category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: #1f3d2b;
  margin-bottom: 50px;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(202, 164, 92, 0.5), transparent);
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(31, 61, 43, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.menu-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(202, 164, 92, 0.2), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 15px 45px rgba(31, 61, 43, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(202, 164, 92, 0.3);
}

.menu-item:hover::before {
  opacity: 1;
}

.menu-item-left {
  flex-direction: row;
}

.menu-item-right {
  flex-direction: row-reverse;
}

.menu-item-image {
  flex: 0 0 280px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(31, 61, 43, 0.15);
}

.menu-item-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  will-change: transform;
}

.menu-item:hover .menu-item-image img {
  transform: scale(1.08);
}

.menu-image-glow {
  position: absolute;
  inset: -2px;
  background: radial-gradient(
    circle at center,
    rgba(202, 164, 92, 0.2) 0%,
    transparent 70%
  );
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.menu-item:hover .menu-image-glow {
  opacity: 1;
}

.menu-item-content {
  flex: 1;
  padding: 10px 0;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  gap: 20px;
}

.menu-item-header h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: #1f3d2b;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.menu-price {
  font-size: 1.5rem;
  color: #caa45c;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
  white-space: nowrap;
}

.menu-item-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #2a4a35;
  margin: 0;
  opacity: 0.85;
}

/* Info Section - Address and Hours */
.info {
  padding: 80px 10%;
  background: linear-gradient(
    to bottom,
    #efe6d8 0%,
    #f5efe5 100%
  );
}

.info-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 60px;
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 
    0 8px 32px rgba(31, 61, 43, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.info-item {
  flex: 1;
  text-align: center;
}

.info-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #1f3d2b;
  margin-bottom: 20px;
  font-weight: 600;
}

.info-item p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2a4a35;
  margin: 0;
}

.info-note {
  display: block;
  margin-top: 8px;
  font-size: 0.95rem;
  color: #caa45c;
  font-style: italic;
}

.info-divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(202, 164, 92, 0.3),
    transparent
  );
}

footer {
  background: #1f3d2b;
  color: #efe6d8;
  text-align: center;
  padding: 40px 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

@media (max-width: 900px) {
  .experience {
    margin-top: -40px;
  }

  .experience-bridge {
    height: 60px;
  }

  .experience-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 5%;
  }

  .experience h2 {
    font-size: 2.5rem;
  }

  .kitchen {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .menu {
    padding: 60px 5%;
  }

  .menu h2 {
    font-size: 2.5rem;
  }

  .category-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .menu-item {
    flex-direction: column !important;
    gap: 25px;
    padding: 25px;
    margin-bottom: 40px;
  }

  .menu-item-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .menu-item-image img {
    height: 220px;
  }

  .menu-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .menu-item-header h4 {
    font-size: 1.5rem;
  }

  .menu-price {
    font-size: 1.3rem;
  }

  .info {
    padding: 60px 5%;
  }

  .info-container {
    flex-direction: column;
    gap: 40px;
    padding: 40px 30px;
  }

  .info-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent,
      rgba(202, 164, 92, 0.3),
      transparent
    );
  }

  .info-item h3 {
    font-size: 1.8rem;
  }
}
