@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  --color-primary-dark: #1b4332;
  --color-primary: #2d6a4f;
  --color-primary-light: #40916c;
  --color-accent: #f77f00;
  --color-accent-hover: #fcbf49;
  --color-bg-light: #f8f9fa;
  --color-bg-white: #ffffff;
  --color-bg-offwhite: #fffdf7;
  --color-text-main: #212529;
  --color-text-muted: #6c757d;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-speed: 0.3s;
  --border-radius: 12px;
  --border-radius-large: 24px;
  --box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  --box-shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-bg-offwhite);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-speed) ease;
}

ul {
  list-style: none;
}

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

/* Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.py-4 { padding: 4rem 0; }
.py-5 { padding: 6rem 0; }

.section-title {
  font-size: 2.8rem;
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--color-accent);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
