/* =========================
   BASE / DESIGN TOKENS
   ========================= */

:root {
  /* COLORS */
  --bg-primary: #020617;
  --bg-secondary: #020617;
  --bg-card: rgba(255,255,255,0.035);
  --surface: #020617;

  --text-primary: #ffffff;
  --text-body: #d1d5db;
  --text-muted: #9ca3af;

  /* PRIMARY BRAND BLUE */
  --accent-primary: #38bdf8;   /* Unified blue */
  --accent-hover: #0ea5e9;

  --border-soft: rgba(255,255,255,0.08);

  /* TYPOGRAPHY */
  --font-sans: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;

  /* SPACING */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;

  /* RADIUS */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  /* TRANSITIONS */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
}

/* Debugger: Finding the Overflow */
/** {*/
/*  outline: 1px solid red !important;*/
/*  outline-offset: -1px;*/
/*}*/

/* Make the culprit stand out even more */
/**:hover {*/
/*  outline: 2px solid yellow !important;*/
/*}*/
/*Hard block Overflow*/
/*html, body {*/
/*  width: 100%;*/
/*  overflow-x: hidden; /* Blocks horizontal scrolling 
/*  position: relative;*/
/*}*/


html {
  scroll-behavior: smooth;
  /* Optional: Adds space so the header doesn't cover the section title */
  scroll-padding-top: 80px; 
}


/* =========================
   RESET / NORMALIZE
   ========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  background: var(--bg-primary);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
}

/* =========================
   GLOBAL ELEMENTS
   ========================= */

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-hover);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* =========================
   TYPOGRAPHY DEFAULTS
   ========================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lovelo', sans-serif;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.25;
}
h2{
    font-size: 2.2rem;

}
h3 {
    font-weight: 900;
}

p {
  color: var(--text-body);
}

/* =========================
   LAYOUT HELPERS
   ========================= */

/*.container {*/
/*  width: 100%;*/
/*  max-width: 1200px;*/
/*  padding-left: 1.5rem;*/
/*  padding-right: 1.5rem;*/
/*  margin-left: auto;*/
/*  margin-right: auto;*/
/*}*/

/* Screen reader only */
/*.sr-only {*/
/*  margin: -1px; /* Added Margin by CTO */
/*  position: absolute;*/
/*  width: 1px;*/
/*  height: 1px;*/
/*  padding: 0;*/
/*  overflow: hidden;*/
/*  clip: rect(0, 0, 0, 0);*/
/*  white-space: nowrap;*/
/*  border: 0;*/
/*}*/
