/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #171717;
  color: #e5e5e5;
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #171717; }
::-webkit-scrollbar-thumb { background: #f59e0b; border-radius: 3px; }

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(23, 23, 23, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px) { .nav-container { padding: 0 24px; } }
@media (min-width: 1024px) { .nav-container { padding: 0 32px; } }

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.nav-brand {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  color: #f59e0b;
  cursor: pointer;
  user-select: none;
}
.nav-brand:hover { color: #fbbf24; }
.nav-links {
  display: none;
  gap: 32px;
}
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links button {
  background: none;
  border: none;
  color: #e5e5e5;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: inherit;
  transition: color 0.3s;
  padding: 4px 0;
}
.nav-links button:hover { color: #f59e0b; }
.nav-hamburger {
  display: flex;
  background: none;
  border: none;
  color: #e5e5e5;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}
.nav-hamburger:hover { color: #f59e0b; }
@media (min-width: 768px) { .nav-hamburger { display: none; } }
.nav-mobile {
  display: none;
  background: rgba(23, 23, 23, 0.97);
  backdrop-filter: blur(8px);
}
.nav-mobile.open { display: block; }
.nav-mobile-inner {
  padding: 8px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #e5e5e5;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.3s, background 0.3s;
  font-size: 1rem;
  font-family: inherit;
}
.nav-mobile button:hover { color: #f59e0b; background: #262626; }

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 16px;
}
.hero-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease 0.3s forwards;
}
@media (min-width: 768px) { .hero-title { font-size: 4.5rem; } }
.hero-divider {
  width: 96px;
  height: 2px;
  background: #f59e0b;
  margin: 0 auto 24px;
  transform: scaleX(0);
  animation: expandLine 0.8s ease 0.6s forwards;
}
.hero-sub {
  font-size: 1.25rem;
  color: #e5e5e5;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.9s forwards;
}
@media (min-width: 768px) { .hero-sub { font-size: 1.5rem; } }
.hero-btn {
  background: #f59e0b;
  color: #171717;
  padding: 12px 32px;
  border-radius: 9999px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.3s, transform 0.15s;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.2s forwards;
}
.hero-btn:hover { background: #fbbf24; transform: scale(1.05); }
.hero-btn:active { transform: scale(0.95); }
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.scroll-box {
  width: 24px;
  height: 40px;
  border: 2px solid #f59e0b;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  animation: scrollBounce 1.5s ease-in-out infinite;
}
.scroll-dot {
  width: 6px;
  height: 6px;
  background: #f59e0b;
  border-radius: 50%;
  margin-top: 8px;
  animation: dotBounce 1.5s ease-in-out infinite;
}

/* === SHARED SECTION STYLES === */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px) { .section-container { padding: 0 24px; } }
@media (min-width: 1024px) { .section-container { padding: 0 32px; } }

.section-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.5rem;
  color: #f59e0b;
  margin-bottom: 24px;
}
@media (min-width: 768px) { .section-title { font-size: 3rem; } }
.section-divider {
  width: 80px;
  height: 2px;
  background: #f59e0b;
  margin-bottom: 24px;
}
.section-divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* === ABOUT === */
.about { padding: 80px 0; background: #262626; }
.about-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-text p {
  color: #d4d4d4;
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}
.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.4s;
}
.about-img-wrap:hover img { transform: scale(1.05); }
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  pointer-events: none;
}

/* === MENU SECTION === */
.menu-section { padding: 80px 0; background: #171717; }
.menu-header { text-align: center; margin-bottom: 64px; }
.menu-categories { display: flex; flex-direction: column; gap: 64px; }
.menu-category-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.875rem;
  color: #fbbf24;
  margin-bottom: 32px;
  text-align: center;
}
.menu-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) { .menu-grid { grid-template-columns: 1fr 1fr; } }
.menu-card {
  background: #262626;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #404040;
  transition: border-color 0.3s, transform 0.2s, box-shadow 0.2s;
}
.menu-card:hover {
  border-color: #f59e0b;
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.1);
}
.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 12px;
}
.menu-card-name { font-size: 1.25rem; color: #fef3c7; }
.menu-card-price { color: #f59e0b; font-weight: 600; white-space: nowrap; }
.menu-card-desc { color: #a3a3a3; font-size: 0.875rem; line-height: 1.6; }

/* === GALLERY === */
.gallery { padding: 80px 0; background: #262626; }
.gallery-header { text-align: center; margin-bottom: 64px; }
.gallery-sub { color: #d4d4d4; max-width: 672px; margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  height: 320px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* === CONTACT === */
.contact { padding: 80px 0; background: #171717; }
.contact-grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  color: #fbbf24;
  margin-bottom: 24px;
}
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: #d4d4d4;
  transition: transform 0.2s;
}
.contact-item:hover { transform: translateX(8px); }
.contact-icon { color: #f59e0b; flex-shrink: 0; margin-top: 2px; }
.contact-block { margin-bottom: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #262626;
  border: 1px solid #404040;
  border-radius: 8px;
  padding: 12px 16px;
  color: #e5e5e5;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #737373; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: #f59e0b; }
.contact-form textarea { resize: none; }
.contact-submit {
  width: 100%;
  background: #f59e0b;
  color: #171717;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.3s, transform 0.15s;
}
.contact-submit:hover { background: #fbbf24; transform: scale(1.02); }
.contact-submit:active { transform: scale(0.98); }
.contact-success {
  display: none;
  text-align: center;
  color: #22c55e;
  font-weight: 500;
}
.contact-success.visible { display: block; }

/* === FOOTER === */
.footer { background: #0a0a0a; padding: 48px 0; }
.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-brand {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  color: #f59e0b;
  margin-bottom: 16px;
}
.footer-brand-text { color: #a3a3a3; line-height: 1.6; }
.footer-col-title {
  font-size: 1.125rem;
  color: #fbbf24;
  margin-bottom: 16px;
}
.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links-list button {
  background: none;
  border: none;
  color: #a3a3a3;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: inherit;
  text-align: left;
  padding: 2px 0;
  transition: color 0.3s;
}
.footer-links-list button:hover { color: #f59e0b; }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  color: #a3a3a3;
  transition: color 0.3s, transform 0.2s;
  display: inline-flex;
  text-decoration: none;
}
.footer-socials a:hover { color: #f59e0b; transform: scale(1.2) rotate(5deg); }
.footer-bottom {
  border-top: 1px solid #262626;
  padding-top: 32px;
  text-align: center;
  color: #737373;
  font-size: 0.9rem;
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.from-left { transform: translateX(-50px); }
.reveal.from-right { transform: translateX(50px); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.in-view {
  opacity: 1;
  transform: translate(0, 0);
}

/* === KEYFRAMES === */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes expandLine {
  to { transform: scaleX(1); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
@keyframes dotBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}
