/* Footer Styles */
.custom-footer {
     background: url('/images/Footer2.png') no-repeat center center;
    background-size: cover;
    color: rgb(0, 0, 0);
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

/* Footer Container */
.footer-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

/* Background Image at the Top */
.menu-bg-top {
    width: 100%;
    height: 20vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-bg-top img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

/* Footer Row */
.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 3.5rem;
    justify-content: space-between;
    margin-left: 5%;
}

/* Footer Columns */
.footer-col {
    flex: 1;
    min-width: 300px;
}

/* Footer Headings */
.footer-heading {
    font-size: 1.9rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000099;
    font-family: 'Poppins', sans-serif;
}

/* Footer Description */
.footer-description {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Address & Contact Blocks */
.address-block,
.contact-block {
    margin-bottom: 30px;
}

/* Address & Contact Links */
.address-link,
.contact-link {
    text-decoration: none;
    color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.address-link:hover,
.contact-link:hover {
    color: #fd6400;
}

/* Icon Margin */
.address-icon {
    margin-right: 10px;
    font-size: 16px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgb(0, 0, 0);
    padding-top: 15px;
    font-size: 14px;
    text-decoration: underline;
}

#current-year {
    font-weight: bold;
}

/* ✅ **Responsive Design for All Screens** */

/* 🎯 Extra Large Screens (Above 2400px) */
@media (min-width: 2400px) {
    .footer-heading {
        font-size: 2.5rem;
    }

    .footer-description {
        font-size: 1.5rem;
        line-height: 1.8;
    }

    .address-link,
    .contact-link {
        font-size: 1.5rem;
    }

    .menu-bg-top {
        height: 20vh;
    }
}

/* 🎯 Large Screens (1920px - 2399px) */
@media (max-width: 2399px) {
    .footer-heading {
        font-size: 2.2rem;
    }

    .footer-description {
        font-size: 1.3rem;
        line-height: 1.7;
    }

    .address-link,
    .contact-link {
        font-size: 1.3rem;
    }

    .menu-bg-top {
        height: 18vh;
    }
}

/* 🎯 Medium-Large Screens (1600px - 1919px) */
@media (max-width: 1919px) {
    .footer-heading {
        font-size: 2rem;
    }

    .footer-description {
        font-size: 1.2rem;
        line-height: 1.6;
    }

    .address-link,
    .contact-link {
        font-size: 1.2rem;
    }

    .menu-bg-top {
        height: 17vh;
    }
}

/* 🎯 Standard Desktop (1200px - 1599px) */
@media (max-width: 1599px) {
    .footer-heading {
        font-size: 1.9rem;
    }

    .footer-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .address-link,
    .contact-link {
        font-size: 1.1rem;
    }

    .menu-bg-top {
        height: 26vh;
    }
}

/* 🎯 Laptops & Small Desktops (992px - 1199px) */
@media (max-width: 1199px) {
    .footer-heading {
        font-size: 1.7rem;
    }

    .footer-description {
        font-size: 1rem;
        line-height: 1.5;
    }

    .address-link,
    .contact-link {
        font-size: 1rem;
    }

    .menu-bg-top {
        height: 15vh;
    }
}

/* 🎯 Tablets (768px - 991px) */
@media (max-width: 991px) {
    .footer-row {
        gap: 2.5rem;
        margin-left: 3%;
    }

    .footer-heading {
        font-size: 1.5rem;
    }

    .footer-description {
        font-size: 0.95rem;
    }

    .address-link,
    .contact-link {
        font-size: 0.95rem;
    }

    .menu-bg-top {
        height: 14vh;
    }
}

/* 🎯 Small Tablets & Large Phones (576px - 767px) */
@media (max-width: 767px) {
    .footer-row {
        gap: 2rem;
        margin-left: 2%;
    }

    .footer-heading {
        font-size: 1.4rem;
    }

    .footer-description {
        font-size: 0.92rem;
    }

    .address-link,
    .contact-link {
        font-size: 0.92rem;
    }

    .menu-bg-top {
        height: 13vh;
    }
}

/* 🎯 Large Phones (480px - 575px) */
@media (max-width: 575px) {
    .footer-row {
        flex-direction: column;
        gap: 30px;
        margin-left: 0;
        text-align: center;
    }

    .footer-col {
        min-width: auto;
    }

    .footer-heading {
        font-size: 1.4rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .address-link,
    .contact-link {
        font-size: 0.9rem;
    }

    .menu-bg-top {
        height: 12vh;
    }
}

/* 🎯 Small Phones (320px - 479px) */
@media (max-width: 479px) {
    .footer-heading {
        font-size: 1.2rem;
    }

    .footer-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .address-link,
    .contact-link {
        font-size: 0.8rem;
    }

    .menu-bg-top {
        height: 10vh;
    }

    .footer-row {
        gap: 20px;
    }
}

/* 🎯 Very Small Devices (Below 320px) */
@media (max-width: 320px) {
    .footer-heading {
        font-size: 1rem;
    }

    .footer-description {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .address-link,
    .contact-link {
        font-size: 0.75rem;
    }

    .menu-bg-top {
        height: 8vh;
    }

    .footer-row {
        gap: 15px;
    }
}
