* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: #05070c;
  color: #f9f9f9;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.app-root {
  min-height: 100vh;
  background: #05070c;
  color: #f9f9f9;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 16px;
  box-sizing: border-box;
  background-image: radial-gradient(circle at top, rgba(227, 201, 118, 0.18) 0%, rgba(5, 7, 12, 0) 55%);
  transition: background 0.4s ease;
}

.main-container {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 16px 16px 32px 16px;
  box-sizing: border-box;
}

.main-container-inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(5, 7, 12, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(227, 201, 118, 0.28);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 12px 16px 8px 16px;
  box-sizing: border-box;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo-link {
  display: inline-flex;
  align-items: center;
}

.header-logo-img {
  max-height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
}

.header-title-text {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e3c976;
  white-space: nowrap;
  display: none;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f9f9f9;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.nav-link:hover {
  background: rgba(227, 201, 118, 0.08);
  border-color: rgba(227, 201, 118, 0.4);
  color: #e3c976;
  transform: translateY(-1px);
}

.nav-link:focus-visible {
  outline: none;
  border-color: #e3c976;
  box-shadow: 0 0 0 2px rgba(227, 201, 118, 0.5);
}

.nav-link:active {
  transform: translateY(0);
  background: rgba(227, 201, 118, 0.16);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(227, 201, 118, 0.4);
  background: rgba(5, 7, 12, 0.9);
  color: #e3c976;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.menu-toggle-bar {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #e3c976;
  display: block;
}

.menu-toggle-bar + .menu-toggle-bar {
  margin-left: 4px;
}

.menu-toggle:hover {
  background: rgba(227, 201, 118, 0.12);
  transform: translateY(-1px);
}

.menu-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(227, 201, 118, 0.6);
}

.menu-toggle:active {
  transform: translateY(0);
  background: rgba(227, 201, 118, 0.22);
}

.nav-links-mobile {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 8px 0 4px 0;
}

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

.nav-link-mobile {
  width: fit-content;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
  padding: 24px 0 8px 0;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(20, 19, 21, 0.96) 0%, rgba(5, 7, 12, 0.96) 60%, rgba(43, 42, 43, 0.9) 100%);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(227, 201, 118, 0.28);
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.6s ease-out both;
}

.hero-heading {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e3c976;
  margin: 0 0 8px 0;
}

.hero-subheading {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: #f9f9f9;
  opacity: 0.88;
  margin: 0;
}

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.hero-meta-pill {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(227, 201, 118, 0.4);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e3c976;
  background: rgba(5, 7, 12, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn-primary {
  padding: 12px 24px;
  min-height: 44px;
  background: linear-gradient(145deg, #e3c976 0%, #a28a50 40%, #be9726 100%);
  color: #05070c;
  border: 1px solid #e3c976;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.65);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
  background: linear-gradient(145deg, #f0dd9c 0%, #e3c976 40%, #be9726 100%);
}

.btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(5, 7, 12, 0.9), 0 0 0 4px rgba(227, 201, 118, 0.9);
}

.btn-primary:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.7);
  background: linear-gradient(145deg, #d4b962 0%, #a28a50 60%, #8a6f2b 100%);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-secondary {
  padding: 12px 20px;
  min-height: 44px;
  background: rgba(5, 7, 12, 0.9);
  color: #e3c976;
  border: 1px solid rgba(227, 201, 118, 0.4);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(227, 201, 118, 0.14);
  border-color: rgba(227, 201, 118, 0.7);
  transform: translateY(-2px);
}

.btn-secondary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(5, 7, 12, 0.9), 0 0 0 4px rgba(227, 201, 118, 0.9);
}

.btn-secondary:active {
  transform: translateY(0);
  background: rgba(227, 201, 118, 0.24);
}

.btn-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.floating-dish-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(227, 201, 118, 0.22) 0%, rgba(5, 7, 12, 0.98) 55%);
  border: 1px solid rgba(227, 201, 118, 0.28);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
  min-height: 260px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.floating-dish-canvas {
  width: 100%;
  height: 100%;
  display: block;
  min-height: 260px;
  cursor: pointer;
  outline: none;
}

.floating-dish-accessibility-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
  box-sizing: border-box;
}

