/* BAFANG DUMPLING — IRVINE SITE STYLES */

:root {
  --red: #c0392b;
  --red-dark: #922b21;
  --gold: #d4a843;
  --gold-light: #f0d78c;
  --cream: #faf7f0;
  --charcoal: #2c2c2c;
  --gray: #6b6b6b;
  --light-gray: #e8e4dc;
  --white: #ffffff;
}

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

body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

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

a:hover {
  text-decoration: underline;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-secondary:hover {
  background: var(--gold-light);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  text-decoration: none;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

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

/* NAV */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--red);
  text-decoration: none;
}

/* HERO */
.hero {
  background: var(--red);
  color: var(--white);
  padding: 5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(192,57,43,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(212,168,67,0.15) 0%, transparent 60%);
  z-index: 1;
}

/* INFO BAR */
.info-bar {
  background: var(--charcoal);
  color: var(--white);
}

.info-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.info-item svg {
  flex-shrink: 0;
  color: var(--gold);
}

.info-item div {
  display: flex;
  flex-direction: column;
}

.info-item strong {
  font-size: 0.95rem;
}

.info-item span {
  opacity: 0.7;
}

/* MENU */
.menu {
  padding: 5rem 0;
}

.menu h2 {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.section-sub {
  text-align: center;
  color: var(--gray);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

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

.menu-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--light-gray);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

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

.menu-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.menu-card h3 {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.menu-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

.menu-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--gray);
  font-size: 0.9rem;
}

/* WHY */
.why {
  background: var(--white);
  padding: 5rem 0;
}

.why h2 {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--charcoal);
  margin-bottom: 3rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}

.why-item h4 {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--red);
}

.why-item p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* LOCATION */
.location {
  padding: 5rem 0;
}

.location h2 {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--charcoal);
  margin-bottom: 3rem;
}

.location-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2rem;
  align-items: start;
}

.location-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  padding: 1.75rem;
}

.location-card h4 {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.location-card address {
  font-style: normal;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.location-phone {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.location-hours strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.location-hours ul {
  list-style: none;
}

.location-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.2rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.location-hours li:last-child {
  border-bottom: none;
}

.location-map iframe {
  border-radius: 10px;
  display: block;
}

/* CTA */
.cta-section {
  background: var(--red);
  color: var(--white);
  padding: 5rem 1.5rem;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

.footer-inner p {
  margin-bottom: 0.25rem;
}

.footer-note {
  margin-top: 0.5rem;
  font-size: 0.8rem;
}

.footer-note a {
  color: rgba(255,255,255,0.7);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { gap: 1.25rem; }
  .nav-links a { font-size: 0.88rem; }

  .info-bar-inner { gap: 1.5rem; }
  .info-item { flex-direction: column; text-align: center; gap: 0.4rem; }

  .location-grid { grid-template-columns: 1fr; }
  .location-map iframe { height: 300px; }

  .hero { padding: 3.5rem 1.5rem 3rem; }
  .hero-sub { font-size: 1rem; }
}

@media (max-width: 480px) {
  .hero-cta-row { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .menu-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
