/*
Theme Name: Sin-sational Grub
Theme URI: https://sinsationalgrub.com
Author: A1A Marketing & Consulting
Author URI: https://a1amarketingco.com
Description: Bold, flame-kissed comfort food theme for Sin-sational Grub. Dark theme with neon green accents and fire gradients.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sinsational-grub
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
*/

/* === CSS CUSTOM PROPERTIES === */
:root {
  --bg: #0c0a09;
  --bg-card: #1c1917;
  --bg-card-hover: #292524;
  --foreground: #fafaf9;
  --muted: #a8a29e;
  --border: #292524;
  --neon: #4ade80;
  --neon-dim: rgba(74, 222, 128, 0.15);
  --neon-glow: 0 0 20px rgba(74, 222, 128, 0.3), 0 0 40px rgba(74, 222, 128, 0.1);
  --fire-from: #f97316;
  --fire-via: #ef4444;
  --fire-to: #dc2626;
  --gradient-fire: linear-gradient(135deg, var(--fire-from), var(--fire-via), var(--fire-to));
  --shadow-fire: 0 4px 20px rgba(249, 115, 22, 0.3), 0 2px 8px rgba(239, 68, 68, 0.2);
  --shadow-neon: 0 0 15px rgba(74, 222, 128, 0.15), 0 0 30px rgba(74, 222, 128, 0.05);
  --font-display: 'Bebas Neue', cursive;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 1.5rem;
  --max-w: 80rem;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* === UTILITY CLASSES === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.text-neon { color: var(--neon); }
.text-flame { background: var(--gradient-fire); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-muted { color: var(--muted); }
.text-glow-neon { text-shadow: 0 0 20px rgba(74, 222, 128, 0.4), 0 0 40px rgba(74, 222, 128, 0.15); }
.text-glow-fire { text-shadow: 0 0 20px rgba(249, 115, 22, 0.4), 0 0 40px rgba(239, 68, 68, 0.15); }

.font-display { font-family: var(--font-display); }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.15em; }
.tracking-wider { letter-spacing: 0.25em; }
.tracking-widest { letter-spacing: 0.4em; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: scale(1.05); }

.btn-fire {
  background: var(--gradient-fire);
  color: #fff;
  box-shadow: var(--shadow-fire);
}

.btn-neon {
  border: 2px solid var(--neon);
  color: var(--neon);
  box-shadow: var(--shadow-neon);
}
.btn-neon:hover { background: var(--neon-dim); }

/* === HEADER / NAV === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(12, 10, 9, 0.7);
  border-bottom: 1px solid rgba(41, 37, 36, 0.5);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.site-logo img {
  height: 4rem;
  width: auto;
  display: block;
}

@media (max-width: 640px) {
  .site-logo img { height: 3.25rem; }
}

.main-nav { display: flex; align-items: center; gap: 0.5rem; }

.main-nav a {
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(250, 250, 249, 0.8);
  transition: color 0.2s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: -2px;
  height: 1px;
  background: var(--neon);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--neon);
  text-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.header-cta { display: none; }
@media (min-width: 640px) {
  .header-cta { display: inline-flex; }
}

/* Mobile menu */
.mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  color: var(--foreground);
  transition: color 0.2s, border-color 0.2s;
}
.mobile-toggle:hover { color: var(--neon); border-color: var(--neon); }

@media (min-width: 768px) {
  .mobile-toggle { display: none; }
}
@media (max-width: 767px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    gap: 0;
  }
  .main-nav.open a { padding: 1rem; border-radius: 0.5rem; }
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: -8rem;
  left: -8rem;
  width: 31rem;
  height: 31rem;
  border-radius: 9999px;
  background: rgba(74, 222, 128, 0.12);
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -10rem;
  right: -8rem;
  width: 37rem;
  height: 37rem;
  border-radius: 9999px;
  background: rgba(249, 115, 22, 0.12);
  filter: blur(80px);
  pointer-events: none;
}

.hero .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(74, 222, 128, 0.4);
  background: rgba(74, 222, 128, 0.05);
  color: var(--neon);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.9;
}

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.hero-image-glow {
  position: absolute;
  inset: 0;
  background: var(--gradient-fire);
  filter: blur(80px);
  opacity: 0.4;
  border-radius: 9999px;
}

.hero-image img {
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow-neon);
  border: 1px solid rgba(41, 37, 36, 0.5);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* === SECTION COMMON === */
.section {
  position: relative;
  padding: 5rem 1.5rem;
  text-align: center;
}
.section .container {
  text-align: center;
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
}

