/* Generation Plastering - Main Stylesheet */
/* Built by Kadena Web Solutions */

/* CSS Variables */
:root {
  /* Colors */
  --primary-color: #1a1a1a;
  --secondary-color: #f8f9fa;
  --accent-color: #007bff;
  --text-color: #333;
  --text-light: #666;
  --white: #ffffff;
  --black: #000000;
  --gray-light: #f5f5f5;
  --gray-medium: #ccc;
  --gray-dark: #666;
  
  /* Typography */
  --font-primary: 'Proxima Nova Rg', 'Nunito Sans', sans-serif;
  --font-light: 'Proxima Nova Lt', 'Nunito Sans', sans-serif;
  --font-bold: 'Proxima Nova Th', 'Nunito Sans', sans-serif;
  --font-black: 'Proxima Nova Bl', 'Nunito Sans', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  
  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 32px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

/* Font declarations are handled in style.css to avoid duplication */

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  margin: 0;
  padding: 0;
}

/* Utility Classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* All styles are now included in the individual CSS files */
/* This file serves as the main entry point with CSS variables */