/*
Theme Name: BSW Theme
Theme URI: https://beltofsomaliwomen.org
Author: BSW Development Team
Description: Custom theme for Belt of Somali Women organization
Version: 2.0
Text Domain: bsw-theme
*/

/* ============================================
   CSS VARIABLES & DESIGN TOKENS
   ============================================ */
:root {
  /* Primary Colors - Warm Earthy Palette */
  --bsw-primary: #c75b39;
  --bsw-primary-dark: #a84830;
  --bsw-primary-light: #d97b5e;

  /* Secondary Colors */
  --bsw-teal: #2a6b6b;
  --bsw-teal-dark: #1e5050;
  --bsw-teal-light: #3a8585;

  /* Accent Colors */
  --bsw-gold: #d4a574;
  --bsw-orange: #e67e22;

  /* Neutral Colors */
  --bsw-cream: #f5f0eb;
  --bsw-cream-dark: #ede5dd;
  --bsw-white: #ffffff;
  --bsw-dark: #2c2c2c;
  --bsw-gray: #666666;
  --bsw-gray-light: #999999;

  /* Typography */
  --font-primary: "Lato", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: "Lato", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

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

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============================================
   BUTTON STYLES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  text-decoration: none !important;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.5rem;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-sm {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}

.btn-outline-primary {
  color: var(--bsw-teal) !important;
  border: 2px solid var(--bsw-teal) !important;
  background: transparent !important;
}

.btn-outline-primary:hover {
  background: var(--bsw-teal) !important;
  color: var(--bsw-white) !important;
}

.btn-secondary {
  background: var(--bsw-cream-dark) !important;
  color: var(--bsw-dark) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.btn-secondary:hover {
  background: var(--bsw-cream) !important;
}

.btn-teal {
  background: var(--bsw-teal) !important;
  color: var(--bsw-white) !important;
  border: none !important;
}

.btn-teal:hover {
  background: var(--bsw-teal-dark) !important;
}

/* ============================================
   LAYOUT & CONTAINER UTILITIES
   ============================================ */
.section {
  padding: 5rem 0;
}

.section-light {
  background-color: var(--bsw-cream);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
