/* Generated by AI Site Generator */
/* Theme: Business Website-v1 */

:root {
  --color-primary: #2598eb;
  --color-secondary: #3b98f6;
  --color-accent: #f5770b;
  --color-background: #F8FAFC;
  --color-surface: #FFFFFF;
  --color-text: #111827;
  --color-text-muted: #6B7280;
  --color-border: #E5E7EB;
  --color-error: #DC3545;
  --color-success: #28A745;
  --font-body: Open Sans, system-ui, sans-serif;
  --font-heading: Libre Baskerville, system-ui, sans-serif;
  --font-size-base: 16px;
  --line-height: 1.6;
  --spacing-unit: 4px;
  --container-max-width: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --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 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: var(--font-size-base, 16px); scroll-behavior: smooth; }
body {
  font-family: var(--font-body, 'Inter', system-ui, sans-serif);
  line-height: var(--line-height, 1.6);
  color: var(--color-text, #111827);
  background: var(--color-background, #FFFFFF);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Typography Scale */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--color-text); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
p { margin-bottom: 1rem; }

/* Layout */
.container { max-width: var(--container-max-width, 1200px); margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 800px; }
.container--full { max-width: 100%; padding: 0; }

/* Section base */
.section { padding: 80px 20px; }
.section--alt { background: var(--color-background); }

/* Grid system */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Flex utilities */
.flex { display: flex; gap: 16px; }
.flex--wrap { flex-wrap: wrap; }
.flex--center { align-items: center; justify-content: center; }
.flex--between { justify-content: space-between; }
.flex--column { flex-direction: column; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border: none; border-radius: var(--radius-md, 8px);
  font-family: inherit; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s ease;
  text-decoration: none;
}
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { filter: brightness(0.85); transform: translateY(-1px); text-decoration: none; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.btn--secondary { background: var(--color-surface); color: var(--color-text); border: 1px solid var(--color-border); }
.btn--secondary:hover { background: var(--color-border); }

/* Cards */
.card {
  background: var(--color-surface); border-radius: var(--radius-lg, 16px);
  padding: 24px; box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* Hero */
.hero {
  min-height: 80vh; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
}
.hero__content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.hero h1 { margin-bottom: 1rem; }
.hero p { font-size: 1.25rem; color: var(--color-text-muted); margin-bottom: 2rem; }
.hero--overlay::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
}
.hero--light { color: #fff; }
.hero--light p { color: rgba(255,255,255,0.8); }

/* Navigation */
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.nav__links { display: flex; gap: 24px; list-style: none; }
.nav__links a { color: var(--color-text); font-weight: 500; transition: color 0.2s; }
.nav__links a:hover { color: var(--color-primary); text-decoration: none; }
.nav__logo { font-size: 1.5rem; font-weight: 700; font-family: var(--font-heading); }
.nav__toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* Header */
header { background: var(--color-surface); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 100; }

/* Footer */
footer { background: var(--color-text); color: rgba(255,255,255,0.7); padding: 60px 20px 40px; }
footer h3, footer h4 { color: #fff; margin-bottom: 16px; }
footer a { color: rgba(255,255,255,0.7); }
footer a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 20px; text-align: center; }

/* Section-specific */
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { margin-bottom: 16px; }
.section-title p { color: var(--color-text-muted); max-width: 600px; margin: 0 auto; }

/* Responsive */
@media (max-width: 768px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  [style*="display:grid"] { grid-template-columns: 1fr !important; }
  [style*="display: grid"] { grid-template-columns: 1fr !important; }
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__links--open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-surface); padding: 20px; box-shadow: var(--shadow-md); }
  .hero { min-height: 60vh; padding: 40px 16px; }
  .section { padding: 40px 16px; }
  footer .grid { grid-template-columns: 1fr !important; }
  .about-grid { grid-template-columns: 1fr !important; }
  .contact-grid { grid-template-columns: 1fr !important; }
  img { max-width: 100%; height: auto; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
}
