@import url('root-color.css');

/* Footer */

.no-record {
    display: flex;
    justify-content: center;
    /* horizontal center */
    align-items: center;
    /* vertical center */
    height: 50vh;
    /* full screen height */
    text-align: center;
    /* text center inside box */
}

.no-record h1 {
    font-size: 2rem;
    color: #555;
    /* optional styling */
}

footer {
    background-color: #f6f1ea; /* match header background (cream) */
    color: #3d2c19; /* dark-brown text */
    padding-top: 3%;
    box-shadow: 0 -2px 16px rgba(190,170,140,0.06);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

footer .container {
    padding: 0 20px;
}

.footer-logo img {
    width: 140px;
    height: 50px;
    object-fit: contain;
}

.footer-logo p {
    color: var(--footer-para);
    font-size: 14px;
    font-weight: 400;
    margin-top: 7px;
    line-height: 25px;
    text-align: left;
    text-transform: capitalize;
}

.footer-logo i {
    margin-top: 35px;
    color: var(--footer-icon-color);
    margin-right: 32px;
}

.footer-section h3 {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 600;
}

.footer-section a {
    color: var(--footer-a-color);
    text-decoration: none;
    line-height: 2;
    font-size: 14px;
    margin: 3px 0;
    text-align: left;
}

.footer-bottom {
    padding: 12px;
    background-color: var(--header-icon-color);
    /* border-top: 1px solid #444; */
    margin-top: 5%;
    color: var(--white);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--white);
    font-size: 12px;
}

.footer-bottom i {
    color: var(--white);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.4s;
    margin-left: 10px;
}

.payment-methods img {
    margin-left: 20px;
    width: 80%;
}

@media (max-width:992px) {
    .footer {
        padding: 0 30px;
    }

    .footer-icon ul {
        justify-content: flex-start;
    }
}

@media (max-width:768px) {
    .footer {
        flex-wrap: wrap;
        gap: 30px;
        padding: 0 20px;
    }

    .footer-logo {
        flex: 0 0 100%;
        text-align: center;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo p {
        text-align: center;
    }

    .footer-icon {
        margin: 5% 0;
    }

    .footer-icon .row {
        justify-content: center;
    }

    .footer-icon ul li a i {
        margin: 0 15px;
    }

    .footer-bottom .container {
        justify-content: center;
    }

    .footer-bottom {
        padding: 10px;
    }

    .payment-methods {
        margin: 0;
    }

    .payment-methods img {
        width: 80%;
        text-align: center;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }
}

@media (max-width:576px) {
    .footer {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
        padding: 0 20px;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo p {
        text-align: center;
    }

    .footer-icon ul li a i {
        align-items: center;
    }

    .footer-bottom {
        padding: 15px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-icon .row {
        justify-content: center;
    }

    .payment-methods {
        margin-left: 25px;
    }
}