/* =====================================================================
   All Star Entertainment — index.css
   Homepage-only styles. Shared styles live in main.css.
   ===================================================================== */

/* ---------------------------------------------------------------------
   HERO
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(105deg, rgba(20,21,26,.92) 0%, rgba(20,21,26,.55) 45%, rgba(20,21,26,.25) 100%),
    var(--bg) center/cover no-repeat;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--gold);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr minmax(0, 520px);
  gap: 2rem;
  width: 100%;
  padding-block: clamp(40px, 8vw, 96px);
}
.hero__stat {
  align-self: center;
  color: var(--paper);
  grid-column: 1;
  display: flex;
  flex-direction: column;
}

.hero__stat b {
  font-family: var(--font-heading);
  font-size: clamp(3.4rem, 8vw, 5.6rem);
  color: var(--gold);
  display: block;
  line-height: .9;
  white-space: nowrap;
}

.hero__stat span {
  color: var(--paper);
  font-size: 1rem;
  letter-spacing: .02em;
  margin-top: .5rem;
}

.hero__stat-sep {
  display: block;
  width: 2rem;
  height: 1px;
  background: rgba(255,255,255,.2);
  margin-top: 1.6rem;
  margin-bottom: .4rem;
}

.hero__stat .hero__stat-stars {
  color: var(--gold);
  letter-spacing: .06em;
}

.hero__logo {
  width: 100%;
  max-width: 820px;
  height: auto;
  object-fit: contain;
  display: block;
  transform: scale(1)
}

.hero__card {
  grid-column: 2;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  position: relative;
  text-align: center;
  overflow: hidden;

  /* "Liquid glass" — translucent panel + blur of whatever sits behind it */
  background: linear-gradient(155deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 40%, rgba(255,255,255,.01) 100%);
  -webkit-backdrop-filter: blur(10px) saturate(80%);
  backdrop-filter: blur(10px) saturate(80%);

  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255,255,255,.35),   /* top edge catch-light */
    inset 0 0 0 1px rgba(255,255,255,.06); /* faint inner rim */
}

/* Soft sheen across the top — sells the "glass catching light" effect */
.hero__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(165deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 32%);
  mix-blend-mode: overlay;
}
.hero__card > * { position: relative; z-index: 1; }
.hero__card .bulbs { margin-bottom: 1.4rem; }
.hero__tag {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.08;
  color: var(--paper);

}
.hero__body { color: var(--paper); margin: 1.1rem 0 1.6rem; text-align: center; text-indent: 1.5em;}

/* ---- Hero mobile ---- */
@media (max-width: 860px) {
  .hero {
    min-height: auto;
    /* Darken more on mobile so card is still legible */
    background: linear-gradient(180deg, rgba(20,21,26,.97) 0%, rgba(20,21,26,.80) 100%), var(--bg) center/cover no-repeat;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    padding-block: clamp(32px, 6vw, 64px);
    gap: 1.6rem;
  }
  .hero__card { grid-column: 1; }
  .hero__stat {
    order: 2;
    max-width: 100%;
  }
  .hero__logo {
    width: 100%;
    max-width: 480px;
  }
}

@media (max-width: 480px) {
  .hero__stat {
    flex-direction: column;
    align-items: flex-start;
    gap: .6rem;
  }
  .hero__logo { max-width: 380px; }
  .hero__tag { font-size: clamp(1.7rem, 5.5vw, 1.8rem); }
  .hero__body { font-size: .93rem; }
  .hero__card { padding: 1.3rem; }
}

/* ---------------------------------------------------------------------
   LOCAL EVENTS
   --------------------------------------------------------------------- */
.events__head { max-width: 70ch; }
.events__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.event-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1rem 1.6rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: .85rem;
}
.event-card__media {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  border: 3px solid var(--gold);
  overflow: hidden;
  background: var(--surface-2);
}
.event-card__media img { width: 100%; height: 100%; object-fit: cover; }
.event-card__name { font-size: 2rem; color: var(--paper); }
.event-card__weekly { font-family: var(--font-label); font-weight: 700; letter-spacing: .02em; text-decoration: underline; color: var(--red); font-size: 1.1rem; }
.event-card__note { color: var(--paper-dim); font-size: .95rem; margin-bottom: .3rem; }
.event-card .btn { align-self: center; margin-top: auto; }

