/* ===== RESET & VARIABLES ===== */
:root {
  --teal: #00cccc;
   --forest-green: #015629;
  --gold: #867e36;
  --black: #000000;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--black);
}

/* ===== HEADER ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 0;
  background-color: var(--forest-green);
  z-index: 1000;
}

.navbar.scrolled {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}

.navbar.scrolled .logo {
  color: var(--forest-green);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
}

.navbar.scrolled nav a {
  color: var(--black);
}

/* ===== BUTTONS ===== */
.btn {
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.btn-primary {
  background-color: var(--teal);
  color: var(--white);
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

.navbar.scrolled .btn-secondary {
  border-color: var(--forest-green);
  color: var(--forest-green);
}

/* ===== MAIN CONTENT ===== */
.dynamic-content {
  padding: 100px 0 40px; /* Extra top padding for fixed header */
  min-height: 60vh;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--black);
  color: var(--white);
  padding: 30px 0;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
}

/* ===== NEW STYLES ===== */
/* Card Grid (Get Involved Page) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid var(--teal);
}

/* About Us Layout */
.about-section {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

.about-image {
  width: 40%;
  border-radius: 8px;
}

.about-text {
  flex: 1;
}

/* Active Navigation Link */
nav a.active {
  font-weight: bold;
  text-decoration: underline;
  color: var(--gold);
}
/* Current logo size (example) */
.logo img {
  height: 40px; /* ← Your current size */
}

/* New size (30% larger) */
.logo img {
  height: 52px; /* 40px * 1.3 = 52px */
  width: auto;
  transition: all 0.3s ease; /* Smooth hover effects */
}

/* For retina displays (optional) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { 
  .logo img {
    height: 104px; /* Double the base size */
  }
}

/* Remove old text logo styles */
.logo {
  color: inherit; /* Remove if exists */
  font-size: inherit; /* Remove if exists */
}

/* Our Work Page Styles */
.fluff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.fluff-card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  border-top: 4px solid var(--teal);
  transition: transform 0.3s ease;
}

.fluff-card:hover {
  transform: translateY(-5px);
}

.fluff-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.corporate-jargon {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  margin: 40px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.buzzword-bingo {
  background: var(--forest-green);
  color: white;
  padding: 30px;
  border-radius: 8px;
}

.buzzword-bingo ul {
  list-style-type: none;
}

.buzzword-bingo li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
}

.buzzword-bingo li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Hero Section */
.hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  gap: 15px;
}

/* Value Propositions */
.value-props {
  padding: 60px 0;
  background: white;
}

.value-props .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.prop-card {
  text-align: center;
  padding: 30px;
  border-radius: 8px;
  background: #f8f9fa;
}

.prop-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Partners Section */
.partners {
  padding: 60px 0;
  background: var(--forest-green);
  color: white;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 30px;
  text-align: center;
}

.partner-logo {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 4px;
  font-weight: bold;
}