/* THEME TOKENS */
:root {
  --page-bg: white;
  --card-bg: linear-gradient(180deg, #6b6b6b, #2b3235);
  --card-shadow: 0 25px 50px rgba(0,0,0,0.45);
  --text: #ffffff;
  --text-inverse: #111111;
  --btn-bg: #ffffff;
  --btn-text: #111111;
  --toggle-bg: #ffffff;
  --toggle-text: #111111;
}

body.dark {
  --page-bg: #3a4244;
  --card-bg: linear-gradient(180deg, #ffffff, #343c3e);
  --card-shadow: 0 18px 35px rgba(0,0,0,0.25);
  --text: #111111;
  --text-inverse: #ffffff;
  --btn-bg: #111111;
  --btn-text: #ffffff;
  --toggle-bg: #3a4244;
  --toggle-text: #111111;
}

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

body {
  margin: 0;
  background: var(--page-bg);
  font-family: system-ui, -apple-system, sans-serif;
  transition: background 0.2s ease;
}

/* CARD */
.card {
  max-width: 460px;
  margin: 40px auto;
  padding: 28px 24px;
  border-radius: 22px;
  background: var(--card-bg);
  box-shadow: var(--card-shadow), inset 0 1px 0 rgba(255,255,255,0.04);
}

.page {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

.page h2, .page p { color: var(--text); }

/* LOGO */
.logo-fire {
  width: 180px;
  margin: 0 auto 20px;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1);
}
.logo-fire:hover { transform: scale(1.2); }
.logo-fire img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* INTERACTIVE LIFT */
.link-btn, .store-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.link-btn:hover, .store-card:hover {
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

/* LINK BUTTONS */
.link-btn {
  display: block;
  margin: 12px 0;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  background: var(--btn-bg);
  color: var(--btn-text);
}

.link-btn.facebook:hover  { background: #1877F2; color: #fff; }
.link-btn.shop:hover      { background: #2ecc71; }
.link-btn.contact:hover   { background: #f5a623; }
.link-btn.terms:hover     { background: grey; color: #fff; }
.link-btn.instagram:hover {
  background: linear-gradient(45deg,#405DE6,#5851DB,#833AB4,#C13584,#E1306C,#FD1D1D,#F56040,#F77737,#FCAF45,#FFDC80);
  color: #fff;
}

/* CATERING BUTTON */
.link-btn.catering {
  display: flex;
  align-items: center;
  padding: 14px 20px;
}
.link-btn.catering img { height: 42px; width: auto; flex-shrink: 0; }
.link-btn.catering span { flex: 1; text-align: center; }
.link-btn.catering::after { content: ""; width: 65px; flex-shrink: 0; }
.link-btn.catering:hover { background: linear-gradient(45deg, #ff9800, #ff5722); color: #fff; }

/* SOCIAL BAR */
.social-bar {
  margin: 24px 0 4px;
  display: flex;
  justify-content: center;
  gap: 22px;
}
.social-bar a {
  color: var(--text);
  font-size: 22px;
  transition: transform 0.15s ease, color 0.15s ease;
}
.social-bar a:hover { transform: scale(1.15); color: #c0392b; }
.social-bar a.facebook:hover { color: #1877F2; }
.social-bar a.instagram:hover {
  background: linear-gradient(45deg,#405DE6,#5851DB,#833AB4,#C13584,#E1306C,#FD1D1D,#F56040,#F77737,#FCAF45,#FFDC80);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* THEME TOGGLE */
#theme-toggle {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  background: var(--toggle-bg);
  color: var(--toggle-text);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  z-index: 999;
}
@media (max-width: 991px) {
  #theme-toggle { top: auto; bottom: 24px; right: 16px; }
}

/* STORE CARD */
.store-card {
  display: block;
  margin: 16px 0;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}
.store-card img { width: 100%; display: block; }
.store-cta {
  background: linear-gradient(90deg, #ff7a18, #ffb347);
  color: #000;
  padding: 12px;
  text-align: center;
}
.store-cta span { display: block; font-size: 1.2em; font-weight: 700; }
.store-cta small { font-size: 0.85em; opacity: 0.85; }