/* Fire Pho — global styles */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root {
  --charcoal: #1A1A1A;
  --charcoal-2: #232323;
  --fire-red: #D62828;
  --flame: #F77F00;
  --glow: #FFC93C;
  --cream: #F7EFE0;
  --cream-2: #F1E6D1;
  --walnut: #3E2723;
  --line: rgba(247, 239, 224, 0.12);
  --line-dark: rgba(26, 26, 26, 0.12);

  --fire-gradient: linear-gradient(180deg, #FFC93C 0%, #F77F00 50%, #D62828 100%);
  --fire-gradient-h: linear-gradient(90deg, #FFC93C 0%, #F77F00 50%, #D62828 100%);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--charcoal);
  color: var(--cream);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

.display {
  font-family: 'Anton', 'Bebas Neue', Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 0.92;
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 600;
}

.fire-text {
  background: var(--fire-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  vertical-align: top;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  border-radius: 2px;
  transition: transform 0.18s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--fire-red);
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--fire-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 30px -10px rgba(214, 40, 40, 0.65); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(247, 239, 224, 0.35);
}
.btn-ghost:hover { border-color: var(--glow); color: var(--glow); }

.btn-ghost-dark {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid rgba(26, 26, 26, 0.35);
}
.btn-ghost-dark:hover { border-color: var(--fire-red); color: var(--fire-red); }

/* Layout helpers */
section { position: relative; }
.section-pad { padding: 120px 0; }
@media (max-width: 720px) { .section-pad { padding: 72px 0; } }

.bg-charcoal { background: var(--charcoal); color: var(--cream); }
.bg-cream { background: var(--cream); color: var(--charcoal); }
.bg-walnut { background: var(--walnut); color: var(--cream); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: none; }

/* Steam SVG keyframes */
@keyframes steam-rise {
  0% { transform: translateY(0) scaleX(1); opacity: 0; }
  20% { opacity: 0.7; }
  100% { transform: translateY(-180px) scaleX(1.4); opacity: 0; }
}

.steam-puff {
  animation: steam-rise 4.5s ease-out infinite;
  transform-origin: center bottom;
  filter: blur(8px);
}

/* Marquee */
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

/* Utility */
.divider-fire {
  height: 4px;
  width: 56px;
  background: var(--fire-gradient-h);
  border: 0;
  margin: 0;
}

/* Hide scrollbars on horizontal scrollers */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { scrollbar-width: none; }
