/* === Forestry + Tech Theme CSS === */

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

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #f4f6f3;
  color: #2e2e2e;
  line-height: 1.6;
}

/* Navigation */
nav {
  background-color: #2c5f2d; /* Forest Green */
  padding: 15px 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(44, 95, 45, 0.6);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav a {
  color: #a1c349; /* Lime Green */
  text-decoration: none;
  margin: 0 14px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #4a90e2; /* Steel Blue tech accent */
}

/* Title */
h1 {
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  color: #2c5f2d;
  margin: 40px 20px 20px;
  text-shadow: 1px 1px 1px rgba(161, 195, 73, 0.4);
}

/* Subheadings */
h3, h4, h5 {
  color: #4a90e2; /* Tech Blue */
  margin-top: 30px;
  font-weight: 700;
}

/* Sections */
section {
  background-color: #ffffff;
  max-width: 900px;
  margin: 30px auto;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(44, 95, 45, 0.1);
  border-left: 6px solid #a1c349; /* Lime Green accent */
}

/* Paragraphs and lists */
p, ul {
  color: #2e2e2e;
  font-size: 1rem;
}

ul {
  padding-left: 25px;
}

/* Images */
img {
  display: block;
  max-width: 90%;
  height: auto;
  margin: 25px auto;
  border-radius: 12px;
  border: 1.5px solid #d6dad7;
  box-shadow: 0 4px 10px rgba(74, 144, 226, 0.15);
}

/* Code inline */
code {
  font-family: 'Courier New', monospace;
  background-color: #e8f0e7;
  color: #2c5f2d;
  padding: 3px 6px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95em;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2rem;
  }

  section {
    margin: 20px 15px;
    padding: 25px 15px;
  }
}



