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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f8fc;
  color: #1f2a44;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

iframe {
  border: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f8fc;
  --surface: #ffffff;
  --surface-alt: #eef3ff;
  --text: #1f2a44;
  --muted: #4d5b7c;
  --primary: #e3350d;
  --primary-dark: #b32607;
  --secondary: #ffcb05;
  --secondary-dark: #d9ab00;
  --accent: #2a75bb;
  --accent-dark: #1f5b91;
  --border: #d7def0;

  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;

  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 3rem;

  --radius: 1rem;
  --radius-lg: 1.5rem;
  --shadow: 0 10px 30px rgba(31, 42, 68, 0.12);
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: var(--space-7) 0;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
  color: var(--text);
}

h1 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}

h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

p {
  margin-top: 0;
  margin-bottom: var(--space-3);
  color: var(--muted);
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--primary-dark);
}

.btn-secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.15);
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 3px solid var(--secondary);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(6px);
}

.nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
}

.brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}

.nav-links a {
  font-weight: 700;
  color: var(--text);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent);
}

.hero {
  min-height: 78vh;
  background-image:
    linear-gradient(rgba(22, 32, 58, 0.55), rgba(22, 32, 58, 0.55)),
    url("../images/pokemon-hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-content {
  padding: var(--space-7) 0;
  color: #ffffff;
  max-width: 42rem;
}

.hero-content h1,
.hero-content p {
  color: #ffffff;
}

.hero-text {
  font-size: var(--text-lg);
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.menu {
  background: linear-gradient(to bottom, #f7f8fc, #eef3ff);
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.tab {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: 0.2s ease;
}

.tab.active,
.tab:hover,
.tab:focus-visible {
  background: var(--secondary);
  color: #1f2a44;
  border-color: var(--secondary-dark);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.menu-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(31, 42, 68, 0.18);
  border-color: var(--secondary);
}

.menu-card img {
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: var(--space-4);
}

.price {
  display: inline-block;
  margin-top: var(--space-1);
  font-weight: 800;
  color: var(--primary);
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
}

.location-copy {
  background: var(--surface-alt);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  border-left: 6px solid var(--accent);
}

.map-wrapper {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  min-height: 340px;
}

.map-wrapper iframe {
  width: 100%;
  min-height: 340px;
}

.site-footer {
  background: #1f2a44;
  color: #ffffff;
  padding: var(--space-6) 0;
  border-top: 4px solid var(--secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.site-footer h2,
.site-footer h3,
.site-footer p {
  color: #ffffff;
}

.footer-logo {
  font-size: var(--text-xl);
}

@media (min-width: 768px) {
  h1 {
    font-size: var(--text-3xl);
  }

  h2 {
    font-size: var(--text-2xl);
  }

  .nav {
    flex-direction: row;
    justify-content: space-between;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-layout {
    grid-template-columns: 1fr 1.1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
