/* Website kit — local layout helpers. Tokens come from colors_and_type.css. */
@import url("../../colors_and_type.css");

html, body { margin: 0; padding: 0; background: var(--bee-bg); font-family: var(--bee-font-body); color: var(--bee-fg); -webkit-font-smoothing: antialiased; }
* { box-sizing: border-box; }
a { color: inherit; text-decoration: none; }

/* ---------- Layout helpers ---------- */
.bee-shell { width: 100%; max-width: 1440px; margin: 0 auto; min-height: 100vh; background: var(--bee-bg-elevated); position: relative; overflow: hidden; box-shadow: 0 0 0 1px rgba(0,0,0,.04); }
.bee-section { padding: 64px 80px; }
.bee-section.tight { padding: 40px 80px; }
.bee-row { display: flex; align-items: center; gap: 16px; }
.bee-stack { display: flex; flex-direction: column; gap: 12px; }

/* ---------- Promo bar ---------- */
.bee-promo-bar {
  background: var(--bee-gray-800);
  color: var(--bee-white);
  font-family: var(--bee-font-body);
  font-weight: 700;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 12px 16px;
}
.bee-promo-bar .cta {
  border: 1px solid currentColor;
  padding: 2px 10px;
  font-size: 13px;
  cursor: pointer;
}

/* ---------- Top nav ---------- */
.bee-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 80px;
  background: var(--bee-black);
  color: var(--bee-white);
  position: relative;
}
.bee-nav.light { background: var(--bee-white); color: var(--bee-ink); border-bottom: 1px solid var(--bee-border); padding: 18px 80px; }
.bee-nav .logo { display: flex; align-items: center; gap: 10px; font-family: var(--bee-font-body); font-weight: 700; font-size: 18px; letter-spacing: .02em; }
.bee-nav .logo img { height: 32px; width: auto; }
.bee-nav .links { display: flex; gap: 28px; }
.bee-nav .links a { font-family: var(--bee-font-body); font-weight: 600; font-size: 14px; opacity: .9; cursor: pointer; }
.bee-nav .links a.active { color: var(--bee-yellow); }
.bee-nav .links a:hover { opacity: 1; color: var(--bee-yellow); }
.bee-nav .actions { display: flex; gap: 12px; align-items: center; }

