/*
Theme Name: RCC Theme
Theme URI: https://riyadhconcretecutting.com
Author: RCC
Description: Custom theme for القطّاعة - Concrete Cutting and Demolition in Riyadh
Version: 1.0.0
Text Domain: rcc-theme
Domain Path: /languages
*/

:root {
  /* Primary Colors - Orange */
  --color-primary: #f77307;
  --color-primary-hover: #d96406;
  --color-primary-light: #fff3e6;

  /* Secondary Colors - Dark Blue-Grey */
  --color-secondary: #3a435c;
  --color-secondary-dark: #2c3347;
  --color-secondary-muted: #6b7994;
  --color-border: #e2e5ec;

  /* Backgrounds */
  --bg-white: #ffffff;
  --bg-light: #f8f9fc;

  /* Text */
  --text-main: #3a435c;
  --text-muted: #6b7994;

  /* Spacing */
  --container-max: 1200px;
  --gap-sm: 8px;
  --gap-md: 16px;
  --gap-lg: 24px;
  --gap-xl: 32px;
  --gap-2xl: 48px;

  /* Typography */
  --font-main: 'Cairo', 'Tahoma', sans-serif;
  --font-heading: 'Cairo', 'Tahoma', sans-serif;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-main);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-primary-hover);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gap-md);
}

/* Footer */
.site-footer {
  background: #2c3347;
  color: #fff;
  padding: 48px 0 0;
}

.sr-only,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
