/* Prairie Plains Kitchen Website */
/* Modern western style using the CSS box model */

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

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #2d241f;
  background: #f8f1e7;
}

header {
  background: #3b271c;
  border-bottom: 5px solid #b87935;
  position: sticky;
  top: 0;
  z-index: 10;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.logo {
  color: #fff4df;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav-links a {
  color: #fff4df;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 10px;
  border-radius: 6px;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  background: #b87935;
  color: #fff;
}

.hero {
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 80px 30px;
  background:
    linear-gradient(rgba(42, 27, 19, 0.70), rgba(42, 27, 19, 0.70)),
    url("https://images.unsplash.com/photo-1555939594-58d7cb561ad1?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: white;
}

.hero-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 45px;
  border: 2px solid rgba(255, 244, 223, 0.5);
  border-radius: 18px;
  background: rgba(59, 39, 28, 0.55);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.hero h1,
.page-title h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p,
.page-title p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.eyebrow {
  color: #b87935;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hero .eyebrow {
  color: #ffd596;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 30px;
}

.two-column {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 35px;
  align-items: center;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #3b271c;
}

h3 {
  margin-bottom: 10px;
}

.center {
  text-align: center;
}

.button {
  display: inline-block;
  background: #8b4e22;
  color: white;
  text-decoration: none;
  border: none;
  padding: 14px 24px;
  margin-top: 10px;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.button:hover {
  background: #5f3419;
  transform: translateY(-2px);
}

.button.light {
  background: #fff4df;
  color: #3b271c;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 35px;
}

.menu-card,
.quote-card,
.western-card {
  background: #fffaf2;
  padding: 25px;
  border: 1px solid #dfc5a2;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(59, 39, 28, 0.12);
}

.image-placeholder {
  height: 190px;
  margin-bottom: 18px;
  border-radius: 12px;
  border: 2px dashed #b87935;
  background: #ead2ad;
  color: #3b271c;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.specials {
  max-width: 1100px;
  margin: 40px auto;
  padding: 45px;
  border-radius: 18px;
  background: #3b271c;
  color: #fff4df;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.specials h2 {
  color: #fff4df;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 35px;
}

.gallery-grid div {
  min-height: 180px;
  padding: 25px;
  border-radius: 16px;
  background: #d9b783;
  border: 2px solid #8b4e22;
  display: flex;
  align-items: end;
  font-weight: bold;
  color: #3b271c;
}

.page-title {
  padding: 75px 30px;
  text-align: center;
  background: #ead2ad;
  border-bottom: 5px solid #b87935;
}

.order-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 35px;
  align-items: start;
}

.order-form {
  background: #fffaf2;
  padding: 35px;
  border: 1px solid #dfc5a2;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(59, 39, 28, 0.12);
}

.order-form label {
  display: block;
  margin: 16px 0 7px;
  font-weight: bold;
  color: #3b271c;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid #dfc5a2;
  border-radius: 10px;
  font-size: 1rem;
  background: white;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  outline: none;
  border-color: #8b4e22;
}

.order-note ul {
  margin-left: 20px;
  margin-top: 10px;
}

footer {
  background: #3b271c;
  color: #fff4df;
  padding: 35px 30px;
  margin-top: 50px;
  border-top: 5px solid #b87935;
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

footer h3 {
  color: #ffd596;
}

/* Tablet layout */
@media (max-width: 850px) {
  .navbar,
  footer,
  .specials {
    flex-direction: column;
    text-align: center;
  }

  .two-column,
  .order-layout,
  .card-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-title h1 {
    font-size: 2.2rem;
  }

  .hero-content {
    padding: 30px;
  }
}

/* Phone layout */
@media (max-width: 550px) {
  .nav-links {
    justify-content: center;
  }

  .section {
    padding: 50px 20px;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero h1,
  .page-title h1 {
    font-size: 1.8rem;
  }
}
