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

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: #333;
  background: #fffdf5;
}

/* Nav */
.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 60px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: #e67e00;
  text-decoration: none;
}

.nav-links a {
  margin-left: 28px;
  text-decoration: none;
  color: #555;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #e67e00;
}

/* Hero */
header {
  background: linear-gradient(135deg, #f9d423 0%, #f5a623 100%);
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.15);
  margin-bottom: 16px;
}

.tagline {
  font-size: 1.2rem;
  color: #fff;
  max-width: 500px;
  margin: 0 auto 32px;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  background: #fff;
  color: #e67e00;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

/* Sections */
section {
  padding: 70px 20px;
  text-align: center;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #c97a00;
}

/* Menu Cards */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  width: 200px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-4px);
}

.card .icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #444;
}

.card p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.5;
  margin-bottom: 12px;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #e67e00;
}

/* Locations */
#locations {
  background: #fff8e1;
}

.locations {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
}

.location-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  width: 300px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  text-align: left;
}

.location-card h3 {
  font-size: 1.5rem;
  color: #c97a00;
  margin-bottom: 8px;
}

.address {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 16px;
}

.location-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.location-card ul li {
  font-size: 0.9rem;
  color: #555;
  padding: 3px 0;
}

.btn-outline {
  display: inline-block;
  border: 2px solid #e67e00;
  color: #e67e00;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: #e67e00;
  color: #fff;
}

/* Contact */
#contact p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 24px;
}

/* Footer */
footer {
  background: #333;
  color: #aaa;
  text-align: center;
  padding: 24px;
  font-size: 0.85rem;
}

/* Blog Hero */
.blog-hero {
  background: linear-gradient(135deg, #f9d423 0%, #f5a623 100%);
  text-align: center;
  padding: 60px 20px;
}

.blog-hero h1 {
  font-size: 2.8rem;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.15);
  margin-bottom: 12px;
}

.blog-hero p {
  font-size: 1.1rem;
  color: #fff;
  opacity: 0.9;
}

/* Blog Posts */
.blog-container {
  max-width: 740px;
  margin: 0 auto;
  padding: 60px 20px;
}

.blog-post {
  background: #fff;
  border-radius: 16px;
  padding: 40px 44px;
  margin-bottom: 40px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.post-meta {
  font-size: 0.82rem;
  color: #e67e00;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.blog-post h2 {
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.35;
}

.blog-post p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.blog-post p:last-child {
  margin-bottom: 0;
}

/* Locations grid — wider for 6 cards */
.locations {
  max-width: 1000px;
}

/* Individual location pages */
.location-hero {
  background: linear-gradient(135deg, #f9d423 0%, #f5a623 100%);
  text-align: center;
  padding: 60px 20px 50px;
}

.breadcrumb {
  margin-bottom: 16px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #fff;
}

.location-hero h1 {
  font-size: 2.8rem;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.15);
  margin-bottom: 10px;
}

.location-hero p {
  font-size: 1.1rem;
  color: #fff;
  opacity: 0.9;
}

.location-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.location-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.info-block {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  flex: 1;
  min-width: 220px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.info-block h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #e67e00;
  margin-bottom: 16px;
}

.info-block p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.info-block p:last-child {
  margin-bottom: 0;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.hours-table td {
  padding: 5px 0;
  color: #555;
}

.hours-table td:first-child {
  color: #333;
  font-weight: 600;
  width: 55%;
}

.location-card h3 a {
  color: #c97a00;
  text-decoration: none;
}

.location-card h3 a:hover {
  text-decoration: underline;
}
