/* FIXED TRANSPARENT HEADER */
.top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(0,0,0,0.4); /* transparent */
    backdrop-filter: blur(6px);  /* optional: premium glass effect */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    box-sizing: border-box;
    min-height: 120px; /* room for 100px logo */
}

/* LEFT + RIGHT MENUS */
.header-left,
.header-right {
    flex: 0 0 33%;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.header-left a,
.header-right a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

/* CENTER LOGO */
.header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-logo img {
    height: 100px; /* your desired size */
    width: auto;
}

/* Hover effect */
.top-header a:hover {
    opacity: 0.7;
}

/* MOBILE */
@media (max-width: 800px) {
    .top-header {
        flex-direction: column;
        padding: 20px;
        min-height: auto;
    }

    .header-left,
    .header-right {
        flex: none;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 10px;
    }

    .header-logo {
        position: static;
        transform: none;
        margin-top: 10px;
    }

    .header-logo img {
        height: 80px;
    }
}
