/* ------------------------------ */
/* Global Reset + Base Styling    */
/* ------------------------------ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
}

body {
  background-color: #f4f7f4;
  color: #1a1a1a;
  line-height: 1.5;
}

/* ------------------------------ */
/* Top Navigation Bar             */
/* ------------------------------ */

#topbar {
  width: 100%;
  background-color: #1f7a3a; /* Turtle green */
  color: white;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

#logo {
  font-size: 1.6rem;
  font-weight: 700;
}

#nav-links {
  display: flex;
  gap: 16px;
  margin-left: 20px;
}

#nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

#nav-links a:hover {
  opacity: 0.7;
}

#search {
  margin-left: auto;
  padding: 6px 10px;
  border-radius: 6px;
  border: none;
  width: 220px;
}

#signin {
  background-color: #145c2a; /* darker green */
  color: white;
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  margin-left: 12px;
  transition: opacity 0.2s;
}

#signin:hover {
  opacity: 0.8;
}

/* ------------------------------ */
/* Hero Section                   */
/* ------------------------------ */

#hero {
  background-color: #dff5e3; /* soft green tint */
  padding: 60px 20px;
  text-align: center;
}

#hero-text h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

#hero-text p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #2b4d2f;
}

#cta {
  display: inline-block;
  background-color: #1f7a3a;
  color: white;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: opacity 0.2s;
}

#cta:hover {
  opacity: 0.85;
}

#hero-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.hero-btn {
  background-color: #145c2a;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.hero-btn:hover {
  opacity: 0.85;
}

/* ------------------------------ */
/* What's New Section             */
/* ------------------------------ */

#updates {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

#updates h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

#updates ul {
  list-style: none;
}

#updates li {
  background-color: #e8f7eb;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* ------------------------------ */
/* Recent Commits Section         */
/* ------------------------------ */

#commits {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

#commits h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

#commits ul {
  list-style: none;
}

#commits li {
  background-color: #e8f7eb;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* ------------------------------ */
/* Footer                         */
/* ------------------------------ */

#footer {
  background-color: #1f7a3a;
  color: white;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.footer-column h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.footer-column a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 6px;
  transition: opacity 0.2s;
}

.footer-column a:hover {
  opacity: 0.7;
}

#disclaimer {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}

