/* Color palette for Enchiladas Michoacanas — earthy guajillo reds, Michoacán warmth:
   --bg-deep:    #2A0E06  very dark earth-red — outer canvas
   --bg-base:    #8B2E18  deep guajillo red poster base
   --bg-bright:  #C44420  bright guajillo-red highlight center
   --bg-mid:     #6E2210  mid-tone brick-red
   --bg-dark:    #3C1008  darkest earth-red
   --cream:      #F5DEB8  warm tortilla-cream accent
   --gold:       #D49028  golden corn accent
   --maroon:     #6B1E12  deep maroon — script / cursive text
   --white:      #ffffff  primary text
*/

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

body {
  background: #2A0E06;   /* very dark earth-red — outer canvas */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: 'Lato', sans-serif;
}

/* ── Poster card ──────────────────────────────── */
.poster {
  position: relative;
  width: 100%;
  max-width: 600px;
  min-height: 860px;
  background: #8B2E18;   /* deep guajillo red base layer */
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0,0,0,.75);
}

/* ── Radial depth gradient ────────────────────── */
.poster::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 35%,
      #C44420 0%,
      #A03418 30%,
      #8B2E18 58%,
      #481208 100%);
  pointer-events: none;
  z-index: 0;
}

/* ── Corner vignette ──────────────────────────── */
.poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%,
    transparent 40%,
    rgba(18, 6, 2, .60) 100%);
  pointer-events: none;
  z-index: 0;
}

/* ── Top decorative band ──────────────────────── */
.top-band {
  position: relative;
  z-index: 1;
  background: rgba(18, 6, 2, .55);
  padding: 16px 28px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid rgba(245, 222, 184, .35);
}

.restaurant-name {
  font-family: 'Dancing Script', cursive;
  color: #F5DEB8;
  font-size: 1.3rem;
  letter-spacing: .5px;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
  text-decoration: none;
}

.lang-switcher {
  display: flex;
  gap: 10px;
  align-items: center;
}

.lang-link {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 2px;
  padding: 2px 8px;
  transition: color .15s, border-color .15s;
}

.lang-link:hover {
  color: #F5DEB8;
  border-color: rgba(245, 222, 184, .5);
}

.tagline-top {
  font-size: .7rem;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ── Corner decorations ───────────────────────── */
.chiles {
  position: absolute;
  z-index: 2;
  font-size: 2.2rem;
  opacity: .35;
  user-select: none;
}
.chile-tl { top: 130px; left: -4px;  transform: rotate(-30deg); }
.chile-tr { top: 100px; right: 10px; transform: rotate(25deg); font-size: 1.8rem; }
.chile-bl { bottom: 160px; left: 8px;  transform: rotate(15deg); font-size: 1.6rem; }
.chile-br { bottom: 170px; right: 12px; transform: rotate(-20deg); }

/* ── Hero title block ─────────────────────────── */
.title-block {
  position: relative;
  z-index: 3;
  padding: 28px 32px 10px;
  text-align: left;
}

.label-special {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #F5DEB8;
  background: rgba(245, 222, 184, .12);
  border: 1px solid rgba(245, 222, 184, .4);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.dish-subtitle {
  font-family: 'Dancing Script', cursive;
  color: #D49028;
  font-size: 1.55rem;
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 1px 4px rgba(0,0,0,.35);
}

.dish-title {
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -1px;
  text-shadow: 0 4px 24px rgba(0,0,0,.45);
}

.dish-title span {
  color: #ffffff;
}

.dish-title-line2 {
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
  text-shadow: 0 3px 16px rgba(0,0,0,.4);
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #D49028, rgba(212,144,40,.15));
  margin: 12px 0;
  border-radius: 2px;
}

.dish-desc {
  font-size: .82rem;
  color: rgba(255, 255, 255, .80);
  letter-spacing: .4px;
  line-height: 1.55;
  max-width: 340px;
}

/* ── Food photo ───────────────────────────────── */
.photo-wrap {
  position: relative;
  z-index: 3;
  margin: 16px 0 0;
  display: flex;
  justify-content: center;
}

.photo-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  filter: brightness(.97) saturate(1.1) contrast(1.04);
}

.photo-wrap::before,
.photo-wrap::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 90px;
  z-index: 4;
  pointer-events: none;
}
.photo-wrap::before {
  top: 0;
  background: linear-gradient(to bottom, #A03418, transparent);
}
.photo-wrap::after {
  bottom: 0;
  background: linear-gradient(to top, #481208, transparent);
}

/* ── Ingredients / accent row ─────────────────── */
.accents {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 14px 32px;
}

.accent-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.accent-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.accent-label {
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, .7);
}

/* ── Price / CTA badge ────────────────────────── */
.cta-row {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 32px 20px;
  gap: 16px;
}

.price-block {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .55);
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #F5DEB8;
  line-height: 1;
  text-shadow: 0 2px 14px rgba(0,0,0,.3);
}

