/* RESET & BASIC SETUP */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #294511;
  font-family: Verdana, sans-serif;
  color: #111111;
  padding: 20px 0;
}

/* MAIN CONTAINER */
.container {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 10px;
}

/* header styles */
.site-header {
  background-color: #0C1405; /* background */
  margin-bottom: 15px;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
}

.nav-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 12px 10px;
  border-top: 5px solid #294511; /* outline */
}

.nav-bar a {
  color: #416e1b; /* link color */
  text-decoration: none;
  font-weight: bold;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.nav-bar a:hover {
  color: #4d821f; /* color on hover */
}

/* column flexing */
.main-layout {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

/* skinny box's colors and stuff */
.sidebar {
  width: 260px;
  flex-shrink: 0;
  background-color: #0C1405; /* background */
  color: #416e1b;
  padding: 20px 15px;
}
/* add border and link color later. */

.sidebar h3 {
  font-size: 0.95rem;
  margin-bottom: 15px;
  margin-top: 15px;
  letter-spacing: 1px;
}

.sidebar h3:first-child {
  margin-top: 0;
}

.sidebar p {
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 15px;
  color: #416e1b;
}

/* fat box's stuff */
.content-box {
  flex-grow: 1;
  background-color: #dde6d5; /* background */
  padding: 25px 20px;
}

.content-box h2 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #0C1405;
  text-align: center;
}

.content-box h3 {
  font-size: 0.95rem;
  margin-top: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: #0C1405;
  text-align: center;
}

.content-box p {
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #0C1405;
  text-align: center;
}

.centered-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%; /* Keeps the image responsive so it doesn't overflow */
  height: auto;
}

/* for mobile users */
@media (max-width: 650px) {
  .main-layout {
    flex-direction: column; /* Stacks columns vertically on mobile screens */
  }
  
  .sidebar {
    width: 100%;
  }

/* link colors for skinny box */
}
.nav-bar2 a {
  color: #416e1b; /* link color */

}

.nav-bar2 a:hover {
  color: #4d821f; /* color on hover */
}
