#logo,
#logo-title {
  cursor: pointer;
  transition: opacity 0.2s ease;
}

#logo:hover,
#logo-title:hover {
  opacity: 0.7;
}
.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s ease;
    pointer-events: none;
    background: transparent;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 16px;
    background-color: #0c0f1f;
    pointer-events: auto;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 0 0 10px 10px;
}

.logo-block {
    display: flex;
    align-items: center;
    gap: 7px;
}

.logo-img {
    width: clamp(36px, 6vw, 48px);
    height: auto;
}

.logo-title {
    font-size: clamp(1rem, 2vw, 1.2rem);
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 9px;
    justify-content: space-between; /* Ensure buttons are spaced equally */
}

/* Adaptability */
@media screen and (max-width: 768px) {
    .logo-title {
        display: none;
    }

    .logo-img {
        width: clamp(28px, 6vw, 36px);
    }

    .header {
        justify-content: space-between;
        flex-direction: row;
        align-items: center;
        padding: 10px 15px;
        height: auto;
    }

    .nav {
        gap: 10px; /* Gap between buttons */
    }
}