/* 
 * Global Styles
 * SDA Safety Nets
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --primary-green: #0E5F3B;
  --dark-green: #083D28;
  --light-green: #1F8A5B;
  --accent-green: #27AE60;
  --bg-light: #F5FFF8;
  --bg-alt: #E8F5E9;
  --text-dark: #1C1C1C;
  --text-light: #6B7280;
  --white: #FFFFFF;
  --green-grad-1: linear-gradient(135deg, #0E5F3B, #1F8A5B);
  --green-grad-2: linear-gradient(135deg, #083D28, #0E5F3B);
  --shadow-sm: 0 4px 6px rgba(14, 95, 59, 0.05);
  --shadow-md: 0 10px 20px rgba(14, 95, 59, 0.08);
  --shadow-lg: 0 20px 40px rgba(14, 95, 59, 0.12);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

h1 { font-size: 48px; line-height: 56px; font-weight: 700; }
h2 { font-size: 36px; line-height: 44px; font-weight: 600; }
h3 { font-size: 28px; line-height: 36px; font-weight: 600; }
h4 { font-size: 22px; line-height: 30px; font-weight: 500; }

p {
  font-family: 'Inter', sans-serif;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.small-text {
  font-size: 14px;
  line-height: 22px;
}

a {
  text-decoration: none;
  color: var(--primary-green);
  transition: var(--transition);
}

a:hover {
  color: var(--accent-green);
}

ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

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

.section-padding {
  padding: 80px 0;
}

.bg-alt {
  background-color: var(--bg-alt);
}

.bg-dark {
  background-color: var(--dark-green);
  color: var(--white);
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6, .bg-dark p {
  color: var(--white);
}

.text-center { text-align: center; }
.mb-30 { margin-bottom: 30px; }
.mb-50 { margin-bottom: 50px; }
.mt-30 { margin-top: 30px; }
.mt-50 { margin-top: 50px; }

.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* z-index Utilities */
.z-0 { z-index: 0 !important; }
.z-1 { z-index: 1 !important; }
.z-2 { z-index: 2 !important; }
.z-3 { z-index: 3 !important; }
.z-10 { z-index: 10 !important; }
.z-100 { z-index: 100 !important; }
.z-999 { z-index: 999 !important; }
