/* ═══════════════════════════════════════════
   DAILY MENU + FOOTER – Brisket Yard
   ═══════════════════════════════════════════ */

/* ══════════════════════════════════════════
   DAILY MENU HERO
   ══════════════════════════════════════════ */
.daily-section {
  position: relative;
  background: #111;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background image — right side */
.daily-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 68%;
  height: 100%;
}

.daily-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Gradient: solid dark left → transparent right */
.daily-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #111 0%,
    rgba(17,17,17,0.92) 20%,
    rgba(17,17,17,0.55) 52%,
    rgba(17,17,17,0.1) 80%,
    transparent 100%
  );
  z-index: 1;
}

/* Content */
.daily-inner {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0;
}

.daily-label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.daily-heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.02;
  margin-bottom: 1.1rem;
}

.daily-desc {
  font-size: 0.88rem;
  color: #999;
  line-height: 1.82;
  max-width: 340px;
  margin-bottom: 2rem;
}

.btn-daily {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  border: 2px solid var(--orange);
  padding: 0.65rem 1.5rem;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-daily:hover {
  background: transparent;
  color: var(--orange);
}

/* ══════════════════════════════════════════
   INFO STRIP (3 columns)
   ══════════════════════════════════════════ */
.daily-strip {
  background: #0c0a07;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Each column */
.strip-col {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.8rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.strip-col:last-child {
  border-right: none;
}

/* Third column stacks vertically */
.strip-col--last {
  flex-direction: column;
  gap: 0.85rem;
}

/* Icon + text row inside the last column */
.strip-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

/* Icon circle */
.strip-icon-wrap {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  background: rgba(232,100,26,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.strip-icon-wrap svg {
  width: 17px;
  height: 17px;
}

.strip-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.28rem;
}

.strip-desc {
  font-size: 0.76rem;
  color: #888;
  line-height: 1.62;
  margin: 0;
}

/* Logo column */
.strip-col--logo {
  justify-content: center;
  align-items: center;
  border-right: none;
}

.strip-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  display: block;
}

/* Email form */
.strip-form {
  display: flex;
  width: 100%;
  max-width: 300px;
}

.strip-email-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.76rem;
  padding: 0.52rem 0.9rem;
  outline: none;
}

.strip-email-input::placeholder { color: #444; }

.strip-email-btn {
  background: var(--orange);
  border: none;
  padding: 0 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.strip-email-btn:hover { background: #c8551a; }

.strip-email-btn svg {
  width: 16px;
  height: 16px;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.site-footer {
  background: #080604;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.4rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.7rem;
  color: #444;
  margin: 0;
  white-space: nowrap;
}

/* Logo badge */
.footer-badge {
  flex-shrink: 0;
}

.footer-badge img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  display: block;
}

/* Footer nav links */
.footer-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--orange); }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 991px) {
  .daily-bg { width: 100%; }
  .daily-bg::before {
    background: linear-gradient(
      to right,
      rgba(17,17,17,0.97) 0%,
      rgba(17,17,17,0.85) 50%,
      rgba(17,17,17,0.55) 100%
    );
  }
  .strip-col {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .strip-col:last-child { border-bottom: none; }
  .footer-badge img { width: 72px; height: 72px; }
}

@media (max-width: 767px) {
  .footer-inner { flex-direction: column; text-align: center; gap: 1.4rem; }
  .footer-nav   { flex-wrap: wrap; justify-content: center; gap: 1rem 1.5rem; }
}

@media (max-width: 575px) {
  .daily-heading { font-size: 2.4rem; }
  .daily-inner   { padding: 3rem 0; }
  .strip-col     { padding: 1.4rem 1rem; }
}
