/* styles.css */
:root {
  --coney-orange: #f2673a;
  --coney-green: #719a0a;
  --black: #111111;
  --white: #ffffff;
  --offwhite: #faf8f5;
  --text-muted: #6b7280;
  --border-subtle: rgba(0, 0, 0, 0.06);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--black);
  background: radial-gradient(circle at top, #ffffff 0, #f8fafc 55%, #f2f2f2 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* LAYOUT HELPERS -------------------------------------------------------- */

main {
  display: block;
}

/* HEADER ---------------------------------------------------------------- */

#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  /* ensure it sits above pinned sections */
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-lockup {
  height: 64px;
  width: auto;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* BUTTONS --------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease-out;
  white-space: nowrap;
}

.btn-solid {
  background: var(--coney-orange);
  color: var(--white);
  border-color: var(--coney-orange);
  box-shadow: 0 10px 30px rgba(242, 103, 58, 0.25);
}

.btn-solid:hover {
  background: #e25b32;
  border-color: #e25b32;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: rgba(0, 0, 0, 0.6);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-ghost {
  background: rgba(0, 0, 0, 0.02);
  color: var(--black);
  border-color: rgba(0, 0, 0, 0.08);
}

.btn-ghost:hover {
  background: rgba(0, 0, 0, 0.06);
}

/* HERO ------------------------------------------------------------------ */

#hero {
  position: relative;
  padding: 4.5rem 1.25rem 5rem;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 3.25rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(2.4rem, 3.8vw, 3.3rem);
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-subtitle {
  margin-top: 1.2rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--coney-orange);
}

.hero-body {
  margin-top: 1.3rem;
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 28rem;
  color: var(--text-muted);
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* HERO VISUAL ----------------------------------------------------------- */

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  align-items: center;
}

.hero-logo-orbit {
  position: relative;
  width: min(280px, 70vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 0%, #ffffff 0, #fff7f2 40%, #fefdf7 75%, #f4f4f4 100%);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.2),
    0 0 110px rgba(242, 103, 58, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#hero-morph {
  width: 78%;
  height: auto;
}

.hero-logo-badge {
  position: absolute;
  bottom: 10%;
  right: 7%;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(0, 0, 0, 0.7);
}

.hero-logo-badge img {
  width: 54px;
  height: 54px;
  display: block;
}

.hero-photo-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  width: 100%;
}

.hero-photo-card {
  margin: 0;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.hero-photo-card img {
  width: 100%;
  display: block;
  height: 140px;
  object-fit: cover;
}

.hero-photo-card figcaption {
  padding: 0.5rem 0.7rem 0.7rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

/* HERO SCROLL INDICATOR ------------------------------------------------- */

.hero-scroll-indicator {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 32px;
  background: rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

.scroll-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--coney-orange), var(--coney-green));
  transform: translateY(-100%);
  animation: scrollLine 1.3s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

/* styles.css – ADD THESE STYLES (can be placed near other hero/story styles) */

/* --- HERO TICKET BADGE --- */

.hero-inner {
  position: relative;
}

/* Position the ticket neatly near the hero copy */
.hero-ticket {
  position: absolute;
  top: calc(18% - 100px);
  right: 8vw;
  z-index: 5;
  pointer-events: none;
}

/* Hero ticket contains only the image now */
.ticket-badge {
  pointer-events: auto;
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
  cursor: pointer;
}

.ticket-badge img {
  width: 90px;
  /* adjust size freely */
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.55));
  transform-origin: center;
}

/* --- TICKET DIVIDER ABOVE STORY PANELS (overlay, no layout shift) --- */

.ticket-divider {
  position: absolute;
  top: 10%;
  /* adjust as you like (e.g., 8%, 12%) */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  pointer-events: none;
  /* inner can re-enable */
  z-index: 3;
  /* above photos but below header */
}

.ticket-divider-inner {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 1.75rem;
  padding: 1.4rem 1.8rem;
  border-radius: 18px;
  background: radial-gradient(circle at 10% 0%,
      rgba(242, 103, 58, 0.5),
      rgba(17, 17, 17, 0.95));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75);
}

.ticket-divider-image {
  max-width: 190px;
  height: auto;
  display: block;
}

.ticket-divider-copy {
  color: #fff;
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.ticket-divider-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  opacity: 0.8;
  margin: 0 0 0.35rem;
}

.ticket-divider-title {
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 0 0.25rem;
}