.section-desc {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.section-center { text-align: center; }

/* === MENU GRID === */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.menu-tab {
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: all 0.2s;
}

.menu-tab:hover,
.menu-tab.active {
  border-color: var(--neon);
  color: var(--neon);
  background: var(--neon-dim);
  box-shadow: var(--shadow-neon);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* === FOOD CARD === */
.food-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.5s;
}
.food-card:hover {
  border-color: var(--neon);
  box-shadow: var(--shadow-neon);
  transform: translateY(-0.5rem);
}

.food-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.food-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.food-card:hover .food-card-image img { transform: scale(1.1); }

.food-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-card) 0%, rgba(28, 25, 23, 0.3) 40%, transparent 100%);
}

.food-card-price {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: var(--gradient-fire);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: var(--shadow-fire);
  z-index: 2;
}

.food-card-body {
  padding: 1.5rem;
}

.food-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.food-card:hover .food-card-body h3 { color: var(--neon); }

.food-card-body p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* === FAVORITES (HOME) === */
.favorites-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .favorites-grid { grid-template-columns: repeat(3, 1fr); }
}

/* === ABOUT SECTION === */
.about-section {
  overflow: hidden;
}

.about-section .section-title { margin-bottom: 2rem; }

.about-text {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 42rem;
  margin: 3.5rem auto 0;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* === LOCATION / CTA SECTION === */
.location-card {
  max-width: 64rem;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-neon);
}
@media (min-width: 640px) {
  .location-card { padding: 3.5rem; }
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
  margin-top: 3rem;
}
@media (min-width: 640px) {
  .location-grid { grid-template-columns: repeat(3, 1fr); }
}

.location-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.location-icon.neon {
  background: var(--neon-dim);
  border: 1px solid var(--neon);
  color: var(--neon);
}
.location-icon.fire {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid var(--fire-from);
  color: var(--fire-from);
}

.location-grid h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.location-grid p {
  font-size: 0.875rem;
  color: var(--muted);
}

/* === DOORDASH / ORDER SECTION === */
.order-section {
  text-align: center;
}

.order-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-doordash {
  background: #ff3008;
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 48, 8, 0.3);
}
.btn-doordash:hover { background: #e62b07; }

.btn-doordash svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* === BOOK US PAGE === */
.booking-form {
  max-width: 42rem;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.15);
}

.form-group textarea { resize: vertical; min-height: 8rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-item:last-child { margin-bottom: 0; }

.contact-item-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--neon-dim);
  border: 1px solid var(--neon);
  color: var(--neon);
}

.contact-item h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.contact-item p {
  font-size: 0.875rem;
  color: var(--muted);
}

/* === FOOTER === */
.site-footer {
  border-top: 1px solid rgba(41, 37, 36, 0.5);
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--neon); }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.footer-contact svg { color: var(--neon); width: 1rem; height: 1rem; flex-shrink: 0; }

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--neon);
  color: var(--neon);
  font-size: 0.875rem;
  box-shadow: var(--shadow-neon);
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--neon-dim); }

.footer-bottom {
  border-top: 1px solid rgba(41, 37, 36, 0.5);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted);
}

