.footer {
    background-color: #E8DFC5; /* Dark background */
    padding: 40px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.container-footer {
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-evenly; /* Ensure the container is centered */
}


.footer-left img{
    width: 300px;
    height: auto;
}

.footer-left p {
    color: #5C6574;
    margin-top: 10px;
    font-size: 18px;
    font-family: 'Outfit';
    width: 350px;
}

.footer-middle {
    display: flex;
    z-index: 20;
    padding-top: 90px;
    justify-content: space-around;
}

.footer-column {
    margin-right: 50px;
}

.footer-column h4 {
    color: #F54F00;
    margin-bottom: 15px;
    font-size: 24px;
    font-family: 'Georgia';
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #5C6574;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Outfit';
}

.footer-column ul li a:hover {
    color: #3A563A;
    font-weight: 600;
}

.footer-right h4 {
    color: #F54F00;
    margin-bottom: 15px;
    font-size: 24px;
    font-family: 'Georgia';
}

.footer-right .opening-hours-footer h4 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #F54F00;
    text-align: left;
    font-family: 'Georgia';
}

.footer-right .opening-hours-footer p {
    margin: 5px 0;
    font-size: 18px;
    color: #5C6574; /* Light grey color */
    text-align: left;
    font-family: 'Outfit';

}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    margin-bottom: 24px;
    border-radius: 50%;
    background-color: #F54F00; /* Light purple color */
    text-align: center;
    line-height: 40px;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #3A563A; /* Darker purple on hover */
}

.footer-copyright {
    text-align: center; /* Center the text */
    margin-top: 20px; /* Space above the copyright text */
    color: #3A563A;
    font-family: 'Outfit';
    font-size: 18px;
}

.bg-one{
    position: absolute;
    top: 0;
    opacity: 0.2;
    left: 0;
    height: 92px;
    width: 100vw;
    background-repeat: repeat;
    background-size: contain;
}

@media (max-width: 768px) {
    .footer {
        padding: 20px 0;
    }

    .container-footer {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
        padding-top: 80px;
    }

    .footer-left {
        text-align: left;
        margin-bottom: 20px;
    }

    .footer-left img {
        width: 200px;
    }

    .footer-left p {
        width: 100%;
        font-size: 16px;
        text-align: left;
    }

    .footer-middle {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 20px;
        padding-top: 50px !important;
        padding: 0 !important;
    }

    .footer-column {
        margin-bottom: 20px;
    }

    .footer-column h4 {
        font-size: 20px;
        margin-bottom: 10px; /* Added margin for better spacing */
    }

    .footer-column ul {
        padding: 0;
        list-style-type: none; /* Removed bullet points */
    }

    .footer-column ul li {
        margin-bottom: 8px;
        color: #3A563A;
    }

    .footer-column ul li a {
        font-size: 16px;
        text-decoration: none; /* Removed underline for cleaner look */
        color: inherit; /* Ensures link color is consistent */
    }

    .footer-right {
        text-align: left;
        margin-bottom: 20px; /* Added margin for separation */
    }

    .footer-right h4 {
        font-size: 20px;
        margin-bottom: 10px; /* Added spacing below heading */
    }

    .opening-hours-footer {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-right .opening-hours h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .footer-right .opening-hours p {
        font-size: 16px;
        margin-bottom: 5px; /* Added margin for readability */
    }

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

    .social-icons a {
        display: inline-block;
        width: 35px;
        height: 35px;
        font-size: 16px;
        line-height: 35px;
        text-align: center;
        margin-right: 10px;
        border-radius: 50%; /* Added rounded icons for modern look */
        background-color: #3A563A; /* Placeholder background color */
        color: #ffff; /* Placeholder icon color */
    }

    .social-icons a:hover {
        background-color: #F54F00; /* Darker background on hover */
    }
}

@media (min-width: 769px) and (max-width: 960px) {
    .footer {
        padding: 15px 0; /* Reduced padding for smaller screen */
    }

    .container-footer {
        padding-left: 10px; /* Reduced padding to fit smaller screen */
        padding-top: 0px;  /* Adjusted for better layout on smaller screen */
        flex-direction: row; /* Change to row layout for better use of space */
        justify-content: space-between;
    }

    .footer-left,
    .footer-middle,
    .footer-right {
        flex: 1;
        margin-bottom: 15px;
        display: flex;
        flex-direction: column;
    }

    .footer-left img {
        width: 300px; /* Smaller logo size */
    }

    .footer-left p {
        font-size: 18px; /* Smaller font size for better fit */
    }

    .footer-column h4 {
        font-size: 25px; /* Slightly smaller heading */
        margin-bottom: 8px; /* Less margin for compact look */
    }

    .footer-column ul li {
        font-size: 25px; /* Smaller font for items */
        margin-bottom: 6px;
    }

    .footer-column ul li a {
        font-size: 20px; /* Adjusted link size */
    }

    .footer-right h4 {
        font-size: 25px; /* Adjusted heading size */
        margin-bottom: 8px;
    }
    .footer-right .opening-hours p {
        font-size: 14px; /* Adjusted font size */
        margin-bottom: 3px;
    }

    .social-icons {
        margin-top: 15px; /* Reduced margin */
    }

    .social-icons a {
        width: 30px; /* Smaller icon size */
        height: 30px;
        line-height: 30px;
        font-size: 14px; /* Adjusted icon font size */
    }

    .social-icons a:hover {
        background-color: #3A563A; /* Slightly adjusted hover color */
    }
}

