/* Footer */
.footer2 {
    background-color: #473F3B;
    color: #F4E8DC;
    text-align: center;
    padding: 1rem;
}

footer {
    text-align: justify;
    padding: 20px;
    color:rgb(2, 2, 2); /* Your specified text color */
    font-size: 14px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1500px;
    margin: 0 auto;
    padding: 1rem;
    border-top: 2px solid #000000;

}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 0 1rem;
}

.footer-column:nth-child(2) {
    text-align: center;
}


.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 2000; /* Makes it semi-bold */
    color: #000000; /* Text color for titles */
}

.footer-column h3 span {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #7A0000; /* Text color for titles */
}

.footer-column p, 
.footer-column ul li a {
    font-size: 14px;
    color: #000000; /* Text color for descriptions and links */
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin: 0.5rem 0;
}

.footer-column ul li a {
    text-decoration: none;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start; /* Align left */
}

.social-item {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and label */
    font-size: 14px;
    color: #000000;
}

.social-item img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
    transform: scale(1.2); /* Always zoomed */

}

.social-item img:hover {
    transform: scale(1.3);
}



.footer-bottom {
    text-align: center;
        padding: 25px;
        background-color: #7A0000;
        color: white;
        font-size: 14px;
}
.footer-bottom-form {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;           /* span full width */
    text-align: center;
    padding: 5px;
    background-color: #7A0000;
    color: white;
    font-size: 14px;
}
