/* The Cheese Club — Main Stylesheet
   All colors are driven by CSS variables set inline from the WordPress Customizer.
*/

:root {
  --bg: #0F0F0F;
  --fg: #FFF6E8;
  --gold: #F4B400;
  --fire: #FF6B00;
  --bronze: #C88A3D;
  --cream: #FFF6E8;
  --card: #181410;
  --border: rgba(244,180,0,0.18);
  --muted: #b5a896;
  --radius: 18px;
  --gradient-fire: linear-gradient(135deg, var(--fire) 0%, var(--gold) 100%);
  --gradient-gold: linear-gradient(180deg, #FFD56B 0%, #C88A3D 100%);
  --shadow-glow: 0 0 60px -10px rgba(255,107,0,0.6);
  --shadow-card: 0 30px 60px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(244,180,0,0.1);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-sans: "Outfit", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255,107,0,0.25), transparent),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(244,180,0,0.12), transparent);
  background-attachment: fixed;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,.font-display { font-family: var(--font-display); letter-spacing: 0.02em; line-height: 1; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-fire { background: var(--gradient-fire); -webkit-background-clip: text; background-clip: text; color: transparent; }
.text-gold { background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.muted { color: var(--muted); }
.glass {
  background: rgba(24,20,16,0.55);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--border);
}

/* ============ NAV ============ */
.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; }
.site-nav-inner {
  margin: 16px auto 0; max-width: 1200px; padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between;
  border-radius: 999px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gradient-fire);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-glow);
  color: #0f0f0f; font-weight: 800;
}
.brand-name { font-family: var(--font-display); font-size: 20px; letter-spacing: .12em; color: var(--cream); }
.brand-logo-img { max-height: 44px; width: auto; }
.site-menu { display: none; gap: 28px; font-size: 14px; font-weight: 500; color: var(--muted); }
.site-menu a:hover { color: var(--gold); }
.nav-cta {
  display: none; gap: 8px; align-items: center;
  background: var(--gradient-fire); color: #0f0f0f;
  font-weight: 700; font-size: 13px; padding: 10px 20px; border-radius: 999px;
  box-shadow: var(--shadow-glow); transition: transform .2s;
  text-transform: uppercase; letter-spacing: .05em;
}
.nav-cta:hover { transform: scale(1.05); }
@media (min-width: 900px) {
  .site-menu, .nav-cta { display: inline-flex; }
}

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 80px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  filter: brightness(0.35) saturate(120%); transform: scale(1.1);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(15,15,15,0.6), rgba(15,15,15,0.4), var(--bg));
}
.hero-glow {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse at center, rgba(255,107,0,0.35) 0%, transparent 60%);
  animation: flicker 2.4s ease-in-out infinite;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
}
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(244,180,0,0.3); background: rgba(24,20,16,0.6);
  padding: 6px 16px; border-radius: 999px;
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--gold);
}
.hero h1 { font-size: clamp(44px, 7vw, 96px); color: var(--cream); margin: 24px 0; }
.hero h1 span { display: block; }
.hero p.lede { font-size: 18px; color: var(--muted); max-width: 520px; margin-bottom: 28px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .08em;
  transition: transform .2s, background .2s; cursor: pointer; border: none;
}
.btn-primary { background: var(--gradient-fire); color: #0f0f0f; box-shadow: var(--shadow-glow); }
.btn-primary:hover { transform: scale(1.05); }
.btn-ghost { background: rgba(24,20,16,0.6); border: 1px solid rgba(244,180,0,0.4); color: var(--cream); }
.btn-ghost:hover { background: rgba(24,20,16,1); }
.btn-outline { border: 1px solid var(--border); color: var(--muted); }
.btn-outline:hover { color: var(--gold); }

.hero-stats { display: flex; flex-wrap: wrap; gap: 36px; margin-top: 36px; color: var(--muted); font-size: 13px; }
.hero-stats .n { font-family: var(--font-display); font-size: 26px; color: var(--cream); }
.hero-stats .l { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }

.hero-image-wrap {
  position: relative; aspect-ratio: 1; max-width: 540px; margin: 0 auto; width: 100%;
}
.hero-image-glow {
  position: absolute; inset: 0; border-radius: 50%;
  background: var(--gradient-fire); filter: blur(60px); opacity: 0.7;
}
.hero-image {
  position: relative; width: 100%; height: 100%;
  border-radius: 50%; overflow: hidden;
  box-shadow: var(--shadow-glow);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; animation: spin-slow 40s linear infinite; }

@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes flicker { 50% { opacity: 1; filter: brightness(1.15); } }
@keyframes float-slow { 50% { transform: translateY(-20px) rotate(6deg); } }
@keyframes rise { from { opacity:0; transform: translateY(40px);} to { opacity:1; transform:none;} }
.animate-rise { animation: rise .8s ease-out both; }

.floating-bits { position: absolute; inset: 0; pointer-events: none; }
.floating-bits span {
  position: absolute; font-size: 38px; opacity: 0.8;
  filter: drop-shadow(0 8px 24px rgba(255,107,0,0.5));
  animation: float-slow 7s ease-in-out infinite;
  display: none;
}
@media (min-width: 768px) { .floating-bits span { display: block; } }

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(24,20,16,0.3); padding: 20px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 48px; white-space: nowrap;
  font-family: var(--font-display); font-size: 22px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted);
  animation: marquee 30s linear infinite;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ SECTIONS ============ */