.floating-dish-hint {
  pointer-events: auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(5, 7, 12, 0.82);
  border: 1px solid rgba(227, 201, 118, 0.5);
  color: #e3c976;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.section-heading {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e3c976;
  margin: 0 0 4px 0;
}

.section-subheading {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  color: #f9f9f9;
  opacity: 0.8;
  margin: 0;
}

.menu-section {
  margin-top: 8px;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 8px 0;
}

.menu-tab {
  padding: 8px 14px;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(227, 201, 118, 0.32);
  background: rgba(5, 7, 12, 0.9);
  color: #f9f9f9;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.menu-tab:hover {
  background: rgba(227, 201, 118, 0.14);
  border-color: rgba(227, 201, 118, 0.7);
  transform: translateY(-1px);
}

.menu-tab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(5, 7, 12, 0.9), 0 0 0 4px rgba(227, 201, 118, 0.9);
}

.menu-tab:active {
  transform: translateY(0);
  background: rgba(227, 201, 118, 0.24);
}

.menu-tab:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.menu-tab.active {
  background: linear-gradient(145deg, #e3c976 0%, #a28a50 40%, #be9726 100%);
  color: #05070c;
  border-color: #e3c976;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.75);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 24px;
  align-items: stretch;
  margin-top: 16px;
}

.menu-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 20px;
  border-radius: 16px;
  background: radial-gradient(circle at top, rgba(227, 201, 118, 0.14) 0%, rgba(5, 7, 12, 0.98) 55%);
  border: 1px solid rgba(227, 201, 118, 0.32);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.9);
  border-color: rgba(227, 201, 118, 0.7);
}

.menu-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.menu-card-title {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  color: #f9f9f9;
  margin: 0;
}

.menu-card-price {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(5, 7, 12, 0.9);
  border: 1px solid rgba(227, 201, 118, 0.6);
  color: #e3c976;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.menu-card-description {
  font-size: 14px;
  line-height: 1.6;
  color: #f9f9f9;
  opacity: 0.85;
  margin: 0 0 8px 0;
}

.menu-card-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.menu-card-meta-tag {
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(227, 201, 118, 0.32);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e3c976;
  background: rgba(5, 7, 12, 0.85);
}

.menu-card-footer {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid rgba(227, 201, 118, 0.18);
}

.menu-card-action {
  padding: 8px 14px;
  min-height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(227, 201, 118, 0.4);
  background: rgba(5, 7, 12, 0.95);
  color: #e3c976;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.7);
}

.menu-card-action:hover {
  background: rgba(227, 201, 118, 0.18);
  border-color: rgba(227, 201, 118, 0.7);
  transform: translateY(-1px);
}

.menu-card-action:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(5, 7, 12, 0.9), 0 0 0 4px rgba(227, 201, 118, 0.9);
}

.menu-card-action:active {
  transform: translateY(0);
  background: rgba(227, 201, 118, 0.26);
}

.menu-card-action:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.menu-card-dietary {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #f9f9f9;
  opacity: 0.8;
}

.menu-card-dietary span {
  white-space: nowrap;
}

.interactive-dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 24px;
  align-items: stretch;
  margin-top: 16px;
}

.interactive-dish-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  border-radius: 16px;
  overflow: hidden;
  background: #05070c;
  border: 1px solid rgba(227, 201, 118, 0.28);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.interactive-dish-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.95);
  border-color: rgba(227, 201, 118, 0.7);
}

.interactive-dish-image-wrapper {
  position: relative;
  flex: 1 0 auto;
  overflow: hidden;
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  background: transparent;
  cursor: pointer;
}

.interactive-dish-image-wrapper:focus-visible .interactive-dish-focus-ring {
  border-color: rgba(227, 201, 118, 0.9);
  box-shadow: 0 0 0 2px rgba(5, 7, 12, 0.9), 0 0 0 4px rgba(227, 201, 118, 0.9);
}

.interactive-dish-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.4s ease;
}

.interactive-dish-card:hover .interactive-dish-image,
.interactive-dish-image-wrapper.active .interactive-dish-image {
  transform: scale(1.06);
}

.interactive-dish-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 7, 12, 0.9) 0%, rgba(5, 7, 12, 0.1) 60%, transparent 100%);
  pointer-events: none;
}

.interactive-dish-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(5, 7, 12, 0.9);
  border: 1px solid rgba(227, 201, 118, 0.4);
  color: #f9f9f9;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.interactive-dish-caption-title {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
  color: #e3c976;
  margin: 0;
}