.events__cta {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  text-align: center;
}
.events__cta p { font-size: 1.1rem; color: var(--paper); }

@media (max-width: 760px) {
  .events__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .events__cta { flex-direction: column; gap: .8rem; }
  .events__cta .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .events__grid { max-width: 100%; }
}

/* ---------------------------------------------------------------------
   SERVICES — "How We Bring Life to the Party"
   list (left)  +  one large image (right)
   --------------------------------------------------------------------- */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
/* Grouped services wrapper replaces the old flat list */
.services__groups {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.service-group {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .85rem 1rem 1rem;
}

.service-group__label {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .68rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: .65rem;
  padding-bottom: .55rem;
  border-bottom: 1px solid var(--line);
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--paper);
  font-weight: 500;
  font-size: .95rem;
}
.service-item:last-child { border-bottom: none; padding-bottom: 0; }

.service-item__icon {
  flex: none;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--gold);
}
.service-item__icon svg { width: 20px; height: 20px; }

.services__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 460px;
  background: var(--surface-2);
  box-shadow: var(--shadow);
  order: -1;
}
.services__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.services__media::after {
  content: "";
  position: absolute;
  left: 14px; bottom: 14px;
  width: 54px; height: 54px;
  border-left: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  border-bottom-left-radius: 10px;
}
.services__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

@media (max-width: 880px) {
  .services__media { min-height: 260px; }
  .services__cta .btn { flex: 1; justify-content: center; min-width: 140px; }
}
@media (max-width: 540px) {
  .service-group { padding: .75rem .85rem .85rem; }
  .services__cta { flex-direction: column; }
  .services__cta .btn { width: 100%; }
}

/* ---------------------------------------------------------------------
   WHY OUR GUESTS KEEP CHOOSING US — white cards
   --------------------------------------------------------------------- */
.why { background: var(--surface); border-block: 1px solid var(--line); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.1rem, 2.4vw, 1.6rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.why-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}
.why-card__media { aspect-ratio: 4 / 3; background: var(--surface-2); overflow: hidden; }
.why-card__media img { width: 100%; height: 100%; object-fit: cover; }
.why-card__body { padding: 1.2rem 1.2rem 1.4rem; }
.why-card__title { font-size: 1.15rem; color: var(--black); line-height: 1.15; text-align: center;}
.why-card__text { color: var(--card-dim); margin-top: .45rem; font-size: .93rem; }
.why__cta { display: flex; justify-content: center; margin-top: clamp(2rem, 4vw, 3rem); }

@media (max-width: 960px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) {
  .why__grid { grid-template-columns: 1fr; }
  .why-card { flex-direction: column; }
  .why-card__media { aspect-ratio: 4 / 3; flex-shrink: 0;}
  .why-card__body { padding: .9rem 1rem; }
  .why-card__title { font-size: 1rem; }
}
@media (max-width: 360px) {
  .why-card { flex-direction: column; }
  .why-card__media { aspect-ratio: 4/3; width: 100%; }
}

/* ---------------------------------------------------------------------
   SOCIAL PROOF
   --------------------------------------------------------------------- */
.proof__head { text-align: center; display: grid; justify-items: center; }
.proof__head .section-title, .proof__head .section-sub { max-width: none; }

.proof__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.6rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.2rem;
  text-align: center;
    box-shadow: 0 10px 24px -14px rgba(252, 204, 71,.6);
}
.stat__logo { display: flex; justify-content: center; margin-bottom: .9rem; }
.stat__logo svg { width: 48px; height: 48px; }
.stat__score { font-family: var(--font-heading); font-size: 2.6rem; color: var(--paper); line-height: 1; -webkit-text-stroke: 1px rgba(0,0,0,.15); text-shadow: 0 2px 4px rgba(0,0,0,.25); }
.stat__stars { color: var(--paper); letter-spacing: .15em; margin: .5rem 0 .35rem; font-size: 1.05rem; border: 1px solid rgba(255,255,255,1); border-radius: var(--pill); padding: .25rem .6rem; display: inline-block;-webkit-text-stroke: 1px rgba(0,0,0,.15); text-shadow: 0 2px 4px rgba(0,0,0,.25); }
.stat__src { color: var(--paper); font-size: .92rem;  }
.stat__src b { color: var(--paper); -webkit-text-stroke: 1px rgba(0,0,0,.15); text-shadow: 0 2px 4px rgba(0,0,0,.15); }

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.8rem, 2vw, 1.2rem);
  margin-top: clamp(1.4rem, 3vw, 2rem);
}
.testimonials .testimonial:nth-child(1) { order: 3; }
.testimonials .testimonial:nth-child(2) { order: 2; }
.testimonials .testimonial:nth-child(3) { order: 1; }
.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  display: grid;
  gap: .5rem;
}
.testimonial__stars { color: var(--gold); letter-spacing: .15em; font-size: .85rem; }
.testimonial__quote {
  color: var(--paper);
  font-size: .9rem;
  line-height: 1.45;
}
.testimonial__name {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: .85rem;
  color: var(--paper);
}
.testimonial__source { color: var(--paper-dim); font-size: .78rem; }

