
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Poppins', sans-serif;
  background-color: white;
  color: #101010;
  margin: 0;
  padding: 0;
}


.full-width-image {
  width: 100%;           /* 100% of the viewport width */
  position: relative;
  overflow: hidden;
  font-size: 1rem;
  }

.full-width-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  min-height: 300px; /* Ensures enough height on small devices */
  }

  .credits {
  font-family: 'Poppins', sans-serif;
  display: block;
  color: #303030;
  font-size: 0.75rem;
  text-align: left;
  margin-left: 20px;
}
.credits a {
  display: block;
  color: #707070;
}


.banner-text {
  position: absolute;
  bottom: 80px;
  left: 20px;
  color: white;
  font-size: clamp(14px, 2vw, 30px); /* responsive size with a min and max */
  color:azure;

}

.image-title {
  font-family: 'Poppins', sans-serif;
  color: #303030;
  font-size: 0.9rem;
  margin-left: 1rem;
}

.source {
  font-family: 'Poppins', sans-serif;
  display: block;
  color: #303030;
  font-size: 0.75rem;
  text-align: left;
}
.source a {
  display: block;
  color: #707070;
  
}

.info-link {
  display: block;
  text-align: left;
  font-size: 0.75rem;
  color: #909090;
  margin-top: 0.5rem;
}
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}
.highlight a {
  color: #303030;
  
}

.image-container {
  display: flex;
  flex-direction: column;
  
  
}
.image-container img {
  width: 100%;
  max-width: 1000px;
  margin-top: 0.5rem;
  border-radius: 8px;
}

.image .container a {
  display: block;
  color: #707070;
  font-size: 1rem;
  margin-top: 1rem;
}

.embed-container.center {
  margin-left: auto;
  margin-right: auto;
  

}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  background-color: transparent;
  z-index: 1001;
}
.top-nav h1 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #044B03;
}
.menu-toggle {
  background: white;
  border: none;
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  cursor: pointer;
  border-radius: 4px;
}
.side-nav {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background-color: white;
  box-shadow: -2px 0 5px rgba(0,0,0,0.2);
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  z-index: 1002;
}
.side-nav.open {
  right: 0;
}
.side-nav a {
  margin-bottom: 1rem;
  text-decoration: none;
  color: #101010;
  font-size: 1rem;
}
.menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
}
.social-icons {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
}
.social-icons img {
  width: 24px;
  height: 24px;
}
header + .container {
  padding-top: 80px;
}
footer {
  text-align: center;
  font-size: 0.85rem;
  color: #707070;
  margin: 3rem 0 1rem;
}

.overlay-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 2rem 2rem;
  z-index: 1002;
}
@media (max-width: 480px) {
  .overlay-menu {
    width: 100%;
    align-items: center;
    padding: 2rem 1rem;
  }
  .overlay-menu a {
    text-align: center;
  }
  .social-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
  }
}
.overlay-menu.open {
  display: flex;
}
.overlay-menu a {
  color: white;
  font-size: 1.1rem;
  text-decoration: none;
  margin: 1rem 0;
  text-align: left;
}
.overlay-menu .menu-close {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}
.menu-toggle {
  background: white;
  border: none;
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  cursor: pointer;
  border-radius: 0;
}
.social-links {
  margin-top: auto;
  padding-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.social-links a {
  font-size: 0.88rem;
  color: white;
  text-decoration: none;
  flex: 1;
  text-align: center;
}

.flourish-container {
      width: 100%;
      max-width: 1000px; /* Set a max width */
      height: 80vh; /* Make it take 80% of viewport height */
      margin: auto;
    }

    .flourish-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    @media (max-width: 768px) {
      .flourish-container {
        height: 60vh; /* Adjust height for smaller screens */
      }
    }

