/* GLOBAL FIXES */
* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

/* ROOT VARIABLES */
:root {
  --bg-main: #0a0a0c;
  --bg-panel: rgba(255,255,255,0.04);
  --gold: #d4af37;
  --gold-glow: rgba(212,175,55,0.4);
  --text-main: #f4f4f4;
  --text-muted: #a9a9a9;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;

  --shadow-lg: 0 25px 60px rgba(0,0,0,0.55);
}

/* BODY */
body {
  background: radial-gradient(circle at top, #121218, var(--bg-main));
  color: var(--text-main);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.65;
}

/* TYPOGRAPHY */
h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* HERO SECTION (FULL WIDTH FIXED) */
.pp-hero {
  position: relative;

  width: 100vw;
  left: 50%;
  transform: translateX(-50%);

  min-height: 90vh;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.85)),
    url(https://partypolestar.wildapricot.org/resources/Pictures/beach-chair-daylight-861166.jpg);

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
      
/* HERO OVERLAY */
.pp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255,255,255,0.04),
    transparent 60%
  );
}

/* HERO CONTENT */
.pp-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
}

/* CTA BUTTON */
.pp-cta {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 38px;
  background: linear-gradient(135deg, var(--gold), #f1d87a);
  color: #000;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 0 0 40px var(--gold-glow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pp-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px var(--gold-glow);
}

/* CARD STYLE */
.WaGadget {
  background: var(--bg-panel);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  margin: 40px auto;
  max-width: 1200px;
}

/* EVENTS EMPTY STATE */
.WaGadgetUpcomingEvents .noEvents {
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
  font-style: italic;
}

.WaGadgetUpcomingEvents .noEvents::after {
  content: "New experiences launching soon. Stay ready.";
  display: block;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 600;
}

/* BUTTONS */
button,
input[type="submit"] {
  background: linear-gradient(135deg, var(--gold), #f2db85);
  color: #000;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 30px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover,
input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px var(--gold-glow);
}

/* FORM INPUTS */
input,
select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 12px;
  color: var(--text-main);
}

/* NAVIGATION */
.WaGadgetMenuHorizontal ul li a {
  color: var(--text-main);
  font-weight: 500;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.WaGadgetMenuHorizontal ul li a:hover {
  background: rgba(212,175,55,0.15);
}

/* ANIMATION */
.WaGadget,
.pp-hero-content {
  animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .pp-hero {
    min-height: 70vh;
    padding: 20px;
    background-position: center center;
  }

  .pp-hero-content {
    padding: 20px;
  }

  h1 {
    font-size: 2.2rem;
  }
}

/* FULL WIDTH DESKTOP FIX */
@media (min-width: 1024px) {
  body .WaLayoutGrid,
  body .WaLayoutGridRow,
  body .WaLayoutGridCell,
  body .container,
  body .content,
  body .WaContentContainer {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}

/* IMAGE SCALING */
img {
  max-width: 100%;
  height: auto;
}

/* HIDE WILD APRICOT FOOTER */
#idFooterPoweredByWA {
  display: none;
}

.pp-hero-content {
  position: relative;
  z-index: 2;
}

.pp-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
}

.pp-hero-content {
  animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pp-cta {
  box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}

.pp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(212,175,55,0.6);
}

.WaGadgetEvents .boxBody {
  background: #111 !important;
  border-radius: 12px !important;
  padding: 20px !important;
  margin-bottom: 15px !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3) !important;
}

.WaGadgetEvents .eventTitle a {
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #d4af37 !important;
}

.WaGadgetEvents .eventDate {
  font-size: 14px !important;
  color: #aaa !important;
}