.ticket-divider-subtitle {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

/* --- DRAGGABLE TICKET PEEK OVER STORY PANELS (DESKTOP ONLY) --- */

.ticket-peek {
  position: absolute;
  top: 55%;
  /* vertical position as a percentage of story-panels */
  left: 8vw;
  transform: translateY(-50%);
  /* center around that 55% point */
  z-index: 4;
  pointer-events: none;
}

.ticket-peek-card {
  pointer-events: auto;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  border-radius: 16px;
  background: rgba(17, 17, 17, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8);
  cursor: grab;
}

.ticket-peek-card:active {
  cursor: grabbing;
}

.ticket-peek-image {
  width: 120px;
  max-width: 26vw;
  display: block;
}

.ticket-peek-label {
  display: none;
}

/* --- RESPONSIVE TUNING --- */

@media (max-width: 900px) {
  .hero-ticket {
    right: 5vw;
    bottom: 1.6rem;
    transform: scale(0.9);
    transform-origin: bottom right;
  }

  .ticket-badge-image {
    width: 50px;
  }

  .ticket-badge-cta {
    font-size: 0.8rem;
  }

  .ticket-divider-inner {
    flex-direction: row;
  }

  .ticket-divider-image {
    max-width: 150px;
  }
}

@media (max-width: 700px) {
  .ticket-divider {
    top: 8%;
  }

  .ticket-divider-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ticket-divider-image {
    max-width: 65vw;
  }

  .ticket-peek {
    display: none;
    /* hide draggable overlay on smaller screens */
  }
}

/* STORY PANELS ---------------------------------------------------------- */

#story {
  padding: 0;
}

.panel {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.25rem 1.5rem;
}

.panel-inner {
  max-width: 720px;
  text-align: center;
}

.panel-inner h2 {
  margin: 0 0 0.85rem;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.7rem, 2.4vw, 2.1rem);
}

.panel-inner p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
}

/* Brand panel colors */
.panel-orange {
  background: radial-gradient(circle at top left, #fff7f2 0, #f2673a 70%);
  color: #111111;
}

.panel-dark {
  background: #111827;
  color: #f9fafb;
}

.panel-green {
  background: radial-gradient(circle at top right, #f3fce8 0, #719a0a 75%);
  color: #111111;
}

.panel-white {
  background: #ffffff;
  color: #111111;
}

/* ABOUT ----------------------------------------------------------------- */

#about {
  padding: 4.5rem 1.5rem 4.5rem;
  background: radial-gradient(circle at top, #ffffff 0, #f9fafb 55%, #f3f4f6 100%);
}

.about-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.4fr);
  gap: 3rem;
  align-items: center;
}

.about-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-photo-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 22px 50px rgba(15, 23, 42, 0.24),
    0 0 90px rgba(242, 103, 58, 0.25);
}

.about-photo-main img {
  width: 100%;
  display: block;
  height: auto;
}

.about-photo-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.about-photo-card {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.15);
}

.about-photo-card img {
  width: 100%;
  height: 120px;
  display: block;
  object-fit: cover;
}

.about-photo-card figcaption {
  padding: 0.45rem 0.65rem 0.65rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.about-copy .eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--coney-green);
  margin: 0 0 0.6rem;
}

.about-copy h2 {
  margin: 0 0 0.9rem;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.8rem, 2.4vw, 2.2rem);
}

.about-copy p {
  margin: 0 0 0.9rem;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.about-closing {
  font-weight: 600;
  color: var(--black);
}

.about-actions {
  margin-top: 1.2rem;
}

/* VISIT / CONTACT ------------------------------------------------------- */

#visit {
  padding: 4.5rem 1.5rem 5rem;
  background: radial-gradient(circle at top, #111827 0, #020617 55%, #000000 100%);
  color: #f9fafb;
}

.visit-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
  gap: 3.25rem;
  align-items: center;
}

.visit-copy .eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(248, 250, 252, 0.75);
  margin: 0 0 0.6rem;
}

.visit-copy h2 {
  margin: 0 0 1.2rem;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.9rem, 2.4vw, 2.3rem);
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.visit-item {
  display: flex;
  gap: 0.85rem;
}

.visit-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.visit-text h3 {
  margin: 0 0 0.15rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.visit-text p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(229, 231, 235, 1);
}

.visit-links a {
  color: rgba(248, 250, 252, 0.9);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}

.visit-links a:hover {
  border-color: rgba(248, 250, 252, 0.6);
}

.visit-links span {
  margin: 0 0.3rem;
  color: rgba(148, 163, 184, 1);
}

.visit-note {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(156, 163, 175, 1);
  max-width: 24rem;
}

.visit-map .map-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.8);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(113, 154, 10, 0.4);
  background: #000;
}

.visit-map iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

/* FOOTER ---------------------------------------------------------------- */

.footer {
  background: #000000;
  color: rgba(249, 250, 251, 0.8);
  padding: 1.2rem 1.25rem;
  border-top: 1px solid rgba(31, 41, 55, 1);
}

.footer .container {
  max-width: 1120px;
  margin: 0 auto;
}

.footer p {
  margin: 0;
  font-size: 0.82rem;
  text-align: center;
}

.footer a {
  color: var(--coney-orange);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* CHAR SPLITTING -------------------------------------------------------- */

.char {
  display: inline-block;
  will-change: transform;
}

.char.space {
  width: 0.4em;
  display: inline-block;
}

/* RESPONSIVE ------------------------------------------------------------ */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .hero-visual {
    max-width: 420px;
    margin-inline: auto;
  }

  .about-inner,
  .visit-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .visit-inner {
    gap: 2rem;
  }

  .visit-map iframe {
    height: 260px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding-inline: 1rem;
  }

  #hero {
    padding-top: 3.4rem;
  }

  .hero-scroll-indicator {
    display: none;
  }

  #about,
  #visit {
    padding-inline: 1.25rem;
  }

  .hero-photo-card img {
    height: 120px;
  }

  .about-photo-card img {
    height: 110px;
  }
}

