header {
 background: linear-gradient(to right, #829169, #152802);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  color: #ffffff;
  flex-wrap: wrap;
}



/* Responsive adjustments */
@media (max-width: 600px) {
  header .logo {
    font-size: 1.2rem;
    padding: 0.3rem 0.8rem;
    margin: 0 auto;             /* Center the logo */
    display: block;
  }

  header {
    justify-content: center;
  }
}

.logo {
  margin-right: auto; /* Push everything else to the right */
}

.logo img {
  height: 96px;   /* Adjust as needed */
  width: 120px;    /* Maintains aspect ratio */
  margin-left: 20px; /* Optional: push away from edge */
}




/* FOOTER */

.site-footer {
  background:linear-gradient(to right, #829169, #152802); /* Dark blue background */
  color: white;
  padding: 3rem 2rem;
  font-family: Cambria, "Times New Roman", serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  
}

.footer-column {
  min-width: 180px;
  flex: 1;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  position: relative;
  color: #ffcc66; /* Gold-yellow heading */
}

.footer-column h4::after {
  content: "";
  display: block;
  width: 200px;
  height: 2px;
  background: #ffcc66;
  margin-top: 0.5rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.6rem;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ddd;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #fff;
}




@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 20px;
    padding: 20px 10px;
  }

  .logo {
    position: static;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
  }

  .search-container {
    padding: 8px 20px;
    width: 100%;
    max-width: 300px;
  }

  .search-container input {
    width: 100%;
  }
}