/* GOUDY OLD STYLE */
@font-face {
    font-family: 'Goudy Old Style';
    src: url('${pageContext.request.contextPath}/fonts/Goudy.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ROBOTO */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

.footer {
    background: linear-gradient(to bottom, #FFDE59, #FCB900); /* Match the gradient color */
    padding: 20px 0;
    color: black; /* Set text color to black */
    text-align: center;
    margin-top: auto;
    font-weight: bold; /* Make all text in footer bold */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-weight: bold; /* Make all text in footer-container bold */
    font-family: 'Roboto Condensed', sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    flex-wrap: wrap; /* Ensure it wraps on smaller screens */
    font-weight: bold; /* Make all footer-content text bold */
    font-family: 'Roboto Condensed', sans-serif;
}

.footer-logo img {
    max-height: 70px;
}

.footer-info, .footer-contact {
    text-align: left;
    color: black; /* Set text color to black */
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold; /* Make text bold */
}

.footer-info p, .footer-contact p {
    margin: 0 0 10px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold; /* Make text bold */
}

.footer-bottom {
    position: relative;
    padding: 10px 0;
    background-color: #222;
    font-size: 14px;
    color: #fefefe;
    text-align: center;
    font-weight: bold; /* Make footer-bottom text bold */
}

.footer-info p i, .footer-contact p i {
    margin-right: 8px; /* Add some space between icons and text */
    color: black; /* Set icon color to black */
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold; /* Make icons and text bold */
}

.footer a {
    color: black; /* Set link color to black */
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold; /* Make links bold */
}

.footer a:hover {
    text-decoration: underline; /* Add underline on hover */
}
