body {
  font-family: 'Georgia', serif;
  color: #fafafa;
  background: black;
  max-width: 800px;
  margin: auto;
  padding: 2rem;
}


nav a {
  margin-right: 1rem;
  text-decoration: none;
  color: #fafafa;
}
nav a.active {
  font-weight: bold;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  position: relative;
}

h1 {
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
}

.dropdown {
  position: relative;
}

.dropbtn {
  text-decoration: none;
  color: white;
  padding: 0.5rem 1rem;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%; /* position below the dropbtn */
  left: 0;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #333;
}

.dropdown-content a:hover {
  background-color: #eee;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.banner-container {
  width: 100%;
  overflow: hidden;
}

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

.custom-image-wrapper {
  position: relative;
  max-width: 800px;
  margin: auto;
}

.custom-image {
  width: 600px;
  height: auto;
  display: block; /* or inline-block depending on your layout */
  margin: 2rem auto; /* centers the image horizontally with space around it */
}

@media (max-width: 600px) {
  .custom-image-wrapper {
    padding: 0 1rem;
  }
}
  .custom-image {
    width: 90%;
    height: auto;
  }

.custom-image2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('your-image.jpg'); /* Replace with your actual path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1; /* Puts it behind other content */
}


.pdf-container {
  width: 100%;
  height: 1000px;
  margin-top: 2rem;
  border: none;              /* Removes any border from the container */
}

.pdf-container embed {
  border: 1px solid white;   /* Force a white border (or use 'none' to remove) */
}

.image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

figure {
  margin: 0;
  text-align: center;
}

figure img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
}

figcaption {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}