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

:root {
  --bg-primary: #121212;
  --bg-secondary: #1a1a1a;
  --bg-card: #1f1f1f;
  --bg-card-hover: #252525;
  --bg-elevated: #2a2a2a;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #777777;
  --accent: #7b4fb5;
  --accent-light: #9b6fd5;
  --accent-dark: #5a2f8f;
  --accent-glow: rgba(123, 79, 181, 0.25);
  --accent-glow-strong: rgba(123, 79, 181, 0.5);
  --gold: #c9a96e;
  --gold-light: #e0c896;
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(123, 79, 181, 0.3);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 70px;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ========== AMBIENT BACKGROUND ========== */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
  animation: float 20s ease-in-out infinite;
}

.ambient-bg .orb-1 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: -100px;
  right: -100px;
}

.ambient-bg .orb-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-dark);
  bottom: 20%;
  left: -80px;
  animation-delay: -7s;
}

.ambient-bg .orb-3 {
  width: 250px;
  height: 250px;
  background: var(--accent-light);
  top: 50%;
  right: -50px;
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ========== FULLSCREEN HERO ========== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10, 10, 10, 0.7) 0%,
      rgba(10, 10, 10, 0.6) 25%,
      rgba(10, 10, 10, 0.65) 55%,
      rgba(10, 10, 10, 0.95) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 28px 40px;
  max-width: 500px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.lang-toggle {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 200;
  display: flex;
  background: rgba(31, 31, 31, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.lang-btn {
  padding: 6px 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

.lang-btn.active {
  background: var(--accent);
  color: var(--text-primary);
}

.hero-logo {
  width: 72px;
  height: 72px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--accent-light);
  margin: 0 auto 24px;
  box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(123, 79, 181, 0.1);
  position: relative;
  animation: logoPulse 4s ease-in-out infinite;
}

.hero-logo::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(123, 79, 181, 0.2);
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(123, 79, 181, 0.1); }
  50% { box-shadow: 0 0 50px var(--accent-glow-strong), 0 0 100px rgba(123, 79, 181, 0.15); }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.15;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
}

.hero-title span {
  color: var(--accent-light);
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  -webkit-text-stroke: 0.3px rgba(255, 255, 255, 0.6);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.15), 0 1px 12px rgba(0, 0, 0, 0.5);
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0 auto 32px;
  border-radius: 2px;
}

.hero-welcome {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 16px;
  line-height: 1.4;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.hero-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 40px;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.6);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  background: var(--accent);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 20px var(--accent-glow-strong);
}

.hero-cta:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow-strong);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.hero-scroll-indicator span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--accent-light);
  border-bottom: 2px solid var(--accent-light);
  transform: rotate(45deg);
  opacity: 0.6;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.5; }
}

/* ========== ABOUT SECTION ========== */
.about-section {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  padding: 48px 24px;
  text-align: center;
}

.about-section::after {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 40px auto 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.about-stat {
  padding: 20px 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.about-stat:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.about-stat .stat-icon {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--accent-light);
  margin-bottom: 8px;
  display: block;
  opacity: 0.7;
}

.about-stat .stat-value {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-light);
  display: block;
  margin-bottom: 2px;
}

.about-stat .stat-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.about-quote {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 0 8px;
}

.about-quote span {
  color: var(--accent-light);
}

/* ========== GALLERY STRIP ========== */
.gallery-strip {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0 0 8px;
}

.gallery-scroll {
  display: flex;
  gap: 10px;
  padding: 0 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  flex-shrink: 0;
  width: 260px;
  height: 170px;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: center;
  position: relative;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}

.gallery-card .gallery-label {
  position: absolute;
  bottom: 12px;
  left: 14px;
  z-index: 2;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* ========== STICKY NAV ========== */
.category-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.category-nav.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 12px;
  gap: 4px;
}

.nav-scroll::-webkit-scrollbar {
  display: none;
}

.nav-item {
  scroll-snap-align: center;
  flex-shrink: 0;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-item:hover {
  color: var(--text-secondary);
}

.nav-item.active {
  color: var(--accent-light);
  border-bottom-color: var(--accent);
}

/* ========== MAIN CONTENT ========== */
.menu-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 16px 100px;
}

