/* ─── SELF-HOSTED FONTS ─── */
@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('../fonts/Anton-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('../fonts/Poppins-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: block;
  src: url('../fonts/Poppins-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: block;
  src: url('../fonts/Poppins-SemiBold.woff2') format('woff2');
}

/* ============================================================
   BGD Global Stylesheet
   biggundigital.co.uk
   Shared by: biggundigital-links.html, bgd-card-*.html
   ============================================================ */

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── TOKENS ─── */
:root {
  --red: #dd0000;
  --purple: #7749f8;
  --bg: #000000;
  --glass-bg: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.12);
  --glass-hover: rgba(255,255,255,0.09);
  --text: #ffffff;
  --text-muted: rgba(255,255,255,0.6);
}

/* ─── BASE ─── */
html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 3rem;
  position: relative;
  overflow-x: hidden;
}

/* ─── BACKGROUND GLOW BLOBS ─── */
body::before {
  content: '';
  position: fixed;
  top: -120px;
  left: -80px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(221,0,0,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  bottom: -100px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(119,73,248,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ─── PAGE WRAPPER ─── */
.page {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ─── SECTION LABEL ─── */
.section-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  width: 100%;
  padding: 1.4rem 0 0.6rem;
}

/* ─── LOGO ─── */
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ─── CONTACT CARD ─── */
.biz-card-outer {
  width: 100%;
  padding: 1.5px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--red), var(--purple));
}
.biz-card {
  width: 100%;
  background: #0d0d0d;
  border-radius: 17px;
  padding: 1.25rem 1.25rem 0.75rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.biz-card-top {
  margin-bottom: 1rem;
}
.biz-card-top h2 {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.1;
}
.biz-card-top span {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

/* ─── CONTACT ROWS ─── */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.6rem 0;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: opacity 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.contact-item:last-child { border-bottom: none; }
.contact-item:active { opacity: 0.6; }

.contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  color: #fff;
}
.ci-purple { background: #7749f8; }
.ci-red    { background: #dd0000; }
.ci-green  { background: #119d5b; }
.ci-grey   { background: #4f4f50; }

.contact-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}
.contact-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 2px;
}
.contact-value {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact-arrow {
  font-size: 14px;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ─── SOCIAL ROW ─── */
.social-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
}
.social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0.9rem 0.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s, transform 0.1s;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
.social-btn:active {
  background: var(--glass-hover);
  transform: scale(0.95);
}
.social-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icon svg { width: 22px; height: 22px; fill: currentColor; }
.social-label {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.3px;
  text-align: center;
  line-height: 1.2;
}

/* ─── REVIEW BUTTON ─── */
.review-btn-outer {
  width: 100%;
  padding: 1.5px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red), var(--purple));
  display: block;
  text-decoration: none;
}
.review-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1rem 1.25rem;
  background: #0d0d0d;
  border-radius: 13px;
  color: var(--text);
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  -webkit-tap-highlight-color: transparent;
}
.review-btn-outer:active .review-btn {
  transform: scale(0.98);
  background: #161616;
}
.review-stars {
  display: flex;
  gap: 2px;
  color: #FFD700;
  font-size: 14px;
}

/* ─── FOOTER ─── */
.footer {
  margin-top: 2rem;
  text-align: center;
}
.footer p,
.footer a {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.5px;
  text-decoration: none;
}
.footer a:hover { color: rgba(255,255,255,0.45); }

/* ============================================================
   LINKTREE PAGE — biggundigital-links.html
   ============================================================ */

.links-logo-wrap {
  width: 160px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.4rem;
}
.links-header {
  text-align: center;
  padding: 2rem 0 0.75rem;
  width: 100%;
}

/* Link stack buttons */
.link-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 1.1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s, transform 0.1s;
  -webkit-tap-highlight-color: transparent;
}
.link-btn:active {
  background: var(--glass-hover);
  transform: scale(0.98);
}
.link-btn-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.link-btn-body {
  flex: 1;
  min-width: 0;
}
.link-btn-title {
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1.2;
}
.link-btn-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
}
.link-btn-arrow {
  font-size: 16px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.link-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

/* ============================================================
   BUSINESS CARD PAGES — bgd-card-*.html
   ============================================================ */

/* Header */
.card-header {
  text-align: center;
  padding: 1.25rem 0 0.25rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo on card pages */
.card-logo-wrap {
  width: 110px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

/* Avatar */
.avatar-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 2.5px;
  background: linear-gradient(135deg, var(--red), var(--purple));
  margin: 0 auto 1rem;
  flex-shrink: 0;
}
.avatar-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  display: block;
  background: linear-gradient(to bottom, #eceaf6, #9393a0);
}

/* Name & role */
.profile-name {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.profile-role {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  margin-bottom: 0;
}

/* Add to contacts */
.add-contact-outer {
  width: 100%;
  display: block;
  text-decoration: none;
}
.add-contact-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.9rem 1.25rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  color: var(--text);
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  -webkit-tap-highlight-color: transparent;
}
.add-contact-outer:active .add-contact-btn {
  background: var(--glass-hover);
  transform: scale(0.98);
}
.add-contact-btn i {
  font-size: 16px;
  color: #fff;
}

/* LinkedIn full-width button */
.linkedin-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.9rem 1.25rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  color: var(--text);
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  -webkit-tap-highlight-color: transparent;
}
.linkedin-btn:active {
  background: var(--glass-hover);
  transform: scale(0.98);
}
.linkedin-btn svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  flex-shrink: 0;
}
