/* style.css */
.search-form-wrapper {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    padding: 20px 15px;
    margin-top: 25px;
    /* background: url(/resources/images/misc/bg_search-open.png) right center no-repeat #f89d1c; */
}

.search-form-wrapper.open {
    display: block;
}

.active {
    color: white;
}
/* CSS for the collapsed navigation menu */
    @media (max-width: 767.98px) {
        .navbar-nav {
            flex-direction: column;
        }
        .navbar-nav .nav-item {
            margin-bottom: 0.5rem;
        }
    }
/* Add any additional styling for the header here */
/* styles.css */

/* Footer */
#footer {
    color: white;
}

a {
    text-decoration: none;
}

.logo-img {
    max-width: 100px;
    max-height: 100px;
    border-radius: 100px;
}

.site-title {
    font-size: 20px;
    font-weight: 800;
    font-family: 'Libre Baskerville', serif;
}

.fb-like-wrapper {
    font-weight: 700;
    font-size: 20px;
    border-radius: 20px;
    background-color: #d0d4c9;
}

.social-icons {
    margin-top: 15px;
}

.social-icon {
    width: 35px;
    height: 35px;
}

/* Optional hover effect for social icons */
.social-icon:hover {
    transition: transform .2s ease;
    transform: scale(1.1);
    border: 2px solid #0d6efd;
    border-radius: 5px;
}

/* Add any additional styling for the footer here */


.social-media-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin: 5px;
  background-color: #d0d4c9;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.3);
}

/* Add any additional styling for the social media icons here */

