/* Main Logo Styling */
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-text-main {
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-yellow);
    letter-spacing: 1px;
    text-shadow: 2px 2px 0px var(--primary-dark);
    font-family: 'Arial', sans-serif;
}

/* Hide the old image logo in header */
#logo-img {
    display: none !important;
}

/* Footer Logo Styling */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    display: none !important;
}

.footer-logo span {
    font-size: 32px !important;
    font-weight: 900 !important;
    color: var(--accent-yellow) !important;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
}