/* =========================================
   Amin's Smokehouse - Brochure Site
   Color Palette:
   - Deep Charcoal: #1a1a1a
   - Warm Ember:   #d4763a
   - Off-White:    #f5f2eb
   - Dark Text:    #333333
   - Light Gray:   #e8e4db
   - Gold:         #d4af37
   Font: Playfair Display (headings) + Inter (body)
   ========================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #333;
  background: #f5f2eb;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #d4763a; text-decoration: none; transition: color .25s; }
a:hover { color: #b85e2a; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: .75rem; }

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #d4763a;
  margin: 1rem auto 0;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: -2rem auto 3rem;
}

/* --- Header --- */
.site-header {
  background: #1a1a1a;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0;
}

.logo-link {
  flex-shrink: 0;
}

.logo-img {
  height: 60px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #f5f2eb;
  font-size: 1.5rem;
  cursor: pointer;
  padding: .5rem;
}

.nav-list {
  display: flex;
  gap: .25rem;
}

.nav-list a {
  color: #ccc;
  padding: .5rem 1rem;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 500;
  transition: all .2s;
}

.nav-list a:hover,
.nav-list a.active {
  color: #fff;
  background: rgba(212, 118, 58, 0.2);
}

.nav-list a.active {
  color: #d4763a;
}

.nav-cta {
  background: #d4763a !important;
  color: #fff !important;
  padding: .5rem 1.25rem !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: #b85e2a !important;
}

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1a0e 100%);
  color: #f5f2eb;
  padding: 6rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  opacity: .15;
  z-index: 0;
}

.hero-logo {
  max-width: 380px;
  margin: 0 auto 2rem;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #f5f2eb;
  margin-bottom: .5rem;
  position: relative;
  z-index: 1;
}

.hero-tagline {
  font-size: 1.2rem;
  color: #d4763a;
  font-weight: 500;
  margin-bottom: .5rem;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.05rem;
  color: #bbb;
  max-width: 650px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: .9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all .25s;
  border: none;
  text-align: center;
}

.btn-primary {
  background: #d4763a;
  color: #fff;
}

.btn-primary:hover {
  background: #b85e2a;
  color: #fff;
}

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

.btn-secondary:hover {
  background: #d4763a;
  color: #fff;
}

.btn-large {
  padding: 1.1rem 2.8rem;
  font-size: 1.1rem;
}

/* --- Sections --- */
.section {
  padding: 5rem 0;
}

.section-light {
  background: #fff;
}

.section-dark {
  background: #1a1a1a;
  color: #bbb;
}

.section-dark .section-title {
  color: #f5f2eb;
}

.section-dark .section-subtitle {
  color: #999;
}

/* --- Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border: 1px solid #e8e4db;
  transition: transform .25s, box-shadow .25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

.feature-icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
}

.feature-card h3 {
  margin-bottom: .5rem;
}

.feature-card p {
  font-size: .95rem;
  color: #666;
}

/* --- Menu Preview Grid --- */
.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.menu-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border: 1px solid #e8e4db;
  transition: transform .25s, box-shadow .25s;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

.menu-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.menu-card-body {
  padding: 1.25rem;
}

.menu-card-body h3 {
  margin-bottom: .5rem;
}

.menu-card-body p {
  font-size: .9rem;
  color: #666;
  margin-bottom: .75rem;
}

.menu-card-price {
  font-weight: 700;
  color: #d4763a;
  font-size: 1.1rem;
}

/* --- Testimonials --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,.04);
  padding: 1.75rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: .75rem;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.testimonial-text {
  font-style: italic;
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: .75rem;
  color: #ccc;
}

.testimonial-author {
  font-size: .85rem;
  color: #999;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1a0e 100%);
  color: #f5f2eb;
  text-align: center;
  padding: 5rem 0;
}

.cta-section h2 {
  color: #f5f2eb;
  margin-bottom: 1rem;
}

.cta-section p {
  color: #bbb;
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* --- Footer --- */
.site-footer {
  background: #111;
  color: #999;
  padding: 3rem 0 1.5rem;
  font-size: .9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: #f5f2eb;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-col p {
  line-height: 1.6;
}

.footer-col ul li {
  margin-bottom: .4rem;
}

.footer-col ul li a {
  color: #999;
}

.footer-col ul li a:hover {
  color: #d4763a;
}

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 1.5rem;
  text-align: center;
  font-size: .8rem;
}

/* --- Mobile Nav --- */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a1a;
    padding: .5rem 1rem 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
  }

  .nav-list.open {
    display: flex;
  }

  .nav-list a {
    padding: .75rem 1rem;
    border-radius: 6px;
  }

  .hero {
    padding: 4rem 0 3rem;
  }

  .hero-logo {
    max-width: 240px;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }
}

@media (min-width: 769px) {
  .nav-toggle {
    display: none !important;
  }
}

/* =========================================
   WHAT'S SMOKIN TODAY
   ========================================= */

.today-specials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.special-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border: 1px solid #e8e4db;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}

