/* Logo Image Styling */
.logo img {
    height: 45px;
    /* Reduced from 60px to fit smaller navbar */
    width: auto;
    /* Maintain aspect ratio */
    object-fit: contain;
}

/* Footer Logo Image Styling */
.footer-logo img {
    height: 80px;
    /* Usually larger in the footer */
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

/* Ensure Logo text styles (if any remain) do not interfere */
.logo,
.footer-logo {
    display: inline-flex;
    /* Changed to inline-flex to align image and text */
    align-items: center;
    /* Vertically center */
    gap: 10px;
    /* Space between logo and text */
    text-decoration: none;
}

.logo span {
    font-family: var(--font-display, 'Playfair Display', serif);
    /* Fallback */
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color, #0F2C1F);
    /* Fallback to a dark green */
    line-height: 1;
}