/* ========== CATEGORY SECTION ========== */
.menu-section {
  padding-top: 32px;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.menu-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-header {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  position: relative;
  display: inline-block;
}

.section-header .section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.section-header .section-ornament::before,
.section-header .section-ornament::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.section-header .section-ornament span {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--accent-light);
  letter-spacing: 2px;
}

.section-header p {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.section-divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ========== MENU ITEM ========== */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  opacity: 0;
  transition: var(--transition);
}

.menu-item:hover,
.menu-item:active {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateX(2px);
}

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

.item-info {
  flex: 1;
  padding-right: 16px;
}

.item-name {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.item-name .item-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.7;
}

.item-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 300;
}

.item-price {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-light);
  white-space: nowrap;
  padding-top: 2px;
}

/* ========== FEATURED ITEM ========== */
.menu-item.featured {
  background: linear-gradient(135deg, rgba(123, 79, 181, 0.1) 0%, var(--bg-card) 100%);
  border-color: var(--border-accent);
  padding: 20px;
  border-radius: var(--radius);
}

.menu-item.featured::before {
  opacity: 1;
  background: linear-gradient(180deg, var(--accent-light), var(--accent-dark));
}

.menu-item.featured::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at top right, var(--accent-glow), transparent 70%);
  pointer-events: none;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201, 169, 110, 0.12);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  margin-bottom: 8px;
}

.featured .item-name {
  font-size: 17px;
  font-weight: 600;
}

.featured .item-desc {
  font-size: 13px;
  color: var(--text-secondary);
}

.featured .item-price {
  font-size: 17px;
  color: var(--gold-light);
}

/* ========== PHOTO ITEM ========== */
.menu-item.has-photo {
  flex-direction: column;
  padding: 0;
}

.menu-item.has-photo::before {
  display: none;
}

.menu-item.has-photo:hover,
.menu-item.has-photo:active {
  transform: translateY(-2px);
}

.item-photo-wrap {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
}

.item-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.menu-item.has-photo:hover .item-photo-wrap img {
  transform: scale(1.05);
}

.item-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(31, 31, 31, 0.8));
  pointer-events: none;
}

.item-photo-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(31, 31, 31, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(201, 169, 110, 0.25);
}

.has-photo .item-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 18px;
}

.has-photo .item-body .item-info {
  padding-right: 16px;
}

.has-photo .item-name {
  font-size: 17px;
  font-weight: 600;
}

.has-photo .item-desc {
  font-size: 13px;
  color: var(--text-secondary);
}

.has-photo .item-price {
  font-size: 17px;
  font-weight: 700;
  color: var(--gold-light);
}

/* ========== SPECIAL OFFERS ========== */
.offer-card {
  background: linear-gradient(135deg, rgba(123, 79, 181, 0.15) 0%, rgba(201, 169, 110, 0.08) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 24px 20px;
  margin-bottom: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--accent-glow), transparent, transparent);
  animation: rotate-glow 8s linear infinite;
  opacity: 0.3;
}

@keyframes rotate-glow {
  to { transform: rotate(360deg); }
}

.offer-card .offer-inner {
  position: relative;
  z-index: 1;
}

.offer-card .offer-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.offer-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.offer-card .offer-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.5;
}

.offer-card .offer-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-light);
}

.offer-card .offer-old-price {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 8px;
}

/* ========== FOOTER ========== */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid var(--border);
}

.footer .footer-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.footer .footer-logo span {
  color: var(--accent-light);
}

.footer p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer .social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
}

.footer .social-links a {
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: var(--transition);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
}

.footer .social-links a:hover {
  color: var(--accent-light);
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px var(--accent-glow-strong);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top:active {
  transform: scale(0.92);
}

/* ========== SUBCATEGORY LABEL ========== */
.subcategory-label {
  padding: 10px 18px 6px;
  margin-bottom: 4px;
}

.subcategory-label span {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--accent-light);
  font-weight: 500;
}

.subcategory-label.mt {
  padding-top: 16px;
}

/* ========== RESPONSIVE ========== */
@media (min-width: 768px) {
  .hero-title {
    font-size: 48px;
  }
  .hero-welcome {
    font-size: 26px;
  }
  .section-header h2 {
    font-size: 30px;
  }
  .menu-content {
    padding: 0 24px 100px;
  }
  .gallery-card {
    width: 300px;
    height: 200px;
  }
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

@media (hover: none) {
  .menu-item:active {
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
  }
}
