footer {
    background-color: #d4af37;
}

footer p {
    color: #292929;
}

footer h3 {
    color: #292929;
}

.footer-content {
    flex: auto;
    justify-content: center;
    flex-flow: row;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    gap: 10px;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    padding: 1rem;
}

.footercopyright {
    border-top: solid 2px #292929;
    padding: 5px;
    margin-top: 5px;
}

.footercopyright p {
    text-align: center;
}

.footer-nav ul {
    list-style-type: none;
    text-align: center;
    padding-left: 0px;
}

.footer-nav li {
    padding: 2px;
}

.footer-nav a:hover {
    cursor: pointer;
    color: white;
}

.footer-nav a {
    text-decoration: none;
    color: #292929;
    text-align: center;
}

.flcontentleft,
.flcontentmid,
.flcontentright {
    flex: 1 1 300px;
    margin: 1rem;
}

#newsletterform {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    padding: 12px;
    position: relative;
}


#newsletteremail::placeholder {
    color: #292929;
}


#newsletteremail,
#newsletterbutton {
    background-color: #ffffff;
    color: #292929;
    border: solid #292929;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

#newsletteremail:hover,
#newsletterbutton:hover {
    background-color: #047d00;
    color: white;
}

#newsletterbutton:hover {
    cursor: pointer;
}


.flcontentright img {
    width: 80%;
    max-height: 80px;
    object-fit: contain;
    display: block;
    margin: auto;
}

.newsletter-input-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 300px;
    position: relative;
}

#newsletteremailError {
    margin-top: 4px;
    color: red;
    font-size: 0.85rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#newsletteremailError.visible {
    opacity: 1;
    visibility: visible;
}