/* 
   NOSAMUKELO PTY LTD: BASE STYLES 
   Font Imports & CSS Variables
*/

@import url('https://fonts.googleapis.com/css2?family=Familjen+Grotesk:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,600;9..144,700;9..144,800&display=swap');

:root {
  /* Brand Colors */
  --color-red: #D9381E;
  --color-yellow: #F2C94C;
  --color-blue: #2D9CDB;
  --color-charcoal: #1A1A1A;
  --color-black: #0d0d0d;
  --color-white: #FFFFFF;
  --color-grey-light: #f4f4f4;

  /* Editorial Redesign Palette (Shared across About & Services) */
  --about-ink: #3C2A1E;
  --about-clay: #A45D39;
  --about-paper: #FDFBFA;
  --about-gold: #D4AF37;
  --brand-dark-brown: #3C2A1E;


  /* Typography Scale (Universal System) */
  --font-heading: 'Fraunces', serif;
  --font-body: 'Familjen Grotesk', sans-serif;
  --font-size-base: clamp(1.05rem, 1vw + 0.9rem, 1.25rem);
  --line-height-base: 1.6;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  /* Borders & Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-pill: 50px;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-charcoal);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Defaults */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sm);
  color: var(--color-white);
}

h1 {
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 700;
  letter-spacing: -2px;
}

h2 {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 700;
}

h3 {
  font-size: 1.75rem;
  color: var(--color-yellow);
  /* Accent color for subheadings */
}

p {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: 1.65;
  color: #555;
  margin-bottom: 2rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

/* Utilities */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}