body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F5F5DC; /* Beige */
    color: #333;
}

header {
    background-color: #48742c;
    color: #fff;
    font-family: 'Luckiest Guy', cursive;
    padding: 1em 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

main {
    padding: 2em;
    text-align: center;
}

#hero {
    background-color: #e6e6e6; /* Even darker shade of white */
    padding: 2em;
    margin-bottom: 2em;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#hero img {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1em;
}

footer {
    background-color: #48742c;
    color: #fff;
    text-align: center;
    padding: 1em 0;
    border-radius: 8px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
}

.nav-link {
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 5px;
}

.navbar-nav .fa-facebook {
    color: #fff; /* Set the icon color to white */
    font-size: 1.5em; /* Adjust the size as needed */
}

.navbar-nav .fa-facebook:hover {
    color: #ddd; /* Slightly lighter on hover */
}

.navbar-nav .nav-item:last-child {
    margin-left: 1em; /* Add some spacing between Contact and the Facebook icon */
}

.nav-link:hover {
    background-color: #48742c;
    color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5); /* Add a subtle box shadow */
    border-radius: 5px;
}

.zoomable {
    cursor: zoom-in;
}

.nav-logo {
    width: 30px; /* Adjust the size as needed */
    height: auto;
    margin-right: 5px; /* Add some spacing between the logo and text */
    vertical-align: middle; /* Align the logo vertically with the text */
    display: inline-block;
    background-color: white;
    border-radius: 5px;
}

.nav-logo:hover {
    pointer-events: none; /* Prevent hover effect on the logo */
}

.small-text {
    font-size: 0.7em; /* Adjust the size as needed */
}


/* Add hover effect to images with onclick attribute */
img[onclick]:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
  transform: scale(1.05);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.zoomed {
    max-width: none !important;
    max-height: none !important;
    width: auto !important;
    height: auto !important;
}

.zoomed {
}

.image-container {
    margin-left: 15%;
    margin-right: 15%;
}

.navbar-nav-centered {
    display: flex;
    align-items: center;
    justify-content: center;
}
