/* ==============================
   Base + background
   ============================== */

:root {
  --glass: rgba(5, 6, 10, 0.68);
  --glass-strong: rgba(5, 6, 10, 0.82);
  --border: rgba(255, 223, 191, 0.2);
  --accent: #e1a86b;
  --accent-soft: rgba(225, 168, 107, 0.18);
  --text-main: #f7f3ee;
  --text-muted: #c2b3a4;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.8);
  --radius-lg: 26px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

/* Fixed background layer for all devices */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: #050608;
  background-image: url("assets-bbq/bbq-bg-web.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Content layer */
body {
  font-family: "Cardo", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", serif;
  color: var(--text-main);
  line-height: 1.6;
  text-align: center;
}

/* ==============================
   Typography
   ============================== */

h1,
h2 {
  font-family: "Cinzel", "Times New Roman", serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.1rem);
}

h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
}

/* body text upgrade */
p {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  font-size: 1.15rem;  /* bigger */
  font-weight: 600;    /* bolder */
}

/* ==============================
   Layout
   ============================== */

.glass {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.75rem 3.5rem;
  background: none;
}

.hero-content {
  padding: 0;
}

.hero-logo img {
  width: 170px;
  max-width: 50vw;
  display: block;
  margin: 0 auto 1.75rem;
}

.tagline {
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  color: #f4e3ce;
  font-weight: 600;
}

.launch-note {
  font-size: 1.15rem;
  color: #c2b3a4;
  font-weight: 600;
}

.section {
  padding: 2.25rem 1.75rem;
  background: transparent;
}

.section-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem 2rem;
}

.section-inner p {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

/* ==============================
   Images
   ============================== */

img {
  border-radius: 18px;
}

.image-wrap {
  margin-top: 1.5rem;
}

.image-wrap img {
  max-width: min(100%, 720px);
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* ==============================
   Socials + Truck
   ============================== */

.truck-wrap {
  margin: 1.75rem 0 1rem;
}

.truck-image {
  max-width: min(100%, 640px);
  display: block;
  margin: 0 auto;
}

.check-us-out {
  margin-top: 1.25rem;
}

.check-label {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f4e3ce;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.social-link img {
  width: 44px;
  height: 44px;
}

/* ==============================
   Mailto Button
   ============================== */

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.95rem 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: radial-gradient(circle at top left, #f1c28a, #c16b2c);
  color: #1a0b04;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  filter: brightness(1.05);
}

/* ==============================
   Footer
   ============================== */

.footer {
  padding: 1.5rem 1.75rem 2.25rem;
  text-align: center;
  font-size: 0.95rem;
  color: #a99b8d;
  background: transparent;
  font-weight: 600;
}

/* ==============================
   Responsive
   ============================== */

@media (max-width: 800px) {
  .page-bg {
    background-image: url("assets-bbq/bbq-bg-mobile.png");
    background-size: cover;
    background-position: center top;
  }

  .hero {
    padding: 2.5rem 1.25rem 3rem;
  }

  .section {
    padding: 2rem 1.25rem;
  }

  .section-inner {
    padding: 1.5rem 1.25rem 2rem;
  }
}