/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1a1a1a;
  background: #faf9f6;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(47, 79, 62, 0.08);
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 20px;
  font-weight: 600;
  color: #2F4F3E;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 15px;
  color: #1a1a1a;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.25s;
}

.nav-links a:hover {
  opacity: 1;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(47, 79, 62, 0.78), rgba(47, 79, 62, 0.88)),
              url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1600') center/cover no-repeat;
  color: #fff;
  padding: 120px 24px 80px;
}

.hero-content {
  animation: heroFade 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-label {
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(48px, 10vw, 80px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: clamp(18px, 3vw, 22px);
  opacity: 0.9;
  margin-bottom: 40px;
  font-weight: 400;
}

/* Button */
.btn {
  display: inline-block;
  background: #2F4F3E;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.btn:hover {
  background: #3d6b52;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(47, 79, 62, 0.28);
}

.btn:active {
  transform: scale(0.97);
}

/* About */
.about {
  padding: 120px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 600;
  color: #2F4F3E;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about-text p {
  font-size: 17px;
  color: #444;
  margin-bottom: 16px;
}

.about-image .image-placeholder {
  aspect-ratio: 4/5;
  background: #e8e6e1;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 15px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image:hover .image-placeholder {
  transform: scale(1.03);
}

/* Menu */
.menu {
  padding: 100px 0 120px;
  background: #f0efe9;
}

.menu h2 {
  font-size: 36px;
  font-weight: 600;
  color: #2F4F3E;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.section-sub {
  text-align: center;
  color: #666;
  font-size: 17px;
  margin-bottom: 56px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.menu-category h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2F4F3E;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(47, 79, 62, 0.2);
}

.menu-item {
  margin-bottom: 24px;
  padding: 14px;
  border-radius: 12px;
  transition: background 0.3s, transform 0.3s;
}

.menu-item:hover {
  background: rgba(47, 79, 62, 0.05);
  transform: translateX(6px);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 4px;
}

.menu-item p {
  font-size: 14px;
  color: #666;
}

/* Reservation */
.reservation {
  padding: 120px 0;
  text-align: center;
}

.reservation h2 {
  font-size: 36px;
  font-weight: 600;
  color: #2F4F3E;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.reservation-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-row:last-of-type {
  grid-template-columns: 1fr 1fr 1fr;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d4d2cc;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: #1a1a1a;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  outline: none;
  border-color: #2F4F3E;
  box-shadow: 0 0 0 4px rgba(47, 79, 62, 0.12);
}

.reservation-form textarea {
  resize: vertical;
  min-height: 90px;
}

/* Footer */
.footer {
  padding: 40px 0;
  text-align: center;
  background: #2F4F3E;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.footer p {
  margin-bottom: 6px;
}

/* ===== Fancy Scroll Animations ===== */
@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.98);
  filter: blur(6px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row,
  .form-row:last-of-type {
    grid-template-columns: 1fr;
  }

  .nav-links {
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 42px;
  }

  .nav-links {
    display: none;
  }
}