/* Super basic one-page Netlify site */
html, body {
  margin: 0;
  padding: 0;
  background: #000;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

main { margin: 0; padding: 0; }

.hero-img {
  display: block;
  width: 100%;
  height: auto;
}

/*
  Footer:
  - translucent background
  - overlaps the bottom of the image so the image "bleeds" underneath
*/
footer {
  position: relative;
  z-index: 2;

  /* Pull footer up over the bottom of the flyer image */
  margin-top: clamp(-110px, -8vw, -70px);

  padding: 22px 16px 26px;
  text-align: center;

  /* Translucent glass effect */
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);

  border-top: 1px solid rgba(255,255,255,0.14);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 750;
  font-size: clamp(16px, 3.6vw, 20px);
  letter-spacing: 0.2px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.7);
}

.footer-link:hover { text-decoration: underline; }

.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 10px 14px;
  border-radius: 999px;

  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);

  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(15px, 3.4vw, 18px);

  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.call-btn:hover {
  background: rgba(255,255,255,0.18);
}

.rights {
  margin-top: 2px;
  color: rgba(255,255,255,0.92);
  font-size: clamp(12px, 2.7vw, 14px);
  line-height: 1.35;
  text-shadow: 0 1px 2px rgba(0,0,0,0.7);
}

/* Extra spacing at very bottom so the footer doesn't feel cramped */
body { padding-bottom: env(safe-area-inset-bottom); }
