/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { min-height: 100%; overflow-x: hidden; }

/* Background: robust on mobile + desktop */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Poppins', Arial, sans-serif;
  padding-top: 80px;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 0;
}
body::before {
  content: "";
  position: fixed;   /* stays in place even on scroll */
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("images/modern-diwali-bg.jpg") center/cover no-repeat;
  transform: translateZ(0);
  will-change: transform;
}

/* Mobile background override */
@media (max-width: 768px) {
  body::before {
    background:
      linear-gradient(rgba(0,0,0,0.38), rgba(0,0,0,0.38)),
      url("images/MobileBG.jpg") center/cover no-repeat;
    position: absolute; /* prevents iOS repaint glitches */
  }
}

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0));
  padding: 20px; z-index: 1000;
  border-bottom: 1px solid rgba(255,204,51,0.6);
}
.header-brand {
  font-size: 1.6rem; font-weight: 700;
  background: linear-gradient(90deg, #ffcc33, #ff6600);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* Layout */
.content {
  flex: 1; position: relative; z-index: 1;
  padding: 20px; max-width: 900px; width: 92%; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}

/* Logos */
.logo-container {
  display: flex; justify-content: center; align-items: center;
  gap: 40px; margin-bottom: 24px; flex-wrap: wrap;
}
.logo { object-fit: contain; transition: transform 0.3s ease; }
.logo:hover { transform: scale(1.05); }
.logo-bellino { max-height: 120px; }
.logo-fw { max-height: 70px; }

/* Headline + subheadline */
.headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  background: linear-gradient(90deg, #ffcc33, #ff6600);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6); margin-bottom: 6px;
}
.subheadline {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: #f1f1f1; opacity: 0.92; line-height: 1.6;
  max-width: 760px; margin-bottom: 16px;
}

/* State buttons */
.state-cta {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin: 8px 0 22px;
}
.pill-link {
  display: inline-block; padding: 10px 16px; border-radius: 999px;
  border: 2px solid #ffcc33;
  background: linear-gradient(135deg, rgba(30,30,30,0.95), rgba(60,0,60,0.9));
  color: #fff; font-weight: 600; text-decoration: none;
  box-shadow: 0 0 6px rgba(255,204,51,0.25);
  transition: transform .2s, box-shadow .2s;
}
.pill-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* Divider */
.divider {
  width: 100%; max-width: 880px;
  border: none; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,204,51,0.6), transparent);
  margin: 10px 0 6px;
}

/* Accordions */
.accordions { width: 100%; max-width: 820px; margin: 10px auto 0; text-align: left; }
.acc {
  background: rgba(0,0,0,0.30);
  border: 1px solid rgba(255,204,51,0.28);
  border-radius: 14px;
  margin: 10px 0; padding: 10px 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.acc:hover {
  border-color: rgba(255,204,51,0.55);
  box-shadow: 0 0 12px rgba(255,204,51,0.15);
}
.acc > summary {
  cursor: pointer; list-style: none; font-weight: 700;
  color: #ffcc33; font-size: 1.05rem;
}
.acc > summary::-webkit-details-marker { display: none; }
.acc > summary::after { content: '＋'; float: right; font-weight: 700; opacity: .9; }
.acc[open] > summary::after { content: '–'; }
.acc p { margin: 10px 0 4px; color: #eaeaea; line-height: 1.65; }
.faq-inner p { margin: 8px 0; }

/* Footer */
.site-footer {
  padding: 36px 20px; text-align: center; background: transparent;
  border-top: 1px solid rgba(255,204,51,0.6); position: relative; z-index: 2;
}
.footer-content { max-width: 900px; margin: 0 auto; padding-top: 12px; }
.footer-brand {
  font-size: 1.5rem; font-weight: 700;
  background: linear-gradient(90deg, #ffcc33, #ff6600);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 5px rgba(0,0,0,0.6); margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.98rem; color: #fff; margin-bottom: 6px; font-style: italic;
}
.footer-copy { font-size: 0.85rem; color: #bbb; }
.footer-copy a { color: #ffcc33; text-decoration: none; }
.footer-copy a:hover { color: #ff6600; }

/* Mobile tweaks */
@media (max-width: 768px) {
  .logo-container { flex-direction: column; gap: 18px; }
  .logo-bellino { max-height: 105px; }
  .logo-fw { max-height: 58px; }
  .headline { font-size: 1.9rem; }
  .subheadline { font-size: 0.98rem; padding: 0 10px; }
}
