/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #111827;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

main { flex: 1; padding-top: 4rem; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

@media (min-width: 640px) { .header-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .header-inner { padding: 0 2rem; } }

.logo {
  font-size: 1.5rem;
  font-family: Georgia, 'Times New Roman', serif;
  color: #d97706;
  font-weight: bold;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) { .nav-desktop { display: flex; } }

.nav-desktop a {
  color: #374151;
  transition: color 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a.active { color: #d97706; }

.btn-reserve {
  background: #d97706;
  color: white !important;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  transition: background 0.2s;
}

.btn-reserve:hover { background: #b45309 !important; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.25rem;
}

@media (min-width: 768px) { .hamburger { display: none; } }

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #374151;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem;
  border-top: 1px solid #e5e7eb;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  padding: 0.5rem 0;
  color: #374151;
  transition: color 0.2s;
}

.nav-mobile a:hover { color: #d97706; }

.nav-mobile .btn-reserve {
  margin-top: 1rem;
  text-align: center;
  padding: 0.5rem 1.5rem;
  display: block;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: 2rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-btns { flex-direction: row; justify-content: center; }
}

.btn-primary {
  background: #d97706;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: #b45309; }

.btn-secondary {
  background: white;
  color: #111827;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-secondary:hover { background: #f3f4f6; }

/* ===== FEATURES ===== */
.features-section { padding: 4rem 1rem; }

.features-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

.feature-card { text-align: center; }

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: #fef3c7;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.feature-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.feature-card p { color: #4b5563; }

/* ===== SIGNATURE DISHES ===== */
.dishes-section {
  padding: 4rem 1rem;
  background: #f9fafb;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: 1rem;
}

.section-header p { color: #4b5563; max-width: 40rem; margin: 0 auto; }

.dishes-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) { .dishes-grid { grid-template-columns: repeat(3, 1fr); } }

.dish-card {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.2s;
}

.dish-card:hover { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12); }

.dish-card img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

.dish-info { padding: 1.5rem; }
.dish-info h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.dish-info p { color: #4b5563; margin-bottom: 1rem; }
.dish-info .price { color: #d97706; font-weight: 600; }

.dishes-cta { text-align: center; margin-top: 2rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 4rem 1rem; }

.testimonials-section h2 {
  font-size: 2.5rem;
  font-family: Georgia, 'Times New Roman', serif;
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-grid {
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }

.testimonial-card {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-card blockquote { color: #374151; margin-bottom: 1rem; font-style: italic; }
.testimonial-card .author { color: #111827; font-weight: 500; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 4rem 1rem;
  background: #d97706;
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: 1rem;
}

.cta-section p { font-size: 1.25rem; margin-bottom: 2rem; }

.btn-cta {
  background: white;
  color: #d97706;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  display: inline-block;
  transition: background 0.2s;
  font-weight: 600;
}

.btn-cta:hover { background: #f3f4f6; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 4rem 1rem;
  background: #f9fafb;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: 1.5rem;
}

.page-hero p { font-size: 1.25rem; color: #4b5563; }

/* ===== MENU PAGE ===== */
.menu-section { padding: 4rem 1rem; }

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  background: #f3f4f6;
  color: #374151;
  transition: all 0.2s;
  font-size: 1rem;
  font-family: inherit;
}

.tab-btn:hover { background: #e5e7eb; }
.tab-btn.active { background: #d97706; color: white; }

.menu-category { display: none; }
.menu-category.active { display: block; }

.menu-category h2 {
  font-size: 2rem;
  font-family: Georgia, 'Times New Roman', serif;
  text-align: center;
  margin-bottom: 2rem;
}

.menu-items {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.menu-item {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.2s;
}

.menu-item:hover { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); }

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.menu-item h3 { font-size: 1.25rem; color: #111827; }
.menu-item .price { color: #d97706; font-weight: 600; margin-left: 1rem; flex-shrink: 0; }
.menu-item p { color: #4b5563; }

.menu-note { margin-top: 3rem; text-align: center; color: #4b5563; font-size: 0.875rem; }

/* ===== ABOUT PAGE ===== */
.story-section { padding: 4rem 1rem; }

.story-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) { .story-grid { grid-template-columns: repeat(2, 1fr); } }

.story-text h2 {
  font-size: 2rem;
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: 1.5rem;
}

.story-text p { color: #374151; margin-bottom: 1rem; line-height: 1.75; }

.story-img {
  border-radius: 0.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.values-section { padding: 4rem 1rem; background: #f9fafb; }

.values-section h2 {
  font-size: 2.5rem;
  font-family: Georgia, 'Times New Roman', serif;
  text-align: center;
  margin-bottom: 3rem;
}

.values-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.value-card { text-align: center; }

.value-icon {
  width: 5rem;
  height: 5rem;
  background: #fef3c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2.25rem;
}

.value-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.value-card p { color: #4b5563; }

.team-section { padding: 4rem 1rem; }

.team-section > .container > .section-header p {
  color: #4b5563;
  margin-top: -2rem;
  margin-bottom: 3rem;
  max-width: 40rem;
}

.team-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

.team-card { text-align: center; }

.team-photo {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  background: #e5e7eb;
}

.team-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-card h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.team-card .role { color: #d97706; margin-bottom: 0.5rem; }
.team-card p { color: #4b5563; font-size: 0.875rem; }

.awards-section {
  padding: 4rem 1rem;
  background: #d97706;
  color: white;
  text-align: center;
}

.awards-section h2 {
  font-size: 2.5rem;
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: 2rem;
}

.awards-grid {
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) { .awards-grid { grid-template-columns: repeat(2, 1fr); } }

.award-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.award-card .emoji { font-size: 1.75rem; margin-bottom: 0.5rem; }
.award-card .award-name { font-size: 1.125rem; margin-bottom: 0.25rem; font-weight: 600; }
.award-card .award-year { font-size: 0.875rem; opacity: 0.9; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 4rem 1rem; }

.contact-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }

.contact-info h2 {
  font-size: 2rem;
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: 1.5rem;
}

.contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }

.contact-item { display: flex; align-items: flex-start; gap: 1rem; }

.contact-item-icon {
  width: 3rem;
  height: 3rem;
  background: #fef3c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.contact-item-icon .icon-svg {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
  display: block;
}

.contact-item-text h3 { font-size: 1.125rem; margin-bottom: 0.25rem; }
.contact-item-text p { color: #4b5563; }

.map-placeholder {
  background: #e5e7eb;
  height: 16rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
}

.reservation-form h2 {
  font-size: 2rem;
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: box-shadow 0.2s, border-color 0.2s;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #d97706;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-submit {
  width: 100%;
  padding: 0.75rem;
  background: #d97706;
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}

.form-submit:hover { background: #b45309; }

.form-note { font-size: 0.875rem; color: #4b5563; margin-top: 0.75rem; }

.private-events {
  padding: 4rem 1rem;
  background: #f9fafb;
  text-align: center;
}

.private-events h2 {
  font-size: 2rem;
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: 1.5rem;
}

.private-events p {
  color: #4b5563;
  margin-bottom: 0.75rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.private-events a { color: #d97706; }
.private-events a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.site-footer { background: #111827; color: #d1d5db; }

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) { .footer-inner { padding: 3rem 1.5rem; } }
@media (min-width: 768px) { .footer-inner { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .footer-inner { padding: 3rem 2rem; } }

.footer-brand h3 {
  font-size: 1.25rem;
  font-family: Georgia, 'Times New Roman', serif;
  color: #f59e0b;
  margin-bottom: 1rem;
}

.footer-brand p { font-size: 0.875rem; line-height: 1.6; }

.footer-col h3 { font-size: 1.125rem; margin-bottom: 1rem; }

.footer-contacts { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-contact-item .icon { color: #f59e0b; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item .icon .icon-svg {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
  display: block;
}

.footer-hours { font-size: 0.875rem; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-hours-row { display: flex; gap: 0.5rem; align-items: flex-start; }
.footer-hours-row .icon { color: #f59e0b; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: #9ca3af;
}

/* ===== SUCCESS MESSAGE ===== */
.form-success {
  display: none;
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
  border-radius: 0.375rem;
  padding: 1rem;
  margin-top: 1rem;
  text-align: center;
}

.form-success.show { display: block; }
