@font-face {
  font-family: 'Bangers';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Bangers-Regular.ttf') format('truetype');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --tf-bg: #170f0a;
  --tf-text: #f2ead9;
  --tf-muted: #b9a58e;
  --tf-crust: #2a1a10;
  --tf-fry-gold: #f0a83c;
  --tf-ketchup: #d84130;
}

body {
  background-color: var(--tf-bg);
  color: var(--tf-text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
}

@media (prefers-reduced-motion: no-preference) {
  .tf-content {
    animation: tf-rise 0.6s ease-out both;
  }
}

@keyframes tf-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Landing ── */
.tf-landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tf-hero {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.tf-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tf-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(23,15,10,0.35) 0%, rgba(23,15,10,0.84) 72%),
    linear-gradient(rgba(23,15,10,0.55), rgba(23,15,10,0.55));
}

.tf-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 48px 24px;
  text-align: center;
}

.tf-icon {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(240,168,60,0.9), 0 12px 48px rgba(0,0,0,0.7);
}

.tf-title {
  font-family: 'Bangers', cursive;
  font-weight: 400;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--tf-fry-gold);
  -webkit-text-stroke: 3px var(--tf-crust);
  paint-order: stroke fill;
  text-shadow: 0 6px 0 var(--tf-ketchup), 0 10px 24px rgba(0,0,0,0.55);
  transform: rotate(-2deg);
  margin-top: 4px;
  text-wrap: balance;
}

.tf-title .tf-amp {
  color: var(--tf-ketchup);
  -webkit-text-stroke: 3px var(--tf-crust);
}

.tf-tagline {
  font-size: 1.05rem;
  color: var(--tf-muted);
  letter-spacing: 0.03em;
}

.tf-nav {
  margin-top: 14px;
}

.tf-coming-soon {
  margin-top: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tf-fry-gold);
  border: 1px solid rgba(240,168,60,0.4);
  border-radius: 40px;
  padding: 10px 28px;
}

.tf-cta {
  display: inline-block;
  text-decoration: none;
  color: var(--tf-bg);
  background: var(--tf-fry-gold);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 10px 30px rgba(240,168,60,0.25);
  transition: background-color 0.22s, color 0.22s, transform 0.22s, box-shadow 0.22s;
}

.tf-cta:hover {
  background: var(--tf-ketchup);
  color: var(--tf-text);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(216,65,48,0.4);
}

.tf-cta:focus-visible {
  outline: 3px solid var(--tf-ketchup);
  outline-offset: 3px;
}

/* ── Responsive ── */
@media (max-width: 620px) {
  .tf-icon { width: 140px; height: 140px; }
  .tf-title { font-size: 3rem; }
  .tf-tagline { font-size: 0.9rem; }
}
