/* =========================
   HERO (Centered Container)
========================= */

.hero {
  max-width: 1600px;
  margin: 12rem auto var(--space-lg);
  display: grid;
  grid-template-columns: 2fr 3fr;
  background: var(--gray-bg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  text-align: center;
}

.hero-left a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-text);
  order: -1;
}

.hero-left img {
  max-width: 160px;
}

.hero-right img {
  margin: 0 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   Bi-Weekly Special (Clean)
========================= */

.special-feature,
.special-feature * {
  box-sizing: border-box;
}

.special-feature {
  margin: var(--space-lg) auto;
  position: relative;
  background: var(--page-bg);
  height: 100%;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* IMAGE WRAP */

.special-image-wrap {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(-8rem, -6rem, -4rem);
}

/* IMAGE */

.special-image {
  width: clamp(300px, 35vw, 600px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid var(--border-gold);
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(0.92) rotate(0deg);
  transform-origin: center;
  will-change: transform;
}

/* CARD */

.special-card {
  width: 70%;
  margin-bottom: 60px;
  max-width: 1400px;
  background: var(--page-bg);
  border: 3px solid var(--gray-bg);
  padding:
    clamp(6rem, 12vw, 9rem)
    clamp(1.5rem, 4vw, 3rem)
    clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  box-shadow:
    0 0 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.special-feature.is-active .special-card {
  opacity: 1;
  transform: translateY(0);
}

/* TEXT */

.special-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--border-gold);
  margin-bottom: 0.75rem;
}

.special-title {
  font-size: clamp(1.5rem, 5vw, 2.3rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
  position: relative;
}

.special-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--border-gold);
  margin: 1.25rem auto 0;
  opacity: 0.85;
}

.special-description {
  font-size: clamp(0.95rem, 4vw, 1.5rem);
  color: var(--white);
  line-height: 1.65;
  margin: 0 auto;
  max-width: 100ch;
}

/* =========================
   RESERVATIONS
========================= */

.resy-cta {
  max-width: 1500px;
  margin: 4rem auto 4rem auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
}

.resy-image img {
  margin: 0 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resy-content {
  padding: var(--space-md);
  gap: var(--space-lg);
}

.resy-content h2 {
  font-size: 2.2rem;
  color: var(--accent-red);
}

/* =========================
   TO-GO
========================= */

.toast-cta {
  position: relative;
  height: 25vh;
  margin: 4rem auto 4rem auto;
  max-width: 100%;
  background: url('../../assets/ordering.webp') center/cover no-repeat;
}

.toast-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  text-align: center;
  gap: var(--space-sm);
}

.toast-overlay h2 {
  font-size: 2rem;
  letter-spacing: 2px;
}
/* =========================
   POPUP
========================= */

#event-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none; 
  justify-content: center;
  align-items: center;
  z-index: 4000;
}

.popup-inner { 
  position: absolute;
  top: 20px;
  max-width:39vw;
}

#popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width:20px;
  height:20px;
}
/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .hero {
    grid-template-columns: 1fr;
    margin: 4rem auto var(--space-lg);
  }

  .hero-right img {
     margin: auto;
     width: 100%;
     object-fit: cover;
  }

  .resy-cta {
    grid-template-columns: 1fr;
  }

  .resy-image img {
     margin: auto;
     width: 80%;
     object-fit: cover;
  }
  .popup-inner {
    max-width: 90vw;
  }
}
