/* Floating Navigation Modal */
.nav-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    bottom: 20px;
    left: 20px;
    width: auto;
    height: auto;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}
 
.nav-modal.visible {
    display: block;
    opacity: 1;
}

.nav-modal.hidden {
    display: none;
    opacity: 0;
}

.nav-modal-content {
    background-color: rgba(1, 62, 9, 0.8);
    color: white;
    padding: 20px;
    padding-bottom: 40px;
    border-radius: 4px;
    font-size: inherit;
    font-family: inherit;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease;
}

.nav-modal-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.nav-modal-content li {
    margin-bottom: 10px;
}

.nav-modal-content a {
    color: white;
    text-decoration: none;
}

.nav-modal-content a:hover {
    text-decoration: underline;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.nav-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-button:hover {
    background-color: #0056b3;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Footer styling */
footer {
    background-color: transparent; /* Remove background color */
    padding: 10px 0; /* Balanced padding */
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1); /* Subtle border for separation */
}

.footer-nav {
    margin-bottom: 5px;
}

.footer-nav ul {
    list-style: none; /* Remove bullet points */
    padding: 0;
    margin: 0;
    display: flex; /* Flexbox for inline layout */
    justify-content: space-evenly; /* Distribute items evenly across the footer */
    align-items: center; /* Align items vertically */
    width: 100%; /* Ensure items span the width of the footer */
}

.footer-nav ul li {
    display: inline;
}

.footer-nav ul li a {
    color: #323232; /* Neutral blue for links */
    text-decoration: none;
    font-size: 0.9em;
}

footer p {
    font-size: 0.5em; /* Slightly smaller font size for copyright text */
    color: #666; /* Neutral gray for text */
    margin: 0;
}
