/* global.css – shared tokens, base styles, utilities */

:root {
  /* Typography */
  --lp-font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Colours */
  --lp-color-primary: #04AEED;
  --lp-color-accent: #FFC30F;
  --lp-color-bg-dark: #000000;
  --lp-color-text-light: #FFFFFF;

  /* Layout */
  --lp-max-width: 1200px;
  --lp-page-padding-x: 16px;

  /* Breakpoints (reference only) */
  --lp-bp-mobile-max: 767.98px;
  --lp-bp-tablet-min: 768px;
  --lp-bp-desktop-min: 1024px;
}

/* Reset / base */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--lp-font-family);
  background-color: #000; /* fallback */
  color: var(--lp-color-text-light);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout helpers */

.lp-page {
  min-height: 100vh;
  background-color: #000;
}

.lp-container {
  max-width: var(--lp-max-width);
  margin: 0 auto;
  padding-left: var(--lp-page-padding-x);
  padding-right: var(--lp-page-padding-x);
}

/* Button base – reused across sections */

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.lp-btn--primary {
  background-color: var(--lp-color-primary);
  color: var(--lp-color-text-light);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

/* Icon inside buttons */

.lp-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

/* Ensure SVG icons are always visible and sized consistently */
.lp-btn__icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

/* Simple visibility helpers */

@media (max-width: 767.98px) {
  .lp-show-mobile {
    display: block !important;
  }
  .lp-hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .lp-show-mobile {
    display: none !important;
  }
}