/* =========================================================
   PerQ – Wallet Loyalty Pages
   Page-specific styling ONLY
   Does NOT affect homepage or Enterprise
========================================================= */


/* =========================================================
   1. HERO (IMAGE-BASED)
========================================================= */

.hero.perq-hero {
  position: relative;
  min-height: 90vh;
  width: 100%;

  background-image: url('/images/perqpizzashop.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 120px 20px 100px;
}

/* Dark overlay */
.hero.perq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

/* Ensure content is above overlay */
.hero.perq-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

/* Hero headline */
.hero.perq-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #ffffff;
  margin: 0 auto 25px;
  text-shadow: 0 3px 6px rgba(0,0,0,0.4);
}

/* Hero subhead */
.hero.perq-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 35px;
  line-height: 1.7;
  color: #f1f1f1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.35);
}


/* =========================================================
   2. CONTENT SECTIONS
========================================================= */

.perq-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.perq-section h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--brand-orange);
  margin-bottom: 25px;
}

.perq-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}


/* =========================================================
   3. BULLET LISTS
========================================================= */

.perq-bullets {
  max-width: 700px;
  margin: 40px auto 0;
  padding-left: 20px;
  text-align: left;
}

.perq-bullets li {
  font-size: 1.05rem;
  margin-bottom: 14px;
  line-height: 1.6;
  color: #333;
}


/* =========================================================
   4. GUARANTEE BOX
========================================================= */

.perq-guarantee {
  background: var(--bg-soft);
  color: #fefefe;
  border-radius: 14px;
  padding: 45px 35px;
  margin-top: 70px;
  text-align: center;
}

.perq-guarantee h3 {
  font-size: 1.7rem;
  color: var(--brand-yellow);
  margin-bottom: 20px;
}

.perq-guarantee p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #fefefe;
}


/* =========================================================
   5. CTA
========================================================= */

.perq-section .cta-button {
  font-size: 1.15rem;
  padding: 18px 40px;
  margin-top: 20px;
}


/* =========================================================
   6. RESPONSIVE
========================================================= */

@media (max-width: 768px) {

  .hero.perq-hero {
    min-height: 85vh;
    padding: 100px 20px 80px;
  }

  .hero.perq-hero h1 {
    font-size: 2.1rem;
  }

  .hero.perq-hero p {
    font-size: 1.05rem;
  }

  .perq-section {
    padding: 60px 20px;
  }
}




