

.hamburger{
        display: none;
    }

.bangit-potpis{
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .bangit-potpis img {
    max-width: 150px;
    background-color: var(--accent);
    padding: 0.5rem;
    border: 1px var(--accent) solid;
    border-radius: 2rem;
    transition: all 0.3s ease-in-out;
    box-shadow: 
        0 3px 5px rgba(235, 233, 233, 0.6), /* Slight shadow below */
        inset 0 2px 4px rgba(255, 255, 255, 0.2); /* Inner highlight for depth */
}

.bangit-potpis img:hover {
    transform: translateY(-3px); /* Slight lift effect */
    box-shadow: 
        0 5px 7px rgba(250, 246, 246, 0.6), /* More prominent shadow */
        inset 0 2px 6px rgba(255, 255, 255, 0.2); /* Inner highlight */
}

@media (max-width: 600px) { 
    .hamburger {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    z-index: 1005; 

    }
    .hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background-color: var(--color-teal-blue);
    border-radius: 4px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
    }
    .hamburger span:nth-child(1) {
        top: 0.25rem;
    }

    .hamburger span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger span:nth-child(3) {
        bottom: 0.25rem;
    }
    /* Transform lines to an X when active */
    .hamburger.active span:nth-child(1) {
        transform: translateY(0.625rem) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-0.625rem) rotate(-45deg);
    }
    .navbar {
    
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    position: absolute;
    top: 3rem;
    right:0;
    background-color: var(--color-white);
    flex-direction: column;

    width: 10rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateX(300px);
    transition: all 0.3s ease-in-out;
    padding: 0.5rem;
    border-radius: 0.5rem;
    }
    .nav-links{
        flex-direction: column;
    }
    .navbar.show {
    max-height: 520px; /* Large enough to fit all items */
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    max-width: fit-content;
    }
    
}