/* ---------- Buttons ---------- */
.bee-btn {
  font-family: var(--bee-font-body);
  font-weight: 700; font-size: 12px;
  border: 0; border-radius: 999px;
  cursor: pointer; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, opacity .2s ease;
}
.bee-btn:active { transform: scale(.98); }
.bee-btn.sm { height: 36px; padding: 0 20px; }
.bee-btn.md { height: 44px; padding: 0 20px; }
.bee-btn.lg { height: 52px; padding: 0 24px; }
.bee-btn.yellow { background: linear-gradient(180deg, #FFBB00 0%, #FFD700 100%); color: var(--bee-ink); }
.bee-btn.yellow:hover { background: #FFCD00; box-shadow: var(--bee-shadow-glow); }
.bee-btn.dark   { background: var(--bee-black); color: var(--bee-yellow); }
.bee-btn.dark:hover { opacity: .88; }
.bee-btn.white  { background: var(--bee-white); color: var(--bee-ink); }
.bee-btn.white:hover { background: var(--bee-gray-100); }
.bee-btn.ghost  { background: transparent; color: inherit; border: 1.5px solid var(--bee-gray-300); }
.bee-btn.ghost:hover { background: var(--bee-gray-100); }
.bee-btn[disabled] { opacity: .45; cursor: not-allowed; box-shadow: none; }

/* ---------- Inputs ---------- */
.bee-field { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.bee-field-label { font-family: var(--bee-font-body); font-weight: 700; font-size: 14px; color: #6B6B75; }
.bee-input {
  display: flex; align-items: center; gap: 10px;
  height: 52px; padding: 0 18px;
  background: var(--bee-white);
  border: 1.5px solid var(--bee-border);
  border-radius: 12px;
  font-family: var(--bee-font-body); font-size: 16px; color: var(--bee-ink);
  outline: 0; width: 100%;
}
.bee-input::placeholder { color: #ABABB0; }
.bee-input:focus, .bee-input.active { border-color: var(--bee-yellow); box-shadow: 0 0 0 3px rgba(255,215,0,.20); }
.bee-input.error { border-color: var(--bee-danger); background: #FFF1F2; }
.bee-input-shell { position: relative; }
.bee-input-shell .icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: #71717A; }
.bee-input-shell.icon-left .bee-input { padding-left: 48px; }
.bee-banner-info {
  background: var(--bee-info-tint); color: var(--bee-info);
  padding: 12px 16px; border-radius: 10px;
  font-size: 13px; font-family: var(--bee-font-body);
}

/* ---------- Card / hex chrome ---------- */
.bee-card {
  background: var(--bee-white);
  border-radius: var(--bee-radius-lg);
  border: 1px solid var(--bee-border);
  box-shadow: var(--bee-shadow-md);
  overflow: hidden;
}

.bee-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  font-family: var(--bee-font-body); font-weight: 700; font-size: 11px; line-height: 1;
}
.bee-pill.yellow { background: var(--bee-yellow); color: var(--bee-ink); }
.bee-pill.dark { background: var(--bee-black); color: var(--bee-white); }
.bee-pill.ghost { background: var(--bee-white); color: var(--bee-ink); border: 1.5px solid var(--bee-gray-300); cursor: pointer; }
.bee-pill.ghost.active { background: var(--bee-ink); color: var(--bee-white); border-color: var(--bee-ink); }
.bee-pill.info { background: #E0F1FF; color: #1452B4; }
.bee-pill.success { background: #E6F8EE; color: #1E9E5A; }
.bee-pill.danger { background: #FEE2E2; color: var(--bee-danger); }
.bee-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ---------- Hero ---------- */
.bee-hero {
  position: relative;
  height: 452px;
  background-image: var(--bee-gradient-hive-overlay), url("../../assets/hero-camp-photo.png");
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.bee-hero .hex {
  position: absolute; right: 8%; top: 16%; width: 280px; opacity: .9;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.18));
}
.bee-promo-line {
  font-family: var(--bee-font-display);
  font-weight: 700; font-size: 72px; line-height: 1; text-transform: lowercase;
  color: var(--bee-ink);
}

/* ---------- Step progress ---------- */
.bee-steps {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 80px;
  background: var(--bee-white); border-bottom: 1px solid var(--bee-border);
  font-family: var(--bee-font-ui); font-size: 12px;
}
.bee-step { display: flex; align-items: center; gap: 6px; color: var(--bee-fg-faint); }
.bee-step .dot { width: 22px; height: 22px; border-radius: 50%; background: var(--bee-gray-200); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--bee-fg-faint); font-size: 11px; }
.bee-step.done .dot { background: var(--bee-ink); color: var(--bee-white); }
.bee-step.current .dot { background: var(--bee-yellow); color: var(--bee-ink); }
.bee-step.current { color: var(--bee-ink); font-weight: 700; }
.bee-step.done { color: var(--bee-ink); }
.bee-step-sep { width: 24px; height: 1px; background: var(--bee-gray-200); }
.bee-step-sep.done { background: var(--bee-ink); }

/* ---------- Footer ---------- */
.bee-footer {
  background: var(--bee-black); color: var(--bee-white);
  padding: 56px 80px 36px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px;
}
.bee-footer h4 { font-family: var(--bee-font-body); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--bee-yellow); margin: 0 0 12px; }
.bee-footer a { display: block; font-size: 14px; opacity: .8; padding: 4px 0; cursor: pointer; }
.bee-footer a:hover { opacity: 1; color: var(--bee-yellow); }
.bee-footer .col p { font-size: 13px; opacity: .65; line-height: 1.6; }
.bee-footer .copy { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.08); padding-top: 16px; font-size: 12px; opacity: .55; display: flex; justify-content: space-between; }
