/* ============================================================
   PROMO BANNER — Tuesday Opening
   Separate from style.css — edit freely without touching main styles
   ============================================================ */

.promo-banner-section {
  width: 100%;
  background: #F0E8D8;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle gold line top & bottom */
.promo-banner-section::before,
.promo-banner-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C8A646 30%, #FFE8A3 50%, #C8A646 70%, transparent);
}
.promo-banner-section::before { top: 0; }
.promo-banner-section::after  { bottom: 0; }

.promo-banner-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Image container — no cropping, full image always visible */
.promo-banner-img-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(200, 166, 70, 0.25),
    0 8px 40px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(200, 166, 70, 0.08);
  position: relative;
}

/* Subtle inner gold border */
.promo-banner-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(200, 166, 70, 0.3);
  pointer-events: none;
}

.promo-banner-img-wrap img {
  width: 100%;
  height: auto;          /* full image — no crop ever */
  display: block;
  border-radius: 16px;
  transition: transform 0.6s ease;
}

.promo-banner-img-wrap:hover img {
  transform: scale(1.012);
}

/* Reveal animation */
.promo-banner-section .promo-banner-wrap {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.promo-banner-section .promo-banner-wrap.pb-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .promo-banner-section {
    padding: 32px 0;
  }
  .promo-banner-wrap {
    padding: 0 12px;
  }
  .promo-banner-img-wrap {
    border-radius: 10px;
  }
  .promo-banner-img-wrap img {
    border-radius: 10px;
  }
}