/* NEW HERO – classy & authentic */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 1.25rem 4rem;
  /* top padding accounts for sticky header */
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at 20% 10%,
      #1a0d00 0%,
      #0f0600 40%,
      #000000 100%);
}

.hero-inner {
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.hero-image-reveal {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.hero-main-photo {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.15);
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(113, 154, 10, 0.3), rgba(242, 103, 58, 0.2));
  mix-blend-mode: overlay;
}

.neon-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(242, 103, 58, 0.5), rgba(113, 154, 10, 0.25), transparent 65%);
  opacity: 0;
}

/* Vintage flickering sign */
.hero-sign {
  margin-top: 3rem;
  text-align: center;
  filter: drop-shadow(0 0 30px rgba(242, 103, 58, 0.6));
}

.vintage-sign {
  max-width: 420px;
  width: 100%;
  opacity: 0.96;
}

/* HORIZONTAL STORY SCRUB – OPTION B (uniform cards, auto crop) */
#story-panels {
  position: relative;
  z-index: 1;
  height: 100vh;
  overflow: hidden;
  background: #111;
}

.story-track {
  height: 100%;
  display: flex;
  gap: 2rem;
  padding: 0 8vw;
  align-items: center;
  will-change: transform;
  /* performance hint */
}

/* 🔑 Every card has the same shape */
.story-card {
  flex: 0 0 70vw;
  max-width: 580px;
  aspect-ratio: 3 / 2;
  /* normalize visible aspect */
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Fill the frame and crop as needed */
.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 🔑 AUTO CROPPING HERE */
  transform: translateZ(0);
  /* GPU layer */
  transition: transform 0.6s ease;
}

/* Slight zoom on hover */
.story-card:hover img {
  transform: translateZ(0) scale(1.04);
}

.story-card figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  font-family: "Nunito", sans-serif;
  line-height: 1.2;
}

.story-card figcaption span {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 400;
}

#hero .hero-copy {
  overflow: visible !important;
  /* this is the real fix */
  z-index: 2;
}

#hero .hero-inner {
  overflow: visible;
  /* safety net for the whole grid */
}

/* HERO ACTION BUTTON FIX — ensure visibility on dark hero background */
#hero .hero-actions .btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

#hero .hero-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.75);
}

#hero #hero-title .line {
  color: #fff;
  text-shadow:
    0 0 12px rgba(242, 103, 58, 0.6),
    0 0 32px rgba(242, 103, 58, 0.45),
    0 4px 12px rgba(0, 0, 0, 0.7);
}

/* Stabilize hero title so it doesn't "wobble" as fonts load */
#hero-title {
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  /* explicit weight from your Google Fonts request */
  font-synthesis: none;
  /* don't let the browser fake bold/italic */
}

#hero-title .line {
  display: block;
}

#hero-ticket {
  visibility: hidden;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

/* Subtle text link for PDF menu */
.header-link {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  color: var(--text-muted);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.header-link:hover {
  color: var(--black);
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

/* Call-to-order pill */
.header-call {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding-inline: 1.1rem;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.header-call-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.header-call-phone {
  font-size: 0.9rem;
  font-weight: 700;
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .header-nav {
    width: 100%;
    justify-content: flex-end;
    gap: 0.6rem;
  }

  .header-call {
    flex: 1;
    justify-content: center;
    padding-block: 0.6rem;
  }

  .header-link {
    display: none;
    /* hide PDF link on very small screens if you want */
  }
}

/* Events link with thin-line calendar */
.header-events {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-muted);
}

.header-events:hover {
  color: var(--black);
}

.header-icon-calendar svg {
  width: 18px;
  height: 18px;
  display: block;
  color: var(--coney-orange);
  /* sets currentColor inside the SVG */
}

.ticket-badge img {
  transform-origin: center;
}

.vintage-sign {
  transform-origin: center bottom;
}

/* ------------------------------------------ */
/* BASE FLOATING HOT DOG ANIMATION            */
/* ------------------------------------------ */

.dancing-couple {
  height: 140px;
  filter: drop-shadow(0 0 30px #f2673a) drop-shadow(0 0 60px #719a0a);
  animation: float 6s ease-in-out infinite;
  transform-origin: center bottom;
  transition:
    filter 0.35s ease,
    transform 0.35s ease;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}


/* ============================================================
   MOBILE HERO IMAGE FIX — OVERRIDES ABOVE RULES
   Makes hero image full-width, large, and prevents tiny scaling
   ============================================================ */
@media (max-width: 767px) {

  /* Stack the hero content vertically */
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 1.5rem;
  }

  /* Let the image wrapper expand fully */
  .hero-image-reveal {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    /* Keep reveal effect tidy */
  }

  /* Make the actual hero image large and unshrinkable */
  .hero-main-photo {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
    flex-shrink: 0 !important;
    display: block;
  }

  /* Optional: soften clipping if you have a strong overlay */
  .photo-overlay {
    opacity: 0.35;
    /* tweak or remove */
  }
}