.price sup {
  font-size: 1.2rem;
  vertical-align: super;
}

.order-btn {
  display: inline-block;
  background: linear-gradient(135deg, #F5DEB8, #D4C090);
  color: #481208;
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 30px;
  border-radius: 3px;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(58, 12, 6, .45);
  border: none;
  transition: transform .15s;
  text-decoration: none;
}

.order-btn:hover { transform: translateY(-2px); }

/* ── Horizontal rule ──────────────────────────── */
.hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .15);
  margin: 0 32px;
}

/* ── Footer ───────────────────────────────────── */
.footer {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 32px 20px;
  background: rgba(18, 6, 2, .40);
}

.footer-contact {
  font-size: .72rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
}

.footer-contact strong {
  color: #F5DEB8;
  font-size: .8rem;
}

.footer-logo {
  font-family: 'Dancing Script', cursive;
  color: #F5DEB8;
  font-size: 1.05rem;
  text-align: right;
  opacity: .8;
  line-height: 1.4;
}

/* ── Corner ornament dots ─────────────────────── */
.dots {
  position: absolute;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 6px);
  gap: 4px;
}
.dots span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #F5DEB8;
  opacity: .50;
}
.dots-br { top: 68px; right: 22px; }

/* ── Accent lines ─────────────────────────────── */
.gold-line {
  position: absolute;
  z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(212,144,40,.55), transparent);
  height: 1px;
  opacity: .45;
}
.gold-line-1 { top: 52px;    left: 0; right: 0; }
.gold-line-2 { bottom: 46px; left: 0; right: 0; }

/* ── Order page ───────────────────────────────── */
.order-page {
  min-height: 860px;
}

.order-content {
  position: relative;
  z-index: 3;
  padding: 28px 36px 20px;
}

.order-section {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 0;
}

.order-section-icon {
  font-size: 1.8rem;
  line-height: 1;
  min-width: 36px;
  text-align: center;
  margin-top: 2px;
}

.order-section-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.order-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #F5DEB8;
  letter-spacing: .5px;
}

.order-section-detail {
  font-size: .85rem;
  color: rgba(255, 255, 255, .78);
  line-height: 1.55;
}

.order-section-detail strong {
  color: #ffffff;
}

.order-phone {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #F5DEB8;
  text-decoration: none;
  letter-spacing: 1px;
  text-shadow: 0 2px 14px rgba(0,0,0,.3);
}

.order-phone:hover {
  text-decoration: underline;
}

.order-or {
  color: rgba(255, 255, 255, .45);
  font-style: italic;
  margin: 0 4px;
}

.order-zelle {
  font-size: .9rem;
  color: rgba(255, 255, 255, .9);
  background: rgba(245, 222, 184, .10);
  border: 1px solid rgba(245, 222, 184, .35);
  border-radius: 3px;
  padding: 6px 14px;
  display: inline-block;
  letter-spacing: .5px;
}

.order-zipcodes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.zipcode {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #F5DEB8;
  background: rgba(245, 222, 184, .12);
  border: 1px solid rgba(245, 222, 184, .35);
  border-radius: 3px;
  padding: 3px 10px;
}

