/**
 * WhisperNet Base & Reset Styles
 * Part of PEACELINK 360 - Developed by Kisii University Flamingo Kings
 */

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

/* Reset and box-sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--color-text-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.25rem;
  font-weight: 400;
}

p.lead {
  font-size: 1.2rem;
  color: var(--color-text-heading);
  margin-bottom: 1.5rem;
}

/* Links */
a {
  color: var(--color-accent);
  text-decoration: none;
  transition: all var(--transition-default);
}

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

/* Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-base);
}

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

.section-white {
  background-color: #FFFFFF;
}

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

/* Grid & Layout System */
.grid {
  display: grid;
  gap: var(--spacing-base);
}

.grid-cols-1 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
}

/* Flex Helpers */
.flex {
  display: flex;
  gap: 16px;
  align-items: center;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--color-text-muted);
}

.w-full {
  width: 100%;
}

.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }

/* Image helper */
img {
  max-width: 100%;
  height: auto;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--wn-50);
}
::-webkit-scrollbar-thumb {
  background: var(--wn-200);
  border-radius: 10px;
  border: 2px solid var(--wn-50);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--wn-400);
}
