/* === HEADER CONTAINER === */
header {
    width: 100%;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* === LOGO SECTION === */
.logo-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    display: grid;
    place-items: center;
}

.logoImg {
    width: 49px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: var(--glass);
    transition: all 0.3s ease;
}

.logoImg:hover {
    transform: translateY(-2.5px);
}

.title {
    font-family: 'Ahsing', sans-serif;
    font-size: 14px;
    font-weight: lighter;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    padding: 0 0 7px;
    transition: all 0.3s ease;
}

.title:hover {
    transform: translateY(-2.5px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* === MOBILE STYLES === */
@media (max-width: 768px) {
    .title {
        padding: 0;
    }
}