/*
Theme Name: Smart Cognition Lab Theme
Author: Smart Cognition Lab
Description: A custom WordPress theme for Smart Cognition Lab.
Template: astra
Version: 1.0
*/
/* --- Custom Footer Styling --- */
.custom-footer {
    background-color: #f4f4f4;
    padding: 2rem 3rem;
    border-top: 1px solid #ddd;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Main footer row: images on left, text on right */
.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap; /* ensures wrapping on smaller screens */
    gap: 2rem;
}

/* Left: image section */
.footer-images {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-images img {
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

.footer-images img:hover {
    transform: scale(1.05);
}

/* Right: text section */
.footer-text {
    display: flex;
    gap: 2rem; /* space between statement and address */
    flex: 0.75rem;
    padding-left: 1rem; 
    padding-top: 1.75rem; 
}

.footer-text p {
    margin: 0 0 0.75rem;
}

.footer-statement {
    font-weight: 500;
    color: #333;
    flex: 1; /* takes available space */
}

.footer-address {
    color: #555;
    font-size: 0.95rem;
    flex: 1; /* takes remaining space */
}

/* Bottom copyright bar */
.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #ccc;
    font-size: 0.85rem;
    color: #666;
}
/* --- Responsive layout for mobile --- */
@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-text {
        text-align: center;
        max-width: 100%;
    }

    .footer-images img {
        max-width: 70px;
    }
}