/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #222;
}

/* ===== GLOBAL ===== */
.container {
  width: min(1200px, 90%);
  margin: auto;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}

h1, h2, h3, h4 {
  margin-bottom: 0.5em;
  font-weight: 600;
}

p {
  margin-bottom: 1em;
}

.lead {
  font-size: 1.2em;
}

.sub {
  color: #777;
  margin-bottom: 1.5em;
}

.muted {
  color: #777;
}

.small {
  font-size: 0.9em;
}

hr {
  margin: 2em 0;
  border: none;
  border-top: 1px solid #eee;
}

/* ===== HEADER & NAV ===== */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8em 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  color: #D84315;
}

.nav-toggle {
  display: none;
  font-size: 1.5em;
  background: none;
  border: none;
  cursor: pointer;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1em;
}

.nav a {
  text-decoration: none;
  color: #333;
  padding: 0.5em;
  transition: 0.3s;
}

.nav a.active,
.nav a:hover {
  color: #D84315;
}

/* ===== HERO ===== */
.hero {
  background: url('b1.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 5em 0;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
}

.hero p {
  max-width: 600px;
  margin: auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.6em 1.2em;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-primary {
  background: #D84315;
  color: #fff;
}

.btn-primary:hover {
  background: #bf360c;
}

.btn-ghost {
  border: 2px solid #fff;
  color: #fff;
}

.btn-ghost:hover {
  background: #fff;
  color: #D84315;
}

/* ===== GRIDS ===== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2em;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
}

.card,
.dish-card,
.branch-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 1em;
  text-align: center;
}

.dish-card .price {
  color: #D84315;
  font-weight: bold;
  margin-top: 0.5em;
}

.branch-card {
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.branch-card img {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.branch-body {
  padding: 1em;
}

/* ===== FORMS ===== */
form label {
  display: block;
  margin-top: 1em;
}

input, textarea, select {
  width: 100%;
  padding: 0.6em;
  margin-top: 0.3em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button[type="submit"] {
  margin-top: 1em;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #222;
  color: #ccc;
  padding: 2em 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5em;
}

.copy {
  text-align: center;
  margin-top: 1.5em;
  font-size: 0.9em;
  border-top: 1px solid #444;
  padding-top: 1em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav ul {
    flex-direction: column;
    display: none;
    background: #fff;
    position: absolute;
    top: 100%;
    right: 0;
    padding: 1em;
    width: 200px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  .nav-toggle {
    display: block;
  }
  .nav.open ul {
    display: flex;
  }
}
