@import url('./colors_and_type.css');

/* Page layout utilities for the marketing site */
* { box-sizing: border-box; }
html, body, #root { margin: 0; padding: 0; min-height: 100%; }
body { overflow-x: hidden; }

.bb-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.bb-section {
  padding: 120px 0;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}
.bb-section--tight { padding: 80px 0; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Reusable button styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  font: 500 14px var(--font-body);
  border: none;
  cursor: pointer;
  transition: all 180ms var(--ease-smooth);
  white-space: nowrap;
}
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }

.btn-primary {
  background: var(--brand-cream);
  color: var(--brand-black);
  box-shadow: 0 0 20px rgba(232, 223, 201, 0.12);
}
.btn-primary:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(232, 223, 201, 0.22);
}
.btn-gold {
  background: var(--brand-gold);
  color: #0A0A0A;
  font-weight: 600;
}
.btn-gold:hover {
  background: var(--brand-gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(201, 169, 110, 0.32);
}
.btn-ghost {
  background: transparent;
  color: var(--fg-1);
  border: 1px solid var(--border-default);
}
.btn-ghost:hover {
  background: var(--bg-surface-3);
  border-color: var(--border-strong);
}

.bb-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: box-shadow 180ms var(--ease-smooth), transform 180ms var(--ease-smooth);
}
.bb-card:hover {
  box-shadow: var(--glow-gold-strong);
  transform: translateY(-2px);
}
.bb-card--accent {
  box-shadow: var(--glow-gold);
}

.bb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-gold);
}
.bb-eyebrow::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--brand-gold);
}

.bb-section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--fg-1);
  margin: 14px 0 18px;
  max-width: 720px;
}
.bb-section-desc {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 580px;
  margin: 0;
}
.bb-gold { color: var(--brand-gold); }

/* Animated cover-style status dot pulse */
@keyframes bb-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.15); }
}
.bb-dot-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-gold);
  animation: bb-pulse 2s ease-in-out infinite;
}
