/* Willowrest Website Styles */

body {
  background-color: #120c24; /* Deep gray-purple */
  color: #e0e0e0; /* Soft off-white */
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

a {
  color: #ccff66; /* Pale green for links */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.header {
  text-align: center;
  padding: 20px 0;
  background-color: #2a233a; /* Dark purple-gray */
  border: 2px solid #aaa;
  margin: 20px auto;
  max-width: 80%;
}

.header h1 {
  font-size: 2.5em;
  margin: 0;
  color: #fff;
}

.header p {
  font-style: italic;
  margin: 5px 0 0;
  color: #ccc;
}

.header-image {
  background-image: url('images/bannerblank.png'); /* Change this to your file */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 20px; /* adjust for desired height and spacing */
  color: white; /* makes text stand out */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* helps with contrast */
}

.navbar {
  background-color: #1e1b30;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 0;
  border-top: 2px double #aaa;
  border-bottom: 2px double #aaa;
}

.navbar a {
  margin: 0 10px;
  padding: 6px 12px;
  font-weight: bold;
  color: #f0f0f0;
  text-decoration: none;
}

.navbar a::before {
  content: "[";
}

.navbar a::after {
  content: "]";
}

.navbar a:hover {
  text-decoration: underline;
  color: #ccff66;
}

.navbar a.active {
  color: #ccff66;
  text-decoration: underline;
}

main {
  padding: 30px 0;
}



.container {
  background-color: #2a233a;
  margin: 30px auto;
  padding: 20px;
  border: 2px solid #ccc;
  max-width: 85%;
  font-size: 1.1em;
}

.container h2 {
  color: #ccff66;
  border-bottom: 2px solid #ccff66;
  padding-bottom: 4px;
  margin-bottom: 16px;
}

.content-box {
  background-color: #2c2640; /* formerly used in <main> */
  margin: 30px auto;
  max-width: 960px;
  border: 2px double #aaa;
  padding: 20px 30px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.content-box h2 {
  color: #ccff66;
  border-bottom: 1px solid #ccff66;
  padding-bottom: 6px;
  margin-bottom: 16px;
}



.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1e1b30;
  border-top: 2px double #aaa;
  padding: 10px 20px;
  color: #f0f0f0;
  font-size: 0.9em;
  margin-top: 40px;
}

.footer-left {
  text-align: left;
}

.footer-right {
  text-align: right;
}

.footer-right a {
  color: #ccff66;
  text-decoration: none;
  margin: 0 5px;
}

.footer-right a:hover {
  text-decoration: underline;
}