.order-pickup-note {
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
  margin-top: 6px;
}

.order-pickup-note strong {
  color: rgba(255, 255, 255, .75);
}

.order-hr {
  margin: 0;
}

/* ── Countdown banner ─────────────────────────── */
.countdown-wrap {
  position: relative;
  z-index: 3;
  background: rgba(0, 0, 0, .25);
  border-top: 1px solid rgba(245, 222, 184, .22);
  padding: 10px 32px;
  text-align: center;
}

.countdown-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .65);
}

.countdown-display {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #F5DEB8;
  letter-spacing: 4px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
}

/* ── Sold-out overlay ─────────────────────────── */
.sold-out-overlay {
  position: absolute;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .40);
}

.sold-out-note {
  position: absolute;
  bottom: 80px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .65);
}

.sold-out-text {
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem;
  font-weight: 900;
  color: #ff2020;
  text-transform: uppercase;
  letter-spacing: 10px;
  transform: rotate(-30deg);
  white-space: nowrap;
  border: 6px solid #ff2020;
  padding: 12px 36px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .8);
  box-shadow: 0 0 40px rgba(255, 32, 32, .3);
}

/* ── Mobile ───────────────────────────────────── */
@media (max-width: 480px) {
  body {
    align-items: flex-start;
  }

  .poster {
    border-radius: 0;
    min-height: 100svh;
    box-shadow: none;
  }

  .top-band {
    padding: 12px 16px 10px;
    gap: 8px;
  }

  .tagline-top {
    display: none;
  }

  .restaurant-name {
    font-size: 1.1rem;
  }

  .lang-switcher {
    gap: 6px;
  }

  .lang-link {
    padding: 2px 6px;
    font-size: .58rem;
  }

  .title-block {
    padding: 18px 18px 8px;
  }

  .dish-subtitle {
    font-size: 1.2rem;
  }

  .dish-title {
    font-size: 2.5rem;
  }

  .dish-title-line2 {
    font-size: 1.8rem;
  }

  .dish-desc {
    max-width: 100%;
    font-size: .8rem;
  }

  .photo-wrap img {
    height: 210px;
  }

  .accents {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    padding: 12px 16px;
  }

  .accent-item {
    gap: 5px;
  }

  .accent-icon {
    font-size: 1.5rem;
  }

  .accent-label {
    font-size: .52rem;
    letter-spacing: 0.5px;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 18px 18px;
    gap: 12px;
  }

  .price-block {
    align-items: center;
  }

  .price {
    font-size: 2.6rem;
  }

  .order-btn {
    display: block;
    text-align: center;
    padding: 16px;
    font-size: .85rem;
    letter-spacing: 3px;
  }

  .hr {
    margin: 0 18px;
  }

  .footer {
    padding: 12px 18px 16px;
  }

  .footer-contact {
    font-size: .65rem;
  }

  .countdown-wrap {
    padding: 8px 14px;
  }

  .countdown-label {
    font-size: .6rem;
    letter-spacing: 1px;
  }

  .countdown-display {
    font-size: 1.05rem;
    letter-spacing: 2px;
  }

  .sold-out-text {
    font-size: 3rem;
    letter-spacing: 6px;
    border-width: 4px;
    padding: 10px 20px;
  }

  .sold-out-note {
    bottom: 50px;
    font-size: .62rem;
    letter-spacing: 1px;
    text-align: center;
    padding: 0 16px;
  }

  .dots-br {
    display: none;
  }

  .chiles {
    font-size: 1.6rem;
    opacity: .25;
  }

  .order-page {
    min-height: 100svh;
  }

  .order-content {
    padding: 18px 18px 14px;
  }

  .order-section {
    gap: 12px;
    padding: 14px 0;
  }

  .order-section-icon {
    font-size: 1.4rem;
    min-width: 26px;
  }

  .order-section-title {
    font-size: .95rem;
  }

  .order-phone {
    font-size: 1.5rem;
  }

  .order-zelle {
    font-size: .8rem;
    padding: 5px 10px;
    word-break: break-all;
  }
}
