@charset "UTF-8";
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: white;
}

button {
  background-color: rgb(223, 205, 191);
  color: rgb(25, 0, 25);
  border: 1px solid rgb(68, 48, 34);
  padding: 0.5rem 1rem;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  margin: 0.25rem 0.25rem;
  border-radius: 5px;
}

h1 {
  font-family: "Philosopher", sans-serif;
  font-weight: 700; /* Use the bold version for emphasis */
  font-size: 3.5rem; /* Adjust size to your taste – larger for impact */
  color: rgb(68, 48, 34);
  text-align: center;
  margin: 0;
  padding: 2rem 1rem; /* Space around the text */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Helps legibility over images */
}

h2 {
  font-family: "Philosopher", sans-serif;
  font-weight: 400; /* Regular weight for subheading */
  font-size: 1.8rem; /* Slightly smaller than h1 */
  color: rgb(68, 48, 34);
  text-align: center;
  margin: 0;
  padding: 1rem 1rem; /* Space around the text */
}

h2 a {
  font-family: "Philosopher", sans-serif;
  font-weight: 400; /* Regular weight for subheading */
  font-size: 1.8rem; /* Slightly smaller than h1 */
  color: rgb(25, 0, 25);
  text-align: center;
  margin: 0;
  padding: 1rem 1rem;
}

h3 {
  font-family: "Philosopher", sans-serif;
  font-size: 1.2rem;
  color: rgb(68, 48, 34);
  text-align: center;
  margin: 0;
  padding: 1rem 1rem;
}

.navbar {
  background-color: rgb(25, 0, 25);
  padding: 1rem 0;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}

.nav-links li {
  display: inline;
  margin: 0 1.2rem; /* Slightly reduced spacing to fit nine items comfortably */
}

.nav-links a {
  color: rgb(223, 205, 191);
  text-decoration: none;
  font-family: "Philosopher", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: rgb(180, 151, 124);
}

.mainImg img {
  width: calc(100% - 16px);
  height: auto;
  border: 8px solid rgb(68, 48, 34);
  display: block;
  margin: 0 auto;
}

.main-text {
  font-family: "Philosopher", sans-serif;
  font-size: 1rem;
  color: rgb(68, 48, 34);
  text-align: center;
  margin: 0;
  padding: 1rem 1rem;
}

.main-text a {
  font-family: "Philosopher", sans-serif;
  font-size: 1rem;
  color: rgb(50, 0, 50);
  text-align: center;
  text-decoration: none;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.4rem;
    padding: 1.2rem 0.8rem;
  }
  .navbar {
    position: relative;
    padding: 1rem 0;
  }
  /* Hide menu by collapsing height - works with or without JS */
  .nav-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    flex-direction: column;
    width: 100%;
    background-color: rgb(25, 0, 25);
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 99;
  }
  /* When active, expand to full content height */
  .nav-links.active {
    max-height: 500px; /* Large enough for all 9 links */
    overflow: visible;
  }
  .nav-links li {
    display: block;
    margin: 0;
    text-align: center;
    width: 100%;
  }
  .nav-links a {
    display: block;
    padding: 1.2rem 1rem;
    font-size: 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-links a:hover,
  .nav-links a:active {
    background-color: rgba(223, 205, 191, 0.2);
  }
  .hamburger {
    display: block;
    cursor: pointer;
    padding: 0.8rem;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }
  .hamburger span {
    display: block;
    width: 30px;
    height: 4px;
    background: #ffffff;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
}/*# sourceMappingURL=sitewide.css.map */