.proof__awards-h {
  text-align: center;
  margin-top: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--paper-dim);
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
}
.awards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.6rem);
  margin-top: 1.4rem;
}
.award {
  padding: 1.1rem;
  cursor: pointer;
  display: grid;
  justify-items: center;
  gap: .7rem;
  transition: transform .18s ease, border-color .18s ease;
  position: relative;
}
.award:hover { transform: translateY(-3px); border-color: var(--gold); }
.award__media {
  aspect-ratio: 1;
  transform: scale(0.85);
  width: 100%;
  display: grid;
  place-items: center;
  border-radius: 10px;
  overflow: hidden;
}
.award__media img { width: 100%; height: 100%;  }
.award__cap { font-size: .8rem; color: var(--paper-dim); text-align: center; line-height: 1.3; }
.award__hint {
  font-family: var(--font-label);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .35em;
}
.award__hint-mobile { display: none; }
@media (hover: none) {
  .award__hint-desktop { display: none; }
  .award__hint-mobile { display: inline; }
}
.proof__cta { display: flex; justify-content: center; margin-top: clamp(2rem, 4vw, 3rem); }

@media (max-width: 820px) {
  .proof__stats { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .testimonials { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .awards { grid-template-columns: repeat(2, 1fr); }
  .awards .award:last-child { grid-column: 1 / -1; justify-self: center; width: 50%; }
}
@media (max-width: 480px) {
  .proof__stats { max-width: 100%; }
  .testimonials { max-width: 100%; }
  .awards { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
  .award { padding: .8rem; }
  .award__cap { font-size: .74rem; }
  .proof__cta { width: 100%; }
  .proof__cta .btn { width: 100%; justify-content: center; }
}

@media (max-width: 820px) {
  .testimonials .testimonial:nth-child(1) { order: 1; }
  .testimonials .testimonial:nth-child(2) { order: 2; }
  .testimonials .testimonial:nth-child(3) { order: 3; }
}

/* ---------------------------------------------------------------------
   PRICING
   --------------------------------------------------------------------- */
.pricing { background: var(--surface); border-block: 1px solid var(--line); }
.pricing__head { text-align: center; display: grid; justify-items: center; }
.pricing__head .section-title { max-width: none; }

.pricing__discount {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.4rem auto 0;
  max-width: 720px;
  color: var(--paper);
  flex-wrap: wrap;
  text-align: center;
}
.pricing__discount .discount-badge { width: 64px; height: 64px; flex-shrink: 0; }

/* Comparison table — scrolls horizontally on small screens */
.pricing__table-wrap {
  margin-top: clamp(2rem, 4vw, 3rem);
  overflow-x: auto;
  border-radius: var(--radius);
  -webkit-overflow-scrolling: touch;
}
.ptable {
  width: 100%;
  min-width: 880px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg);
}
.ptable th, .ptable td {
  padding: .85rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.ptable thead th { vertical-align: top; }

/* sticky feature column */
.ptable .feat {
  text-align: left;
  position: sticky;
  left: 0;
  z-index: 2;
  background: var(--surface-2);
  color: var(--paper);
  font-weight: 600;
  min-width: 220px;
}
.ptable thead .feat { background: var(--surface-2); }

.pkg-name { font-family: var(--font-heading); font-size: 1.25rem; color: var(--paper); }
.pkg-price { font-family: var(--font-heading); font-size: 1.9rem; color: var(--gold); line-height: 1; margin: .25rem 0; }
.pkg-meta { color: var(--paper-dim); font-size: .82rem; line-height: 1.35; }
.pkg-meta b { color: var(--paper);}
.ptable thead th .btn { margin-top: .8rem; padding: .6em 1.2em; font-size: .82rem; }

.yes { color: var(--gold); font-weight: 700; font-size: 1.15rem; }
.no  { color: var(--paper-dim); }
.val { color: var(--paper); font-weight: 600; font-size: .92rem; }
.addon-tag {
  display: block;
  font-family: var(--font-label);
  font-size: .64rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--paper-dim);
  margin-top: .15rem;
}

/* Zebra striping for readability */
.ptable tbody tr:nth-child(even) td:not(.pop),
.ptable tbody tr:nth-child(even) th:not(.pop) { background: rgba(255,255,255,.025); }

/* Highlighted "Most Popular" column = The Super Star */
.ptable .pop { background: rgba(252,204,71,.07); }
.ptable thead th.pop { position: relative; }
.pop-badge {
  display: inline-block;
  background: var(--red);
  color: var(--paper);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3em .8em;
  border-radius: var(--pill);
  margin-bottom: .5rem;
}
.ptable th.pop { border-top: 3px solid var(--gold); }
.ptable td.pop:last-child {} /* no-op, keeps specificity tidy */

.pricing__addons {
  margin-top: 1.6rem;
  color: var(--paper-dim);
  font-size: .92rem;
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
  line-height: 1.6;
}
.pricing__addons b { color: var(--paper); }

/* Mobile card grid — hidden on desktop */
.pricing__cards { display: none; }

/* Pricing mobile: swap table for card grid */
@media (max-width: 768px) {
  .pricing__table-wrap { display: none; }
  .pricing__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: clamp(1.6rem, 4vw, 2.4rem);
  }
  .pkg-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    text-align: center;
  }
  .pkg-card--pop {
    border-color: var(--gold);
    border-width: 2px;
    background: rgba(252,204,71,.04);
    position: relative;
  }
  .pkg-card--pop .pop-badge {
    display: inline-block;
    margin-bottom: .1rem;
  }
  .pkg-card:not(.pkg-card--pop) .pop-badge { display: none; }
  .pkg-card__name {
    font-family: var(--font-heading);
    font-size: 2.05rem;
    color: var(--paper);
    line-height: 1.1;
  }
  .pkg-card__price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    line-height: 1;
  }
  .pkg-card__meta {
    font-size: 1rem;
    color: var(--paper-dim);
    line-height: 1.35;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--line);
  }
  .pkg-card__meta b { color: var(--paper); }
  .pkg-card__list {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    flex: 1;
    margin-bottom: .4rem;
  }
  .pkg-card__item {
    font-size: 1rem;
    line-height: 1.35;
    display: flex;
    align-items: flex-start;
    gap: .45rem;
    color: var(--paper-dim);
  }
  .pkg-card__item::before {
    content: "✕";
    font-size: .7rem;
    flex-shrink: 0;
    margin-top: .1rem;
  }
  .pkg-card__item--yes { color: var(--paper); }
  .pkg-card__item--yes::before { content: "✓"; color: var(--gold); font-weight: 700; }
  .pkg-card__item--addon { color: var(--paper-dim); }
  .pkg-card__item--addon::before { content: "+"; color: var(--paper-dim); font-weight: 700; }
  .pkg-card .addon-tag { font-size: .6rem; }
  .pkg-card .btn { width: 100%; justify-content: center; font-size: .78rem; padding: .7em 1em; margin-top: auto; }
  .pricing__discount { flex-direction: column; align-items: center; gap: .6rem; }
  .pricing__discount .discount-badge { width: 52px; height: 52px; }
  .pricing__addons { font-size: .85rem; }
}

/* --------------------------------------------------------------------- */

/* ---------------------------------------------------------------------
   FINAL CTA
   --------------------------------------------------------------------- */
.final {
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(252,204,71,.10), transparent 62%),
    var(--bg);
}
.final__title {
  font-size: clamp(1.8rem, 5.5vw, 3.8rem);
  max-width: 18ch;
  margin: 0 auto 2rem;
  color: var(--paper);
  line-height: 1.08;
}
.final .bulbs { max-width: 260px; margin: 0 auto 2.2rem; }

@media (max-width: 480px) {
  .final__title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .final .btn--lg { width: 100%; justify-content: center; }
}