.special-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

.special-img {
  height: 240px;
  background-size: cover;
  background-position: center;
}

.special-body {
  padding: 1.5rem;
}

.special-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #d4763a;
  background: rgba(212, 118, 58, 0.1);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: .75rem;
}

.special-body h3 {
  font-size: 1.25rem;
  margin-bottom: .5rem;
}

.special-body p {
  font-size: .9rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: .75rem;
}

.special-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #d4763a;
}

@media (max-width: 768px) {
  .today-specials {
    grid-template-columns: 1fr;
  }
  .special-img {
    height: 200px;
  }
}

/* =========================================
   WHY AMIN'S - VALUES GRID WITH IMAGES
   ========================================= */

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.value-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border: 1px solid #e8e4db;
  transition: transform .25s;
}

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

.value-img-wrap {
  height: 200px;
  overflow: hidden;
}

.value-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.value-text {
  padding: 1.5rem;
}

.value-text h3 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
}

.value-text p {
  color: #555;
  font-size: .9rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  .value-img-wrap {
    height: 180px;
  }
}

/* =========================================
   MAP SECTION
   ========================================= */

.section-map {
  background: #f5f2eb;
}

.map-container {
  max-width: 800px;
  margin: 1.5rem auto 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.map-container iframe {
  display: block;
}

.map-link {
  display: inline-block;
  margin-top: .5rem;
  color: #d4763a;
  text-decoration: underline;
  font-size: .9rem;
}

.map-link:hover {
  color: #1a1a1a;
}

/* =========================================
   PAGE-SPECIFIC STYLES
   ========================================= */

/* --- Menu Page --- */
.menu-category {
  margin-bottom: 3rem;
}

.menu-category h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid #d4763a;
}

.menu-items {
  display: grid;
  gap: .75rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e8e4db;
}

.menu-item-info h3 {
  font-size: 1.05rem;
  margin-bottom: .25rem;
}

.menu-item-info p {
  font-size: .85rem;
  color: #666;
  margin: 0;
}

.menu-item-price {
  font-weight: 700;
  color: #d4763a;
  font-size: 1.1rem;
  white-space: nowrap;
  margin-left: 1rem;
}

/* --- About Page --- */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.story-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}

.story-image-wrap img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.story-text h2 {
  margin-bottom: 1.25rem;
}

.story-text p {
  color: #555;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.value-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8e4db;
}

.value-item svg {
  margin-bottom: 1rem;
}

.value-item h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

.value-item p {
  color: #666;
  font-size: .9rem;
}

@media (max-width: 768px) {
  .story-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-image-wrap {
    order: -1;
  }

  .story-image-wrap img {
    height: 250px;
  }
}

/* --- Catering --- */
.catering-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.catering-tier {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8e4db;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .25s;
}

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

.catering-tier-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.catering-tier-body {
  padding: 1.5rem;
}

.catering-tier-body h3 {
  font-size: 1.2rem;
  margin-bottom: .25rem;
}

.catering-tier-body .tier-tag {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  color: #d4763a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .75rem;
}

.catering-tier-body ul {
  margin: 1rem 0;
}

.catering-tier-body ul li {
  padding: .3rem 0;
  font-size: .9rem;
  color: #555;
  position: relative;
  padding-left: 1.25rem;
}

.catering-tier-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .65rem;
  width: 6px;
  height: 6px;
  background: #d4763a;
  border-radius: 50%;
}

.catering-tier-body .tier-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #d4763a;
  margin-top: .75rem;
  display: block;
}

.catering-tier.featured {
  border: 2px solid #d4763a;
  box-shadow: 0 4px 20px rgba(212, 118, 58, .15);
}

.catering-tier.featured .tier-tag {
  color: #fff;
  background: #d4763a;
  padding: 2px 10px;
  border-radius: 4px;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

.contact-info h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
  color: #1a1a1a;
}

.contact-info p {
  margin-bottom: 1.5rem;
  color: #555;
  font-size: .95rem;
}

.contact-info .contact-phone {
  font-size: 1.3rem;
  font-weight: 600;
  color: #d4763a;
}

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}

.map-wrap iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.hours-table td {
  padding: .5rem 0;
  border-bottom: 1px solid #e8e4db;
  font-size: .95rem;
  color: #555;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 500;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .map-wrap iframe {
    height: 300px;
  }
}

/* --- Order Page --- */
.order-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1a0e 100%);
  color: #f5f2eb;
  text-align: center;
  padding: 4rem 0;
}

.order-hero h1 {
  color: #f5f2eb;
}

.order-hero p {
  color: #bbb;
  max-width: 500px;
  margin: 0 auto;
}

.order-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.order-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e8e4db;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .25s;
}

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

.order-card svg {
  margin-bottom: 1rem;
}

.order-card h3 {
  margin-bottom: .5rem;
}

.order-card p {
  color: #666;
  font-size: .9rem;
  margin-bottom: 1rem;
}

/* --- Hours in header --- */
.hours-badge {
  background: #d4763a;
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
}