/* === ANIMATIONS === */
@keyframes float-up {
  from { opacity: 0; transform: translateY(2rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.animate-float-up { animation: float-up 0.8s ease-out both; }
.animate-float-up-delay { animation: float-up 0.8s ease-out 0.2s both; }
.animate-flicker { animation: flicker 3s ease-in-out infinite; }

/* === DOORDASH BANNER === */
.doordash-banner {
  background: linear-gradient(135deg, #ff3008, #c4260a);
  padding: 1rem 1.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff;
  letter-spacing: 0.05em;
}

.doordash-banner a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* === PAGE HEADER (inner pages) === */
.page-header {
  padding: 10rem 1.5rem 4rem;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40rem;
  height: 20rem;
  background: radial-gradient(ellipse, rgba(74, 222, 128, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* WordPress Core Alignments */
.alignwide { max-width: var(--max-w); margin-left: auto; margin-right: auto; }

/* ===== Hero Fire (real flickering flames + embers) ===== */
.hero .container { position: relative; z-index: 1; }
.hero-glow-1 {
  background: radial-gradient(circle, rgba(74, 222, 128, 0.20) 0%, transparent 70%);
  filter: blur(85px);
  animation: emberGlowA 6s ease-in-out infinite;
}
.hero-glow-2 {
  background: radial-gradient(circle, rgba(249, 115, 22, 0.16) 0%, transparent 70%);
  filter: blur(90px);
  animation: emberGlowB 7.5s ease-in-out infinite;
}
@keyframes emberGlowA { 0%,100%{opacity:.6;transform:translate(0,0) scale(1);} 50%{opacity:.9;transform:translate(10px,-12px) scale(1.05);} }
@keyframes emberGlowB { 0%,100%{opacity:.5;transform:translate(0,0) scale(1);} 50%{opacity:.8;transform:translate(-12px,-16px) scale(1.07);} }

.hero-fire { position: absolute; left: 0; right: 0; bottom: 0; height: 195px; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-fire .flame-row {
  position: absolute; left: -6%; right: -6%; bottom: -10px; height: 100%;
  background: url('assets/images/hero-flames.png') repeat-x center bottom;
  transform-origin: 50% 100%;
  will-change: transform, background-position;
}
.hero-fire .flame-row.back {
  background-size: auto 122%;
  opacity: 0.5;
  filter: blur(1.5px);
  animation: flameSwayB 6s ease-in-out infinite, flameBreath 2.4s ease-in-out infinite alternate;
}
.hero-fire .flame-row.front {
  background-size: auto 100%;
  opacity: 0.96;
  filter: drop-shadow(0 -2px 14px rgba(255, 90, 0, 0.45));
  animation: flameSwayF 4.6s ease-in-out infinite, flameBreath 1.7s ease-in-out infinite alternate;
}
@keyframes flameBreath { 0% { transform: scaleY(1); } 100% { transform: scaleY(1.07); } }
@keyframes flameSwayF { 0%, 100% { background-position-x: 0; } 50% { background-position-x: 18px; } }
@keyframes flameSwayB { 0%, 100% { background-position-x: 0; } 50% { background-position-x: -24px; } }
.hero-fire .ember {
  position: absolute; bottom: 18px;
  width: 6px; height: 6px; border-radius: 50%;
  background: radial-gradient(circle, #fff3c4 0%, #ffae33 45%, #ff5400 78%, rgba(255,84,0,0) 100%);
  opacity: 0;
  animation: emberRise 4s ease-in infinite;
}
.hero-fire .ember:nth-of-type(1) { left: 10%; width: 5px; height: 5px; animation-duration: 4.4s; animation-delay: 0s; }
.hero-fire .ember:nth-of-type(2) { left: 23%; width: 7px; height: 7px; animation-duration: 3.6s; animation-delay: -1.2s; }
.hero-fire .ember:nth-of-type(3) { left: 36%; width: 4px; height: 4px; animation-duration: 5s;   animation-delay: -2.1s; }
.hero-fire .ember:nth-of-type(4) { left: 48%; width: 6px; height: 6px; animation-duration: 4s;   animation-delay: -.6s; }
.hero-fire .ember:nth-of-type(5) { left: 57%; width: 5px; height: 5px; animation-duration: 4.6s; animation-delay: -3s; }
.hero-fire .ember:nth-of-type(6) { left: 69%; width: 7px; height: 7px; animation-duration: 3.8s; animation-delay: -1.8s; }
.hero-fire .ember:nth-of-type(7) { left: 81%; width: 4px; height: 4px; animation-duration: 5.2s; animation-delay: -.3s; }
.hero-fire .ember:nth-of-type(8) { left: 90%; width: 6px; height: 6px; animation-duration: 4.2s; animation-delay: -2.6s; }
@keyframes emberRise {
  0%   { transform: translateY(0) translateX(0) scale(1);      opacity: 0; }
  12%  { opacity: 1; }
  70%  { opacity: .85; }
  100% { transform: translateY(-180px) translateX(12px) scale(.3); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-glow-1, .hero-glow-2, .hero-fire .flame-row, .hero-fire .ember { animation: none; }
  .hero-fire .ember { opacity: .6; }
}

/* ===== Upcoming Events ===== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
  text-align: left;
}
.event-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.event-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon);
  box-shadow: var(--neon-glow);
}
.event-date {
  flex-shrink: 0;
  width: 4.75rem;
  height: 4.75rem;
  border-radius: 0.875rem;
  background: var(--gradient-fire);
  box-shadow: var(--shadow-fire);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  line-height: 1;
}
.event-month { font-size: 0.85rem; letter-spacing: 0.18em; }
.event-day { font-size: 1.75rem; margin-top: 0.15rem; }
.event-info h3 { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.04em; }
.event-meta { color: var(--neon); font-size: 0.8rem; margin-top: 0.35rem; }
.event-info > p { color: var(--muted); font-size: 0.9rem; margin-top: 0.3rem; }
@media (max-width: 480px) {
  .event-card { flex-direction: column; text-align: center; }
}
.alignfull { width: 100vw; margin-left: calc(-50vw + 50%); }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
