/* Sigalmark Brand Style Guide Colors & Typography */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@600;700;800&family=Raleway:wght@400;500;600&display=swap');

:root {
  /* Main Colors */
  --color-army-green: #4B5320;
  --color-drab-olive: #6B8E23;

  /* Accent Colors */
  --color-burnt-orange: #CC5500;
  --color-pumpkin: #FF7518;
  --color-rust: #B7410E;

  /* Neutral Colors */
  --color-khaki: #F0E68C;
  --color-soft-cream: #F7F3E9;
  --color-warm-beige: #D6C9B4;

  /* Base Colors */
  --color-black: #1A1A1A;
  --color-white: #FFFFFF;
  --color-gray: #666666;
  --color-light-gray: #F5F5F5;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;
  --font-accent: 'Raleway', sans-serif;

  /* Legacy mappings for compatibility */
  --color-primary-orange: var(--color-burnt-orange);
  --color-primary-green: var(--color-army-green);
  --color-dark-green: var(--color-army-green);
  --color-beige: var(--color-soft-cream);
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--color-black);
  background: var(--color-white);
}

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

p { margin: 0; }
img { max-width: 100%; height: auto; }
a { color: inherit; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn--primary {
  background: var(--color-burnt-orange);
  color: white;
}

.btn--primary:hover {
  background: var(--color-rust);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(204, 85, 0, 0.3);
}

.btn--secondary {
  background: var(--color-army-green);
  color: white;
}

.btn--secondary:hover {
  background: var(--color-drab-olive);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn--outline:hover {
  background: rgba(255,255,255,0.1);
}

/* Section backgrounds */
.bg-cream { background: var(--color-soft-cream); }
.bg-army-green { background: var(--color-army-green); }
.bg-white { background: var(--color-white); }

/* Orange hexagon bullet points */
.hex-bullet {
  list-style: none;
  padding-left: 0;
}

.hex-bullet li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.hex-bullet li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  background: var(--color-pumpkin);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
