/* Holt International Branding Theme - Standalone CSS */
/* Holt Colors 2025 Official Palette */
/* Ready to enqueue into any WordPress theme or static site */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;600;700&display=swap');

/* Import General Sans from CDN (not available on Google Fonts) */
@import url('https://api.fonts.coollabs.io/css2?family=General+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Holt Colors 2025 - Primary Brand Colors */
  --holt-orange-red: #e35030;
  --holt-red: #d33928;
  --holt-orange: #fbae49;
  --holt-gold: #edaf44;

  /* Supporting Colors */
  --holt-cyan: #5bc7d6;
  --holt-light-cyan: #81d1e0;
  --holt-dark-teal: #007086;
  --holt-teal: #006e66;
  --holt-navy: #006ea4;

  /* Accent Colors */
  --holt-yellow: #ffdb82;
  --holt-lime: #d7dc61;
  --holt-yellow-green: #bac130;

  /* Earth Tones */
  --holt-olive: #a49663;
  --holt-brown: #957631;

  /* Neutral Colors */
  --holt-charcoal: #2C2C2C;
  --holt-slate: #5A5A5A;
  --holt-light-gray: #F5F5F5;
  --holt-white: #FFFFFF;

  /* Typography */
  --font-heading: 'Merriweather', serif;
  --font-body: 'General Sans', sans-serif;

  /* Spacing */
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;

  /* Border Radius */
  --radius: 8px;
  --radius-sm: 4px;
}

/* Typography */
.holt-h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 3.5rem;
  font-weight: 700;
  color: var(--holt-charcoal);
}

.holt-h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  line-height: 2.75rem;
  font-weight: 700;
  color: var(--holt-charcoal);
}

.holt-h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  line-height: 2.25rem;
  font-weight: 600;
  color: var(--holt-charcoal);
}

.holt-body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--holt-slate);
}

.holt-body-large {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: var(--holt-slate);
}

/* Buttons */
.holt-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  text-decoration: none;
}

.holt-btn-primary {
  background-color: var(--holt-orange-red);
  color: var(--holt-white);
  border-color: var(--holt-orange-red);
}

.holt-btn-primary:hover {
  background-color: #d14426;
  border-color: #d14426;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(227, 80, 48, 0.3);
}

.holt-btn-secondary {
  background-color: transparent;
  color: var(--holt-orange-red);
  border-color: var(--holt-orange-red);
}

.holt-btn-secondary:hover {
  background-color: var(--holt-orange-red);
  color: var(--holt-white);
}

.holt-btn-urgent {
  background-color: var(--holt-red);
  color: var(--holt-white);
  border-color: var(--holt-red);
}

.holt-btn-urgent:hover {
  background-color: #bd2f21;
  border-color: #bd2f21;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(211, 57, 40, 0.3);
}

.holt-btn-cyan {
  background-color: var(--holt-cyan);
  color: var(--holt-white);
  border-color: var(--holt-cyan);
}

.holt-btn-cyan:hover {
  background-color: #49b8c9;
  border-color: #49b8c9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(91, 199, 214, 0.3);
}

/* Cards */
.holt-card {
  background-color: var(--holt-white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  padding: var(--spacing-xl);
  transition: all 0.3s;
}

.holt-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.holt-card-header {
  margin-bottom: var(--spacing-lg);
}

.holt-card-category {
  color: var(--holt-orange-red);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-sm);
}

.holt-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  color: var(--holt-charcoal);
  margin: 0;
}

/* Story Card Accent */
.holt-story-accent {
  position: relative;
}

.holt-story-accent::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: var(--holt-orange-red);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

/* Hero Section */
.holt-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  padding: var(--spacing-2xl);
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.holt-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.3), transparent);
  z-index: 1;
}

.holt-hero-content {
  position: relative;
  z-index: 2;
  color: var(--holt-white);
  max-width: 800px;
}

/* Impact Stats */
.holt-impact-stat {
  text-align: center;
}

.holt-impact-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--holt-orange-red);
  line-height: 1;
  margin-bottom: var(--spacing-sm);
}

.holt-impact-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--holt-charcoal);
}

/* Sections */
.holt-section {
  padding: var(--spacing-2xl) 0;
}

.holt-section-alt {
  background-color: var(--holt-light-gray);
}

.holt-section-accent {
  background: linear-gradient(135deg, var(--holt-yellow) 0%, var(--holt-light-cyan) 100%);
}

/* Utilities */
.holt-text-center {
  text-align: center;
}

.holt-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.holt-grid {
  display: grid;
  gap: var(--spacing-xl);
}

.holt-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.holt-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Color Classes */
.holt-bg-orange-red { background-color: var(--holt-orange-red); }
.holt-bg-red { background-color: var(--holt-red); }
.holt-bg-orange { background-color: var(--holt-orange); }
.holt-bg-gold { background-color: var(--holt-gold); }
.holt-bg-cyan { background-color: var(--holt-cyan); }
.holt-bg-teal { background-color: var(--holt-teal); }
.holt-bg-yellow { background-color: var(--holt-yellow); }

.holt-text-orange-red { color: var(--holt-orange-red); }
.holt-text-red { color: var(--holt-red); }
.holt-text-cyan { color: var(--holt-cyan); }
.holt-text-teal { color: var(--holt-teal); }

@media (max-width: 768px) {
  .holt-h1 { font-size: 2rem; line-height: 2.5rem; }
  .holt-h2 { font-size: 1.75rem; line-height: 2.25rem; }
  .holt-h3 { font-size: 1.5rem; line-height: 2rem; }
  .holt-hero { min-height: 400px; padding: var(--spacing-lg); }
  .holt-impact-number { font-size: 2.5rem; }
}