section.block { padding: 110px 0; position: relative; }
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow-text { font-size: 11px; letter-spacing: .4em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-head h2 { font-size: clamp(36px, 5vw, 60px); color: var(--cream); }

.grid-3 { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 720px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 720px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* Food card */
.food-card {
  position: relative; overflow: hidden; border-radius: 24px;
  border: 1px solid var(--border); background: rgba(24,20,16,0.8);
  box-shadow: var(--shadow-card); transition: transform .5s, border-color .5s, box-shadow .5s;
}
.food-card:hover { transform: translateY(-8px); border-color: rgba(244,180,0,0.5); box-shadow: var(--shadow-glow); }
.food-card .img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.food-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.food-card:hover .img img { transform: scale(1.1); }
.food-card .img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--card), rgba(24,20,16,0.2), transparent);
}
.food-card .tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--gradient-fire); color: #0f0f0f;
  font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; box-shadow: var(--shadow-glow);
}
.food-card .body { padding: 24px; }
.food-card .body .row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 10px; }
.food-card .body h3 { font-family: var(--font-display); font-size: 24px; color: var(--cream); letter-spacing: .04em; }
.food-card .body .price { font-family: var(--font-display); font-size: 20px; color: var(--gold); }
.food-card .body p { color: var(--muted); font-size: 14px; }

/* Deal card */
.deal-card {
  position: relative; overflow: hidden; border-radius: 24px;
  border: 1px solid rgba(244,180,0,0.2); background: rgba(24,20,16,0.7);
  padding: 32px; box-shadow: var(--shadow-card); transition: transform .3s, border-color .3s;
}
.deal-card:hover { transform: translateY(-4px); border-color: rgba(244,180,0,0.6); }
.deal-card::before {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--gradient-fire); opacity: 0.2; filter: blur(40px);
}
.deal-card .save {
  display: inline-block; border: 1px solid rgba(244,180,0,0.4);
  padding: 4px 12px; border-radius: 999px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
}
.deal-card h3 { margin-top: 22px; font-size: 30px; color: var(--cream); }
.deal-card p { margin-top: 10px; color: var(--muted); }
.deal-card .deal-foot { margin-top: 24px; display: flex; align-items: flex-end; justify-content: space-between; }
.deal-card .price { font-family: var(--font-display); font-size: 36px; background: var(--gradient-fire); -webkit-background-clip: text; background-clip: text; color: transparent; }
.deal-card .order { color: var(--gold); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; transition: transform .2s; }
.deal-card .order:hover { transform: translateX(4px); }

/* Review */
.review { padding: 32px; border-radius: 24px; }
.review .stars { color: var(--gold); letter-spacing: 2px; }
.review p { margin-top: 18px; color: var(--cream); font-size: 17px; line-height: 1.6; opacity: .9; }
.review .who { margin-top: 22px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

/* Services */
.service {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 32px; text-align: center; border-radius: 24px;
  border: 1px solid var(--border); background: rgba(24,20,16,0.5);
  transition: border-color .3s, background .3s;
}
.service:hover { border-color: rgba(244,180,0,0.6); background: rgba(24,20,16,1); }
.service .icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(255,107,0,0.2); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  transition: background .3s, color .3s;
}
.service:hover .icon { background: var(--gradient-fire); color: #0f0f0f; }
.service .label { font-family: var(--font-display); font-size: 18px; letter-spacing: .15em; color: var(--cream); }

/* Contact */
.contact-card {
  border-radius: 36px; border: 1px solid rgba(244,180,0,0.2);
  background: rgba(24,20,16,0.7); padding: 40px;
  box-shadow: var(--shadow-card); backdrop-filter: blur(16px);
}
@media (min-width: 768px) { .contact-card { padding: 64px; } }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card h2 { font-size: clamp(36px, 5vw, 60px); color: var(--cream); margin-top: 16px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; margin-top: 20px; }
.info-row .ico {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,107,0,0.15); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.info-row .txt { color: var(--cream); font-size: 14px; line-height: 1.6; opacity: .9; }
.map-wrap { border-radius: 24px; overflow: hidden; border: 1px solid var(--border); min-height: 420px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(40%) contrast(110%); }

/* Footer */
.site-footer {
  position: relative; border-top: 1px solid var(--border);
  background: rgba(24,20,16,0.4); padding: 60px 0 40px;
  overflow: hidden;
}
.site-footer::before {
  content: ""; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: var(--footer-bg-opacity, 0.15);
  background-image: var(--footer-bg-image, none);
  z-index: 0;
}
.site-footer .container { position: relative; z-index: 1; }
.footer-row {
  display: flex; flex-direction: column; gap: 16px; align-items: center;
  font-size: 14px; color: var(--muted);
}
@media (min-width: 720px) { .footer-row { flex-direction: row; justify-content: space-between; } }
.footer-tag { font-family: var(--font-display); letter-spacing: .2em; color: var(--cream); display: flex; gap: 8px; align-items: center; }

/* Floating actions */
.fab-stack { position: fixed; right: 20px; bottom: 20px; z-index: 60; display: flex; flex-direction: column; gap: 12px; }
.fab {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  box-shadow: var(--shadow-glow); transition: transform .2s;
}
.fab:hover { transform: scale(1.1); }
.fab.whatsapp { background: #25D366; }
.fab.call { background: var(--gradient-fire); color: #0f0f0f; }

/* Plus button on cards */
.add-btn {
  position: absolute; bottom: 16px; right: 16px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-gold); color: #0f0f0f;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
  opacity: 0; transition: opacity .3s;
  box-shadow: var(--shadow-glow); border: none; cursor: pointer;
}
.food-card:hover .add-btn { opacity: 1; }
