/* Footer Styles */
.footer {
    background-color: black;
    color: #fff;
    padding: 40px 20px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
}

.footer-section {
    margin: 20px 0px;
    width: 20%;
    min-width: 245px;
}

.footer-section h3 {
    font-size: 23px;
    margin-bottom: 15px;
    color: #d9b8b8;
    font-weight: bold;
}

.footer-section p,
.footer-section a {
    color: #bbb;

}

.footer-section a {
    text-decoration: none;
    position: relative;
    /* Needed for the underline effect */
}

.footer-section a:hover {
    color: #fff;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d9b8b8;
    transition: width 0.3s ease, right 0.3s ease;
    /* Animation for the underline */
}

.footer-section a:hover::after {
    width: 100%;
    right: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d9b8b8;
}

/* Newsletter and Social Media */
.newsletter-signup {
    display: flex;
    margin-top: 10px;
}

.newsletter-signup input[type="email"] {
    padding: 8px;
    border: none;
    outline: none;
    width: 70%;
    margin-right: 10px;
}

.newsletter-signup button {
    padding: 8px 15px;
    background-color: #d9b8b8;
    border: none;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-signup button:hover {
    background-color: #bbb;
}

.social-icons a {
    color: #bbb;
    font-size: 18px;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #d9b8b8;
}

.footer-bottom {
    background-color: #222;
    padding: 10px 0;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 25px;
    font-size: 20px;
    width: 100%;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: #bbb;
    font-size: 14px;
    margin: 0;
}

.footer-bottom a {
    color: #d9b8b8;
    text-decoration: none;
}

@media screen and (max-width: 783px) {
    .footer-bottom {
        text-align: center;
        justify-content: center;
        padding: 15px;
    }

    .social-icons {
        margin-top: 20px;
    }

    .social-icons i {
        font-size: 25px;
    }
}

.about-us-footer {
    padding: 20px;
    padding-right: 30px;
    padding-top: 0;
}

.social-icons i {
    font-size: 25px;
}