.interactive-dish-caption-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.85;
}

.interactive-dish-focus-ring {
  position: absolute;
  inset: 6px;
  border-radius: 12px;
  border: 2px solid transparent;
  pointer-events: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.link {
  color: #e3c976;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.link:hover {
  color: #f0dd9c;
  border-color: rgba(227, 201, 118, 0.7);
}

.link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(5, 7, 12, 0.9), 0 0 0 4px rgba(227, 201, 118, 0.9);
  border-color: rgba(227, 201, 118, 0.7);
}

.contact-section {
  margin-top: 8px;
}

.contact-form {
  margin-top: 16px;
  max-width: 640px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.form-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e3c976;
}

.form-helper {
  font-size: 12px;
  line-height: 1.4;
  color: #f9f9f9;
  opacity: 0.7;
}

.form-error {
  font-size: 12px;
  line-height: 1.4;
  color: #f97373;
  min-height: 16px;
}

.input-field {
  width: 100%;
  padding: 10px 12px;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(227, 201, 118, 0.32);
  background: rgba(5, 7, 12, 0.96);
  color: #f9f9f9;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.7);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  outline: none;
}

.input-field::placeholder {
  color: rgba(249, 249, 249, 0.5);
}

.input-field:hover {
  border-color: rgba(227, 201, 118, 0.6);
}

.input-field:focus {
  border-color: #e3c976;
  box-shadow: 0 0 0 2px rgba(227, 201, 118, 0.5), 0 10px 25px rgba(0, 0, 0, 0.8);
  background: rgba(5, 7, 12, 1);
}

.input-field:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.text-area {
  width: 100%;
  min-height: 120px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(227, 201, 118, 0.32);
  background: rgba(5, 7, 12, 0.96);
  color: #f9f9f9;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.7);
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  outline: none;
}

.text-area::placeholder {
  color: rgba(249, 249, 249, 0.5);
}

.text-area:hover {
  border-color: rgba(227, 201, 118, 0.6);
}

.text-area:focus {
  border-color: #e3c976;
  box-shadow: 0 0 0 2px rgba(227, 201, 118, 0.5), 0 10px 25px rgba(0, 0, 0, 0.8);
  background: rgba(5, 7, 12, 1);
}

.text-area:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-backdrop[hidden] {
  display: none;
}

.modal-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  width: min(520px, 100% - 32px);
  max-height: 80vh;
  background: rgba(5, 7, 12, 0.98);
  border-radius: 20px;
  border: 1px solid rgba(227, 201, 118, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(12px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.modal-dialog.visible {
  opacity: 1;
  transform: translateY(0);
}

.modal-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.modal-title {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  color: #e3c976;
  margin: 0;
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(227, 201, 118, 0.4);
  background: rgba(5, 7, 12, 0.9);
  color: #e3c976;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

.modal-close:hover {
  background: rgba(227, 201, 118, 0.16);
  transform: translateY(-1px);
}

.modal-close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(5, 7, 12, 0.9), 0 0 0 4px rgba(227, 201, 118, 0.9);
}

.modal-close:active {
  transform: translateY(0);
}

.modal-body {
  font-size: 14px;
  line-height: 1.6;
  color: #f9f9f9;
  overflow-y: auto;
  padding-top: 4px;
}

.app-footer {
  flex-shrink: 0;
  margin-top: 32px;
  padding: 16px;
  border-top: 1px solid rgba(227, 201, 118, 0.28);
  background: rgba(5, 7, 12, 0.98);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: #f9f9f9;
}

.footer-left {
  opacity: 0.8;
}

.footer-right {
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e3c976;
}

.footer-required-text {
  font-weight: 600;
  color: #e3c976;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.75;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes particleFloat {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  100% {
    transform: translate3d(0, -40px, 0);
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .header-title-text {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links-desktop {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .app-root {
    padding: 12px;
  }

  .main-container {
    padding: 12px 12px 24px 12px;
  }

  .hero-content {
    padding: 18px;
  }

  .hero-heading {
    font-size: 30px;
  }

  .hero-subheading {
    font-size: 16px;
  }

  .menu-grid {
    gap: 16px;
  }

  .interactive-dish-grid {
    gap: 16px;
  }

  .app-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
