.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 1rem;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    height: 40px;
    width: auto;
    margin-right: 1rem;
}

.sitename {
    font-family: 'Segoe UI', system-ui, sans-serif;
    font-size: 1.6rem;
    /* Slightly larger for better emphasis */
    font-weight: 800;
    margin: 0;
    font-weight: bolder;
    text-transform: uppercase;
    background: linear-gradient(135deg, #2563eb, #4f46e5, #9333ea);
    /* Enhanced gradient with an extra color */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    transition: transform 0.3s ease, filter 0.3s ease;
    /* Smooth transitions for interaction */
}


.logos img {
    max-height: 50px;
    margin-right: 6px;
}

.logos span {
    line-height: 2;

    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
}

.btn-animate {
    transition: all 0.3s ease-in-out;
}

.btn-animate:hover {
    transform: scale(1.1);
    background-color: #4CAF50;
    /* Change color on hover */
    color: white;
}


@media screen and (max-width: 768px) {
    .mbpage {
        display: none;
    }
}

/* Hide <hr> with class .mobile-hr by default on larger screens */
.mobile-hr {
    display: none;
}

/* Show <hr> with class .mobile-hr only on screens smaller than 768px (e.g., mobile phones) */
@media screen and (max-width: 768px) {
    .mobile-hr {
        display: block;
    }
}
