body {
    text-align: center;
    font-family: "American Typewriter", serif;
    background-color: black;
    margin: 0;
    padding: 0;
    }

.boa-img {
    width: 100%;
    display: block;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
}
    
.festival-img {
    border: 1px solid black;
    border-radius: 50%;
    width: 100px;
    }


.image-container {
    position: relative;
    width: 100%;
}

.image-overlay {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 25px;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.overlay-icon {
  width: 32px;
  height: auto;
}

.overlay-link {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.overlay-link:hover {
  text-decoration: underline;
}

.navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
}

.nav-item.dropdown {
  position: relative;
}

.dropdown-menu {
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 100%;
  left: 0%;
  z-index: 999;
  min-width: 100%;
  background-color: #000;
}

.festival-float-img {
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 100px;
    border-radius: 50%;
    border: 2px solid black;
}

.book-link {
  color: white;
  transition: opacity 0.2s ease-in-out;
}
.book-link:hover {
  opacity: 0.8;
}

.book-img {
  width: 100px;
}


.book-icon-positioned {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  filter: invert(1); /* makes it white */
  pointer-events: none; /* optional: prevents interfering with clicks */
}

