/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:    #c0392b;
  --gold:   #d4a017;
  --dark:   #1a0a00;
  --bg:     #fdf6ec;
  --card:   #ffffff;
  --text:   #333;
  --muted:  #666;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h2 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(160deg, #8b0000 0%, #c0392b 50%, #d4a017 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content { position: relative; }

.lantern-row {
  font-size: 2.5rem;
  letter-spacing: 1rem;
  margin-bottom: 1rem;
  animation: sway 3s ease-in-out infinite alternate;
}

@keyframes sway {
  from { transform: rotate(-2deg); }
  to   { transform: rotate(2deg); }
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.tagline {
  font-size: 1.15rem;
  margin: 0.75rem 0 2rem;
  opacity: 0.92;
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
  text-decoration: none;
}

/* ── About ── */
.about {
  padding: 4rem 0;
  background: #fff;
}

.about p {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1.05rem;
  color: var(--muted);
}

.stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--red);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Menu ── */
.menu {
  padding: 4rem 0;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab {
  background: none;
  border: 2px solid var(--red);
  color: var(--red);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.tab.active, .tab:hover {
  background: var(--red);
  color: #fff;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.menu-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: transform 0.15s, box-shadow 0.15s;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}

.menu-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.menu-card h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.menu-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ── Info ── */
.info {
  padding: 4rem 0;
  background: #fff;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.info-card h2 {
  text-align: left;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  border-bottom: 3px solid var(--gold);
  padding-bottom: 0.4rem;
  display: inline-block;
}

.hours-list, .price-list {
  list-style: none;
}

.hours-list li, .price-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

.hours-list li span:last-child,
.price-list li span:last-child {
  font-weight: 600;
  color: var(--red);
}

address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
}

address a { color: var(--red); }

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.88rem;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .stats { gap: 1.5rem; }
  .hero { padding: 3.5rem 1.5rem 3rem; }
}
